/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(22, 33, 62, 0.85) 100%);
    z-index: -1;
}

/* Age Verification Modal */
.modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(255, 107, 107, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
}

.modal-header h2 {
    font-size: 3.5rem;
    background: red;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 800;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #e0e6ed;
}

.modal-footer {
    margin: 30px 0 20px 0;
}

.modal-terms {
    font-size: 0.9rem;
    color: #9ca3af;
}

.modal-terms a {
    color: #ff6b6b;
    text-decoration: none;
}

.modal-terms a:hover {
    text-decoration: underline;
}

/* Login/Register Modal Specific Styles */
.auth-modal-content {
  padding: 40px;
  max-width: 550px;
  position: relative;
}

.auth-modal-content .close-button {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.5rem;
  color: #e0e6ed;
  cursor: pointer;
  transition: color 0.3s ease;
}

.auth-modal-content .close-button:hover {
  color: #ff6b6b;
}

.auth-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.auth-tab-btn {
  background: transparent;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #e0e6ed;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.auth-tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  transform: scaleX(0);
  transform-origin: bottom center;
  transition: transform 0.3s ease;
}

.auth-tab-btn.active {
  color: #ff6b6b;
}

.auth-tab-btn.active::after {
  transform: scaleX(1);
}

.auth-form {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.auth-form.active {
  display: block;
}

.auth-form h2 {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 800;
}

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form .form-group label {
  display: block;
  margin-bottom: 8px;
  color: #e0e6ed;
  font-weight: 500;
  font-size: 1rem;
}

.auth-form .form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.auth-form .form-group input:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.btn-full-width {
  width: 100%;
  margin-top: 20px;
}

.auth-switch-text {
  text-align: center;
  margin-top: 25px;
  color: #e0e6ed;
  font-size: 0.95rem;
}

.auth-switch-text a {
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 600;
}

.auth-switch-text a:hover {
  text-decoration: underline;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 107, 107, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo h1 {
  font-size: 2rem;
  font-weight: 800;
  background: red;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo span {
  background: darkred;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  color: #e0e6ed;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 12px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 80%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 50px;
}

.hero-content {
    max-width: 1000px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    color: #ffffff;
}

.brand-highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 50%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(30deg);
    }
}

.hero-offer {
    margin: 50px 0;
}

.offer-badge {
    background: linear-gradient(135deg, #ef1717 0%, #dc1313 100%);
    padding: 40px;
    border-radius: 24px;
    display: inline-block;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-badge::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }

    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

.offer-badge:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.4);
}

.offer-text {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.hero-buttons {

    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Modern Buttons */
.btn-primary,
.btn-secondary {
    padding: 18px 36px;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-large {
    padding: 22px 44px;
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    color: #000;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    font-weight: 700;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 107, 107, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: rgba(15, 15, 35, 0.6);
    backdrop-filter: blur(20px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 50%, #4ecdc4 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 107, 107, 0.4);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 107, 0.3));
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.feature-card p {
    color: #e0e6ed;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    text-align: center;
    background: rgba(26, 26, 46, 0.8);
}

.partners h3 {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logo img {
    height: 70px;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Page Header */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    position: relative;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ff6b6b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    color: #e0e6ed;
    position: relative;
    z-index: 1;
}

/* Rewards Tiers */
.rewards-tiers {
    padding: 120px 0;
}

.rewards-tiers h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tier-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tier-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 107, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier-card:hover::before {
    opacity: 1;
}

.tier-card.bronze {
    border-color: #cd7f32;
}

.tier-card.silver {
    border-color: #c0c0c0;
}

.tier-card.gold {
    border-color: #ffd93d;
}

.tier-card.diamond {
    border-color: #4ecdc4;
}

.tier-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.3);
}

.tier-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.tier-header h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.tier-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 107, 0.3));
}

.tier-benefits {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 1;
}

.tier-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e6ed;
    font-size: 1.05rem;
}

.tier-benefits li:before {
    content: "✓";
    color: #4ecdc4;
    margin-right: 12px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Rewards Features */
.rewards-features {
    padding: 120px 0;
    background: rgba(15, 15, 35, 0.6);
}

.rewards-features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.4);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.feature-item .feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 107, 0.3));
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Promotions */
.featured-promo {
    padding: 120px 0;
}

.promo-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 217, 61, 0.1) 100%);
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    border: 2px solid rgba(255, 107, 107, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.promo-card.featured::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.promo-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    color: #000;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.promo-amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: red;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 25px 0;
    text-shadow: 2px 2px 4px rgba(214, 56, 56, 0.5);
}

.promo-details {
    list-style: none;
    margin: 40px 0;
}

.promo-details li {
    padding: 10px 0;
    color: #e0e6ed;
    font-size: 1.05rem;
}

.promo-details li:before {
    content: "✓";
    color: #4ecdc4;
    margin-right: 12px;
    font-weight: bold;
    font-size: 1.1rem;
}

.promotions-grid {
    padding: 120px 0;
}

.promotions-grid h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.4);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.promo-header h3 {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.promo-tag {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-value {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
}

.terms-notice {
    padding: 60px 0;
    background: rgba(255, 107, 107, 0.1);
    text-align: center;
    backdrop-filter: blur(20px);
}

.terms-notice p {
    color: #e0e6ed;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Content */
.about-content {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.about-text h3 {
    font-size: 2rem;
    margin: 40px 0 20px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 25px;
    color: #e0e6ed;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    padding: 10px 0;
    color: #e0e6ed;
    font-size: 1.05rem;
}

.about-list li:before {
    content: "✓";
    color: #4ecdc4;
    margin-right: 12px;
    font-weight: bold;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background: rgba(15, 15, 35, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-item {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.4);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    color: #e0e6ed;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Contact Content */
.contact-content {
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.contact-info p {
    margin-bottom: 50px;
    color: #e0e6ed;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: rgba(255, 107, 107, 0.4);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    width: 70px;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 107, 0.3));
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.contact-details p {
    margin: 0;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.05rem;
}

.contact-details span {
    font-size: 0.95rem;
    color: #9ca3af;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #e0e6ed;
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: rgba(15, 15, 35, 0.6);
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 107, 0.4);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.faq-item p {
    color: #e0e6ed;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Legal Content */
.legal-content {
    padding: 120px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.legal-text h2 {
    font-size: 2rem;
    margin: 50px 0 25px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.legal-text p {
    margin-bottom: 25px;
    color: #e0e6ed;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    padding: 80px 0 30px;
    margin-top: 120px;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 107, 107, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    padding: 5px 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
    font-size: 1rem;
}

/* Responsible Gaming Styles */
.responsible-gaming {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
  backdrop-filter: blur(20px);
}

.responsible-content {
  max-width: 1200px;
  margin: 0 auto;
}

.responsible-header {
  text-align: center;
  margin-bottom: 80px;
}

.responsible-header h2 {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-weight: 800;
}

.responsible-header p {
  font-size: 1.3rem;
  color: #e0e6ed;
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.responsible-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  transition: all 0.3s ease;
}

.responsible-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.responsible-icon {
  font-size: 3rem;
  margin-bottom: 25px;
  filter: drop-shadow(0 4px 8px rgba(255, 107, 107, 0.3));
}

.responsible-item h3 {
  font-size: 1.4rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-weight: 700;
}

.responsible-item p {
  color: #e0e6ed;
  line-height: 1.7;
  font-size: 1.05rem;
}

.responsible-tools {
  margin-bottom: 80px;
}

.responsible-tools h3 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 800;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tool-item {
  background: rgba(255, 107, 107, 0.1);
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid #ff6b6b;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.tool-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}

.tool-item h4 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-weight: 700;
}

.tool-item p {
  color: #e0e6ed;
  line-height: 1.6;
  font-size: 1.05rem;
}

.help-organizations {
  margin-bottom: 80px;
}

.help-organizations h3 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 800;
}

.orgs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.org-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  transition: all 0.3s ease;
}

.org-item:hover {
  border-color: rgba(255, 107, 107, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.org-item img {
    height: 100px;
  margin-bottom: 20px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.org-item:hover img {
  opacity: 1;
}

.org-item h4 {
  font-size: 1.4rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-weight: 700;
}

.org-item p {
  color: #e0e6ed;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.help-link {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.help-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.warning-signs h3 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 800;
}

.signs-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}

.signs-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3);
}

.signs-list ul {
  list-style: none;
  margin-bottom: 40px;
}

.signs-list li {
  padding: 12px 0;
  color: #e0e6ed;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.05rem;
}

.signs-list li:before {
  content: "⚠️";
  margin-right: 12px;
}

.help-contact {
  background: rgba(255, 69, 0, 0.2);
  padding: 30px;
  border-radius: 16px;
  border: 2px solid #ff4500;
  backdrop-filter: blur(20px);
}

.help-contact p {
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-help {
  background: linear-gradient(135deg, #ff4500 0%, #ff6500 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-help:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 69, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(15, 15, 35, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 30px 0;
    backdrop-filter: blur(20px);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .offer-amount {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .promo-card.featured {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tiers-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 2.8rem;
  }

  .responsible-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .orgs-grid {
    grid-template-columns: 1fr;
  }

  .signs-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .offer-badge {
    padding: 30px 20px;
  }

  .offer-amount {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
  }

  .modal-content {
    padding: 40px 25px;
  }

  .contact-form {
    padding: 30px;
  }

  .legal-text {
    padding: 40px 30px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.feature-card,
.tier-card,
.promo-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.hidden {
  display: none;
}

/* Additional Modern Elements */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}

.faq-question {
  padding: 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 107, 107, 0.05);
}

.faq-question h3 {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem;
  margin: 0;
  font-weight: 700;
}

.faq-toggle {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 30px 30px;
  max-height: 300px;
}

.faq-answer p {
  color: #e0e6ed;
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

/* Responsible Gaming Page Specific Styles */
.responsible-hero {
  padding: 120px 0;
  background: rgba(15, 15, 35, 0.6);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h2 {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.2rem;
  color: #e0e6ed;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 107, 0.2);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

/* Self Assessment */
.self-assessment {
  padding: 120px 0;
  background: rgba(26, 26, 46, 0.8);
}

.self-assessment h2 {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 800;
}

.self-assessment > p {
  text-align: center;
  color: #e0e6ed;
  margin-bottom: 60px;
  font-size: 1.2rem;
}

.quiz-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.quiz-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3);
}

.quiz-questions {
  margin-bottom: 40px;
}

.question-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 25px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 107, 0.2);
}

.question-item p {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

.question-options {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.question-options label {
  color: #e0e6ed;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.question-options label:hover {
  background: rgba(255, 107, 107, 0.1);
}

.question-options input[type="radio"] {
  accent-color: #ff6b6b;
  transform: scale(1.2);
}

.assessment-result {
  background: rgba(255, 215, 0, 0.1);
  padding: 30px;
  border-radius: 16px;
  border: 2px solid #ffd93d;
  margin-top: 25px;
  backdrop-filter: blur(20px);
}

.assessment-result.hidden {
  display: none;
}

/* Control Tools */
.control-tools {
  padding: 120px 0;
}

.control-tools h2 {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 800;
}

.tool-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.tool-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tool-content {
  padding: 40px;
}

.tool-content h3 {
  font-size: 1.6rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-weight: 700;
}

.tool-content p {
  color: #e0e6ed;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.tool-content ul {
  list-style: none;
  margin-bottom: 30px;
}

.tool-content li {
  color: #e0e6ed;
  padding: 8px 0;
  font-size: 1.05rem;
}

.tool-content li:before {
  content: "✓";
  color: #4ecdc4;
  margin-right: 12px;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Support Resources */
.support-resources {
  padding: 120px 0;
  background: rgba(15, 15, 35, 0.6);
}

.support-resources h2 {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 800;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
}

.resource-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.resource-header {
  text-align: center;
  margin-bottom: 25px;
}

.resource-header img {
    height: 100px;
  margin-bottom: 20px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.resource-card:hover .resource-header img {
  opacity: 1;
}

.resource-header h3 {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-weight: 700;
}

.resource-content p {
  color: #e0e6ed;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.contact-info {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 107, 107, 0.1);
}

.contact-info p {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
}

.resource-link {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 12px;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.resource-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

/* Adjustments for mobile responsiveness */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(15, 15, 35, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 30px 0;
    backdrop-filter: blur(20px);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .offer-amount {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .promo-card.featured {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .tiers-grid {
    grid-template-columns: 1fr;
  }

  .responsible-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .orgs-grid {
    grid-template-columns: 1fr;
  }

  .signs-content {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .quiz-container {
    grid-template-columns: 1fr;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .question-options {
    flex-direction: column;
    gap: 10px;
  }

  .page-header h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .offer-badge {
    padding: 30px 20px;
  }

  .offer-amount {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .responsible-header h2,
  .hero-content h2,
  .control-tools h2,
  .support-resources h2 {
    font-size: 2rem;
  }

  .modal-content {
    padding: 40px 25px;
  }

  .contact-form {
    padding: 30px;
  }

  .legal-text {
    padding: 40px 30px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }
}
.featured-promo {
    padding: 60px 20px;
    
}

.promo-card {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    align-items: center;
}

.promo-content {
    flex: 1 1 400px;
    padding: 40px;
    text-align: left;
}

.promo-image {
    flex: 1 1 300px;
    text-align: center;
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.promo-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.promo-badge {
    background-color: #ff3366;
    color: #fff;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-weight: bold;
}

.promo-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin: 15px 0;
}

.promo-details {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.promo-details li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.promo-details li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745;
}

.btn-primary {
    background-color: #ff3366;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #e02957;
}

@media (max-width: 768px) {
    .promo-card {
        flex-direction: column;
    }

    .promo-content, .promo-image {
        padding: 20px;
        text-align: center;
    }

    .promo-amount {
        font-size: 2rem;
    }
}




/* Image Gallery Section */
.image-gallery {
  padding: 120px 0;
  background: rgba(26, 26, 46, 0.8);
  text-align: center;
}

.image-gallery h2 {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  transition: all 0.3s ease;
  height: 200px; /* Fixed height for consistency */
  text-align: center;

  /* Ortalamak için flex ayarları */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.gallery-item img {
  height: 150px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  max-width: 100%;
}


.gallery-item:hover img {
  transform: scale(1.05);
}



/* Security Footer */

.security-gallery {
  padding: 60px 20px;
 
}

.security-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.15); /* kırmızı gölge */
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
  transition: box-shadow 0.3s ease;
}

.security-card:hover {
  box-shadow: 0 12px 28px rgba(255, 0, 0, 0.25);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 25px;
  text-align: center;
}

.security-content {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 40px;
}

.security-content p {
  margin-bottom: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  background: #fefefe;
  box-shadow: 0 4px 10px rgba(70, 46, 46, 0.05);
  transition: transform 0.3s ease;
}



.gallery-item2 {
  border-radius: 12px;
  overflow: hidden;
  border-color: white;
  box-shadow: 0 4px 10px rgba(70, 46, 46, 0.05);
  
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  
  width: 100%;
  height: auto;
  display: block;
}
.gallery-item2 img {
  
  width: 100%;
  height: auto;
  display: block;
}

.custom-gallery {
  padding: 3rem 2rem;
  margin: 0 auto;
  max-width: 1300px;
  border: 2px solid rgba(255, 255, 255, 0.4); /* beyaz yarı saydam border */
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.15); /* hafif kırmızı gölge */
  transition: box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .custom-gallery {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media (min-width: 1200px) {
  .custom-gallery {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
.gallery-grid.custom-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  margin: 5rem auto 0;
  max-width: 1200px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.15);
}

.gallery-item2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 100px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.gallery-item2:hover {
  transform: scale(1.05);
}

.gallery-item2 img {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
}