/* BKA AÇÕES - STYLE.CSS */

/* -------------------------------------------------------------
   1. DESIGN SYSTEM & ROOT VARIABLES
------------------------------------------------------------- */
:root {
    /* Color System */
    --color-bg-dark: #020713;
    --color-bg-navy: #051126;
    --color-bg-card: rgba(6, 19, 43, 0.75);
    --color-bg-glass: rgba(10, 25, 47, 0.45);
    
    --color-gold-light: #FFF0C2;
    --color-gold-primary: #E4B34F;
    --color-gold-dark: #A37F2F;
    
    --color-silver-light: #F1F5F9;
    --color-silver-primary: #CBD5E1;
    
    --color-green-whatsapp: #25D366;
    --color-green-whatsapp-hover: #20BA56;
    
    --color-text-main: #F8FAFC;
    --color-text-muted: #94A3B8;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-primary) 50%, var(--color-gold-dark) 100%);
    --gradient-navy: linear-gradient(180deg, #020713 0%, #06132b 50%, #0c244f 100%);
    --gradient-card-border: linear-gradient(135deg, rgba(228, 179, 79, 0.4) 0%, rgba(228, 179, 79, 0.05) 50%, rgba(12, 36, 79, 0.6) 100%);
    --gradient-glow-blue: radial-gradient(circle, rgba(20, 80, 180, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    --gradient-glow-gold: radial-gradient(circle, rgba(228, 179, 79, 0.08) 0%, rgba(0, 0, 0, 0) 70%);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* -------------------------------------------------------------
   2. BASE STYLES & RESET
------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background: var(--gradient-navy);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Background Glow Spots */
.bg-glow {
    position: absolute;
    width: 80vw;
    height: 80vw;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.bg-glow-1 {
    top: -10vw;
    right: -20vw;
    background: var(--gradient-glow-blue);
}

.bg-glow-2 {
    top: 40vw;
    left: -30vw;
    background: var(--gradient-glow-gold);
}

.bg-glow-3 {
    bottom: -10vw;
    right: -10vw;
    background: var(--gradient-glow-blue);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Text helpers */
.gold-text {
    color: var(--color-gold-primary);
}

.gold-gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* -------------------------------------------------------------
   3. REUSABLE COMPONENTS
------------------------------------------------------------- */

/* Main Pulsing Gold CTA Button */
.main-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gradient-gold);
    color: #020713;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(228, 179, 79, 0.4), 0 0 40px rgba(228, 179, 79, 0.2);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    width: 100%;
    max-width: 420px;
}

.main-cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 30px rgba(228, 179, 79, 0.7), 0 0 60px rgba(228, 179, 79, 0.3);
}

.main-cta-btn:active {
    transform: translateY(-1px) scale(0.99);
}

/* Button sweep light effect */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
    animation: shine-sweep 4s infinite ease-in-out;
}

@keyframes shine-sweep {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.btn-icon {
    width: 24px;
    height: 24px;
}

/* Glassmorphism Buttons */
.glass-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-bg-glass);
    border: 1px solid rgba(228, 179, 79, 0.25);
    color: var(--color-text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.glass-btn:hover {
    background: rgba(228, 179, 79, 0.12);
    border-color: var(--color-gold-primary);
    transform: translateY(-2px);
}

/* Section Headers styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-gold-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* Scroll Reveal animation foundation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------
   4. HEADER / NAVBAR
------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(2, 7, 19, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(228, 179, 79, 0.08);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(2, 7, 19, 0.9);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--color-gold-primary);
    box-shadow: 0 0 10px rgba(228, 179, 79, 0.3);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

/* -------------------------------------------------------------
   5. HERO SECTION
------------------------------------------------------------- */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-wrapper {
    margin-bottom: 30px;
    position: relative;
}

.hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid var(--color-gold-primary);
    box-shadow: 0 0 30px rgba(228, 179, 79, 0.3), inset 0 0 20px rgba(228, 179, 79, 0.2);
}

.animate-pulse-glow {
    animation: logo-glow-pulse 3s infinite alternate;
}

@keyframes logo-glow-pulse {
    0% {
        box-shadow: 0 0 20px rgba(228, 179, 79, 0.25), 0 0 40px rgba(20, 80, 180, 0.1);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 35px rgba(228, 179, 79, 0.55), 0 0 60px rgba(20, 80, 180, 0.3);
        transform: scale(1.03);
    }
}

.hero-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    color: var(--color-gold-primary);
    background: rgba(228, 179, 79, 0.1);
    border: 1px solid rgba(228, 179, 79, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 950;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

/* Prize Ticker/Badges */
.prize-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    max-width: 750px;
}

.prize-badges .badge {
    background: var(--color-bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-silver-light);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.prize-badges .badge:hover {
    border-color: rgba(228, 179, 79, 0.4);
    background: rgba(6, 19, 43, 0.7);
    transform: translateY(-2px);
}

.prize-badges .badge i {
    color: var(--color-gold-primary);
    width: 16px;
    height: 16px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--color-text-main);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--color-gold-primary);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.cta-subtext {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cta-subtext i {
    color: var(--color-gold-primary);
    width: 16px;
    height: 16px;
}

/* Section divider graphic link */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, var(--color-bg-dark), transparent);
    z-index: 10;
}

/* -------------------------------------------------------------
   6. ACTIVE RAFFLES SECTION (AÇÕES ATIVAS)
------------------------------------------------------------- */
.raffles-section {
    padding: 80px 0;
    background-color: var(--color-bg-dark);
}

.raffles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.raffle-card {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(228, 179, 79, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.raffle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    border: 1.5px solid transparent;
    background: var(--gradient-card-border) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

.raffle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(228, 179, 79, 0.3);
    box-shadow: 0 15px 40px rgba(228, 179, 79, 0.1), 0 5px 15px rgba(0, 0, 0, 0.4);
}

.raffle-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Forces 1:1 Aspect Ratio (Square) */
    overflow: hidden;
    background-color: #030c1d;
}

.raffle-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.raffle-card:hover .raffle-img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(3, 12, 29, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-main);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.card-badge.gold-bg {
    background: var(--gradient-gold);
    color: #020713;
    border: none;
    box-shadow: 0 4px 10px rgba(228, 179, 79, 0.3);
}

.raffle-info {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.raffle-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 6px;
    color: var(--color-text-main);
}

.raffle-alternative {
    color: var(--color-gold-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.raffle-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    border-radius: var(--border-radius-md);
}

.stat-item i {
    color: var(--color-gold-primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.stat-val {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Progress bar inside card */
.progress-container {
    margin-bottom: 28px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.progress-label span:first-child {
    color: var(--color-text-muted);
}

.progress-label span:last-child {
    color: var(--color-gold-primary);
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(228, 179, 79, 0.5);
    transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(228, 179, 79, 0.4);
    color: var(--color-gold-primary);
    padding: 14px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: auto;
    width: 100%;
}

.card-btn:hover {
    background: var(--gradient-gold);
    color: #020713;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(228, 179, 79, 0.25);
    transform: translateY(-2px);
}

.card-btn i {
    width: 16px;
    height: 16px;
}

/* -------------------------------------------------------------
   7. BENEFITS SECTION (COMO FUNCIONA)
------------------------------------------------------------- */
.benefits-section {
    padding: 80px 0;
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(228, 179, 79, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(228, 179, 79, 0.07);
    border: 1.5px solid rgba(228, 179, 79, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: var(--color-gold-primary);
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
    background: var(--gradient-gold);
    color: #020713;
    border-color: transparent;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 5px 15px rgba(228, 179, 79, 0.3);
}

.benefit-icon-wrapper i {
    width: 32px;
    height: 32px;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* -------------------------------------------------------------
   8. REAL WINNERS SECTION (GANHADORES REAIS)
------------------------------------------------------------- */
.winners-section {
    padding: 80px 0;
    background-color: var(--color-bg-dark);
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.winner-video-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(228, 179, 79, 0.08);
    transition: var(--transition-smooth);
}

.winner-video-card:hover {
    transform: scale(1.03);
    border-color: var(--color-gold-primary);
    box-shadow: 0 15px 45px rgba(228, 179, 79, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 133%; /* 3:4 Aspect Ratio (typical phone video ratio) */
    background: #020916;
}

.video-thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    filter: brightness(0.65); /* Dimmed slightly to make the play button pop */
    transition: var(--transition-smooth);
}

.winner-video-card:hover .video-thumb-img {
    filter: brightness(0.8);
    transform: scale(1.04);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: var(--transition-smooth);
}

.winner-video-card:hover .video-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.play-btn {
    width: 64px;
    height: 64px;
    background: var(--gradient-gold);
    color: #020713;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(228, 179, 79, 0.5);
    transition: var(--transition-smooth);
    z-index: 10;
}

.play-btn i {
    width: 24px;
    height: 24px;
    margin-left: 4px; /* Align play triangle visually center */
}

.winner-video-card:hover .play-btn {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(228, 179, 79, 0.8);
}

.winner-info-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.winner-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.winner-loc {
    font-size: 0.8rem;
    color: var(--color-gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Custom Visual placeholders for simulated winners videos */
.video-placeholder-gfx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.gfx-iphone {
    background: radial-gradient(circle, rgba(12, 36, 79, 0.8) 0%, rgba(2, 7, 19, 0.95) 100%);
}

.gfx-starlink {
    background: radial-gradient(circle, rgba(20, 50, 40, 0.8) 0%, rgba(2, 7, 19, 0.95) 100%);
}

.gfx-boombox {
    background: radial-gradient(circle, rgba(70, 20, 70, 0.8) 0%, rgba(2, 7, 19, 0.95) 100%);
}

.gfx-icon {
    width: 80px;
    height: 80px;
    color: rgba(228, 179, 79, 0.15);
    transition: var(--transition-smooth);
}

.winner-video-card:hover .gfx-icon {
    color: rgba(228, 179, 79, 0.35);
    transform: scale(1.1);
}

.pulse-ring {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid rgba(228, 179, 79, 0.1);
    animation: zoom-pulse 4s infinite linear;
}

@keyframes zoom-pulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.winners-cta-container {
    text-align: center;
    margin-top: 30px;
}

/* -------------------------------------------------------------
   9. FAQ SECTION
------------------------------------------------------------- */
.faq-section {
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(228, 179, 79, 0.15);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--color-text-main);
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-trigger:hover {
    color: var(--color-gold-primary);
}

.faq-arrow {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--color-gold-primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(2, 7, 19, 0.3);
}

.faq-content p {
    padding: 0 24px 20px 24px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* -------------------------------------------------------------
   10. FOOTER
------------------------------------------------------------- */
.main-footer {
    background-color: #01040a;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--color-gold-primary);
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-links h4,
.footer-legal h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
    color: var(--color-gold-primary);
    padding-left: 4px;
}

.footer-legal p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* -------------------------------------------------------------
   11. TESTIMONIAL VIDEO MODAL (CELEBRATION OVERLAY)
------------------------------------------------------------- */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 4, 10, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #020916;
    width: 90%;
    max-width: 480px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(228, 179, 79, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(228, 179, 79, 0.15);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.video-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--color-text-main);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: rgba(228, 179, 79, 0.2);
    color: var(--color-gold-primary);
}

.modal-body {
    padding: 0;
}

.video-wrapper {
    position: relative;
    padding-top: 177.78%; /* 9:16 Aspect Ratio for vertical/Shorts video */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Celebration Player Inside Modal */
.celebration-player {
    display: flex;
    flex-direction: column;
}

.celebration-header {
    background: linear-gradient(180deg, rgba(6, 19, 43, 0.8) 0%, rgba(2, 9, 22, 0.95) 100%);
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.celebration-badge {
    background: var(--gradient-gold);
    color: #020713;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.celebration-header h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
}

.celebration-header p {
    color: var(--color-gold-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.celebration-video-box {
    height: 300px;
    position: relative;
    background: #01040a;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* simulated scroll messages in video box */
.simulated-chat-stream {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 180px;
    overflow-y: hidden;
    mask-image: linear-gradient(to top, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, #000 70%, transparent 100%);
}

.chat-bubble {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 10px 14px;
    font-size: 0.85rem;
    max-width: 90%;
    animation: chat-slide-in 0.4s ease-out forwards;
    border-left: 3px solid var(--color-gold-primary);
}

.chat-bubble-system {
    border-left-color: var(--color-green-whatsapp);
    background: rgba(37, 211, 102, 0.08);
}

.bubble-author {
    font-weight: 700;
    color: var(--color-gold-primary);
    margin-bottom: 2px;
    display: block;
}

.chat-bubble-system .bubble-author {
    color: var(--color-green-whatsapp);
}

.bubble-text {
    color: #e2e8f0;
}

@keyframes chat-slide-in {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.celebration-reward-card {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--border-radius-md);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    z-index: 5;
    animation: reward-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.reward-icon {
    color: var(--color-green-whatsapp);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.reward-txt span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.reward-txt strong {
    font-size: 1.2rem;
    color: #ffffff;
    font-family: var(--font-heading);
}

@keyframes reward-pop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.celebration-footer {
    padding: 24px;
    text-align: center;
    background: linear-gradient(0deg, rgba(6, 19, 43, 0.4) 0%, rgba(2, 9, 22, 0) 100%);
}

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

.modal-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-green-whatsapp);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 30px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
}

.modal-cta-btn:hover {
    background: var(--color-green-whatsapp-hover);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

/* -------------------------------------------------------------
   12. RESPONSIVE MEDIA QUERIES (MOBILE FIRST COMPLIANCE)
------------------------------------------------------------- */

/* Small Devices / Phones */
@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .hero-section {
        padding-top: 105px;
        padding-bottom: 30px;
    }
    
    .hero-logo-wrapper {
        margin-bottom: 16px;
    }
    
    .hero-logo {
        width: 110px;
        height: 110px;
    }

    .hero-tag {
        margin-bottom: 14px;
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    .prize-badges {
        margin-bottom: 18px;
        gap: 8px;
    }

    .prize-badges .badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 24px;
        line-height: 1.45;
    }

    .main-cta-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

/* Medium Devices / Tablets (Portrait) */
@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .navbar.scrolled {
        height: 60px;
    }
    
    .navbar-container {
        padding: 0 16px;
    }
    
    .logo-img {
        height: 38px;
        width: 38px;
    }
    
    .logo-text {
        font-size: 1.15rem;
    }
    
    .raffles-grid {
        grid-template-columns: 1fr; /* Stack card images on top of each other */
        gap: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .winners-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Large Devices / Desktops */
@media (min-width: 769px) and (max-width: 1024px) {
    .raffles-grid {
        gap: 24px;
    }
    
    .winners-grid {
        gap: 20px;
    }
    
    .footer-grid {
        gap: 30px;
    }
}

/* Confetti particles for JS simulation */
.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 15;
    pointer-events: none;
    animation: confetti-fall 3s linear forwards;
}

@keyframes confetti-fall {
    0% { transform: translateY(-50px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(350px) rotate(720deg); opacity: 0; }
}
