*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFD700;
    --gold-bright: #FFEA00;
    --gold-dark: #B8860B;
    --purple-deep: #1a0a2e;
    --purple-mid: #2d1b4e;
    --purple-light: #4a2c7a;
    --pink-neon: #FF00FF;
    --pink-hot: #FF1493;
    --cyan-neon: #00FFFF;
    --green-neon: #00FF88;
    --orange-hot: #FF6B00;
    --red-hot: #FF3366;
    --white: #FFFFFF;
    --white-soft: rgba(255,255,255,0.9);
    --text-muted: rgba(255,255,255,0.6);
    --bg-dark: #0a0515;
    --card-bg: rgba(20, 10, 40, 0.95);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

[id] {
    scroll-margin-top: 100px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ========================
   BACKGROUND EFFECTS
   ======================== */
.bg-wrapper {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.bg-hero {
    position: absolute;
    inset: 0;
    background: url('../assets/images/hero-bg.png') center center / cover no-repeat;
    opacity: 0.4;
}

.bg-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 5, 21, 0.3) 0%,
        rgba(10, 5, 21, 0.6) 50%,
        rgba(10, 5, 21, 0.95) 100%
    );
}

.bg-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: particle-float 15s linear infinite;
    box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold);
}

.particle:nth-child(1) { left: 5%; animation-duration: 20s; animation-delay: 0s; }
.particle:nth-child(2) { left: 10%; animation-duration: 18s; animation-delay: -2s; background: var(--pink-neon); box-shadow: 0 0 10px var(--pink-neon); }
.particle:nth-child(3) { left: 15%; animation-duration: 22s; animation-delay: -4s; }
.particle:nth-child(4) { left: 20%; animation-duration: 16s; animation-delay: -1s; background: var(--cyan-neon); box-shadow: 0 0 10px var(--cyan-neon); }
.particle:nth-child(5) { left: 25%; animation-duration: 19s; animation-delay: -3s; }
.particle:nth-child(6) { left: 35%; animation-duration: 21s; animation-delay: -5s; background: var(--pink-neon); box-shadow: 0 0 10px var(--pink-neon); }
.particle:nth-child(7) { left: 45%; animation-duration: 17s; animation-delay: -2s; }
.particle:nth-child(8) { left: 55%; animation-duration: 23s; animation-delay: -6s; background: var(--green-neon); box-shadow: 0 0 10px var(--green-neon); }
.particle:nth-child(9) { left: 60%; animation-duration: 15s; animation-delay: -1s; }
.particle:nth-child(10) { left: 65%; animation-duration: 20s; animation-delay: -4s; background: var(--cyan-neon); box-shadow: 0 0 10px var(--cyan-neon); }
.particle:nth-child(11) { left: 70%; animation-duration: 18s; animation-delay: -3s; }
.particle:nth-child(12) { left: 75%; animation-duration: 22s; animation-delay: -7s; background: var(--pink-neon); box-shadow: 0 0 10px var(--pink-neon); }
.particle:nth-child(13) { left: 80%; animation-duration: 16s; animation-delay: -2s; }
.particle:nth-child(14) { left: 85%; animation-duration: 19s; animation-delay: -5s; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.particle:nth-child(15) { left: 90%; animation-duration: 21s; animation-delay: -1s; }
.particle:nth-child(16) { left: 30%; animation-duration: 24s; animation-delay: -8s; background: var(--cyan-neon); box-shadow: 0 0 10px var(--cyan-neon); }
.particle:nth-child(17) { left: 40%; animation-duration: 17s; animation-delay: -3s; }
.particle:nth-child(18) { left: 50%; animation-duration: 20s; animation-delay: -6s; background: var(--gold-bright); box-shadow: 0 0 15px var(--gold-bright); width: 6px; height: 6px; }
.particle:nth-child(19) { left: 95%; animation-duration: 18s; animation-delay: -4s; background: var(--pink-neon); box-shadow: 0 0 10px var(--pink-neon); }
.particle:nth-child(20) { left: 3%; animation-duration: 23s; animation-delay: -7s; }

@keyframes particle-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(80vh) scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(0.5);
        opacity: 0;
    }
}

.light-rays {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(255, 215, 0, 0.15) 0%,
        rgba(255, 0, 255, 0.05) 30%,
        transparent 60%
    );
    animation: rays-pulse 8s ease-in-out infinite;
}

@keyframes rays-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ========================
   HEADER
   ======================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 5, 21, 0.98) 0%, rgba(10, 5, 21, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo__crown {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 50%;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    animation: crown-glow 3s ease-in-out infinite;
}

@keyframes crown-glow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6)); }
    50% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1)); }
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gold-shimmer 3s ease infinite;
}

@keyframes gold-shimmer {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.logo__sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--text-muted);
}

.nav {
    display: flex;
    gap: 40px;
}

.nav__link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white-soft);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--pink-neon));
    transition: width 0.3s;
}

.nav__link:hover {
    color: var(--gold);
}

.nav__link:hover::after {
    width: 100%;
}

/* ========================
   HERO
   ======================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.hero__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__content {
    position: relative;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 0, 255, 0.1) 100%);
    border: 1px solid var(--gold);
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 30px;
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.hero__title {
    margin-bottom: 25px;
}

.title-small {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 8px;
    color: var(--white);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.title-big {
    display: block;
    font-family: var(--font-display);
    font-size: 7rem;
    letter-spacing: 5px;
    line-height: 0.9;
    background: linear-gradient(
        135deg,
        var(--gold) 0%,
        var(--gold-bright) 25%,
        var(--orange-hot) 50%,
        var(--pink-hot) 75%,
        var(--gold) 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 5s ease infinite;
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.5));
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero__desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange-hot) 100%);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--bg-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: cta-shine 3s ease infinite;
}

@keyframes cta-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.hero__cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.hero__image-wrapper {
    position: relative;
}

.hero__image {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    animation: image-float 6s ease-in-out infinite;
}

@keyframes image-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero__image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.floating-chips {
    position: absolute;
    top: -10%;
    right: -5%;
}

.floating-trophy {
    font-size: 5rem;
    animation: trophy-float 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.5));
}

@keyframes trophy-float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

/* ========================
   FEATURES STRIP
   ======================== */
.features-strip {
    background: linear-gradient(90deg, var(--purple-deep), var(--purple-mid), var(--purple-deep));
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s;
}

.feature:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.feature__icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 0, 255, 0.1));
    border-radius: 15px;
}

.feature__title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    display: block;
}

.feature__desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================
   CASINOS SECTION
   ======================== */
.casinos {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 4rem;
    letter-spacing: 5px;
    background: linear-gradient(90deg, var(--white), var(--gold), var(--white));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gold-shimmer 4s ease infinite;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.casino-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.15);
}

.card-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    z-index: 10;
}

.card-badge--gold {
    background: linear-gradient(135deg, var(--gold), var(--orange-hot));
    color: var(--bg-dark);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
    animation: badge-pulse 2s ease infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 5px 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4); }
}

.card-badge--hot {
    background: linear-gradient(135deg, var(--red-hot), var(--orange-hot));
    color: var(--white);
}

.card-badge--popular {
    background: linear-gradient(135deg, var(--purple-light), var(--pink-neon));
    color: var(--white);
}

.badge-crown, .badge-fire, .badge-star {
    font-size: 1rem;
}

.card-content {
    position: relative;
    padding: 25px 30px;
    z-index: 5;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 30px;
    align-items: center;
}

.casino-card--featured .card-content {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05), transparent);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-logo {
    width: 120px;
    height: 70px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(240,240,240,0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    padding: 10px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
}

.logo-text--fruity {
    background: linear-gradient(135deg, #FF5252, #FF1744);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Poppins', sans-serif;
}

.card-logo--fruity::before {
    content: '🍒';
    position: absolute;
    top: 2px;
    right: 5px;
    font-size: 0.9rem;
}

.card-logo--fruity {
    position: relative;
}

.logo-text--swift {
    background: linear-gradient(135deg, #00BCD4, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Poppins', sans-serif;
}

.logo-text--luna {
    background: linear-gradient(135deg, #9E9E9E, #607D8B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-display);
    letter-spacing: 3px;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: #666;
    font-weight: 600;
    margin-top: 2px;
}

.card-rating {
    text-align: center;
}

.stars {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-bottom: 5px;
}

.stars span {
    color: var(--gold);
    font-size: 1.1rem;
    text-shadow: 0 0 10px var(--gold);
    animation: star-twinkle 1.5s ease infinite;
}

.stars span:nth-child(2) { animation-delay: 0.1s; }
.stars span:nth-child(3) { animation-delay: 0.2s; }
.stars span:nth-child(4) { animation-delay: 0.3s; }
.stars span:nth-child(5) { animation-delay: 0.4s; }

@keyframes star-twinkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.rating-value {
    display: block;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--green-neon);
    text-shadow: 0 0 15px var(--green-neon);
}

.rating-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-bonus {
    text-align: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 255, 0.2);
}

.bonus-tag {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cyan-neon);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.bonus-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
}

.bonus-percent {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.bonus-upto {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bonus-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.bonus-extra {
    display: block;
    font-size: 0.85rem;
    color: var(--pink-hot);
    font-weight: 600;
}

.card-features {
    list-style: none;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--white-soft);
    padding: 6px 0;
}

.check {
    color: var(--green-neon);
    font-weight: 700;
    text-shadow: 0 0 10px var(--green-neon);
}

.card-footer {
    text-align: center;
}

.card-btn {
    position: relative;
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--red-hot), var(--pink-hot));
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: btn-mega-pulse 2s ease infinite;
}

@keyframes btn-mega-pulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--red-hot), 0 0 40px rgba(255, 51, 102, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px var(--red-hot), 0 0 60px var(--pink-hot), 0 0 80px rgba(255, 51, 102, 0.4);
        transform: scale(1.05);
    }
}

.card-btn:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 0 40px var(--red-hot), 0 0 80px var(--pink-hot);
}

.btn-particles {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btn-shine 2s ease infinite;
}

@keyframes btn-shine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.card-terms {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ========================
   WHY US SECTION
   ======================== */
.why-us {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 27, 78, 0.3) 50%, transparent 100%);
}

.section-header--center {
    text-align: center;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: linear-gradient(135deg, rgba(30, 15, 50, 0.9), rgba(15, 10, 30, 0.9));
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--pink-neon));
    border-radius: 0 0 10px 10px;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.1);
}

.why-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 0, 255, 0.1));
    border-radius: 50%;
    font-size: 2.5rem;
}

.why-icon-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.why-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 15px;
}

.why-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer__crown {
    width: 40px;
    height: 40px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.footer__tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 10px;
}

.footer__badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.age-badge {
    width: 45px;
    height: 45px;
    border: 2px solid var(--red-hot);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--red-hot);
}

.responsible-badge {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__nav {
    display: flex;
    gap: 30px;
}

.footer__nav a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__nav a:hover {
    color: var(--gold);
}

.footer__bottom {
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1200px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        order: 1;
    }

    .hero__visual {
        order: 0;
    }

    .hero__desc {
        margin: 0 auto 40px;
    }

    .hero__stats {
        justify-content: center;
    }

    .stat {
        text-align: center;
    }

    .card-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .card-header {
        justify-content: center;
    }

    .card-features {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .title-big {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .header__inner {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        gap: 20px;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .title-small {
        font-size: 2rem;
    }

    .title-big {
        font-size: 3.5rem;
    }

    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero__image {
        max-width: 350px;
    }

    .floating-trophy {
        width: 100px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .card-badge {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 15px;
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer__top {
        flex-direction: column;
        text-align: center;
    }

    .footer__brand {
        flex-direction: column;
    }

    .footer__nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}
