/**
 * LOTIPRO - Landing Page Styles
 */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 50%, #1a365d 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1' fill='%23ffc107' opacity='0.3'/%3E%3C/svg%3E");
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-highlight {
    position: relative;
    color: var(--color-primary);
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    opacity: 0.3;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* Visibility Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

/* Mobile Video in Hero Text Section */
.hero-mobile-video {
    margin: 15px auto;
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.hero-video-frame-mobile {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* Square aspect ratio for mobile - more compact */
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-secondary));
    border: 3px solid var(--color-primary);
    box-shadow:
        0 0 30px rgba(255, 193, 7, 0.25),
        0 8px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.hero-video-frame-mobile:active {
    transform: scale(0.98);
    box-shadow:
        0 0 20px rgba(255, 193, 7, 0.3),
        0 5px 20px rgba(0, 0, 0, 0.4);
}

.hero-video-frame-mobile .video-thumbnail-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-frame-mobile .video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.55) 100%);
    z-index: 2;
}

.hero-video-frame-mobile .video-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #ff9800);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
    transition: all 0.3s ease;
}

.hero-video-frame-mobile .video-play-btn i {
    font-size: 1.75rem;
    color: #000;
    margin-left: 4px;
}

.hero-video-frame-mobile .hero-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ============================================
   FULLSCREEN VIDEO MODAL (Mobile)
   ============================================ */
.video-fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-fullscreen-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
}

.video-modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 60px;
    /* Space for close button */
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.video-modal-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 0;
    padding-bottom: 177.78%;
    /* 9:16 aspect ratio for vertical video */
    max-height: calc(100vh - 100px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: #000;
    border: 3px solid var(--color-primary);
    box-shadow: 0 0 60px rgba(255, 193, 7, 0.3);
}

.video-modal-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hide desktop video on mobile */
@media (max-width: 768px) {
    .hero-visual {
        display: none !important;
    }
}

/* ============================================
   HERO VIDEO PLAYER
   ============================================ */
.hero-video-container {
    width: 100%;
    max-width: 560px;
}

.hero-video-container.desktop-video {
    display: block;
}

.hero-video-container.mobile-video {
    display: none;
}

.hero-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    background: var(--color-bg-card);
    border: 3px solid var(--color-primary);
    box-shadow:
        0 0 40px rgba(255, 193, 7, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-normal);
}

.hero-video-frame:hover {
    border-color: var(--color-primary);
    box-shadow:
        0 0 60px rgba(255, 193, 7, 0.3),
        0 25px 80px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

/* Mobile vertical video frame */
.hero-video-frame.mobile-frame {
    padding-top: 177.78%;
    /* 9:16 Aspect Ratio */
    max-width: 280px;
    margin: 0 auto;
}

/* Video Thumbnail */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 2;
}

.video-thumbnail.hidden {
    display: none;
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play Button Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.6) 100%);
    transition: all var(--transition-fast);
}

.video-thumbnail:hover .video-play-overlay {
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 100%);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #ff9800);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.4);
    transition: all var(--transition-fast);
}

.video-play-btn i {
    font-size: 2rem;
    color: #000;
    margin-left: 5px;
}

.video-thumbnail:hover .video-play-btn {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(255, 193, 7, 0.6);
}

.video-play-text {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Video Iframe */
.hero-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Light Theme Video Adjustments - Premium */
[data-theme="light"] .hero-video-frame {
    border-color: #b8860b;
    box-shadow:
        0 0 30px rgba(184, 134, 11, 0.15),
        0 20px 50px rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .hero-video-frame:hover {
    box-shadow:
        0 0 50px rgba(184, 134, 11, 0.25),
        0 25px 70px rgba(15, 23, 42, 0.15);
}

/* Light Theme Hero Section - Premium Edition */
[data-theme="light"] .hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 50%, #e8eef4 100%);
}

[data-theme="light"] .hero-bg {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 50%, #f8fafc 100%);
}

[data-theme="light"] .hero-bg::before {
    background-image: radial-gradient(circle at 20% 80%, rgba(184, 134, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

[data-theme="light"] .hero-title {
    color: #0a1628;
}

[data-theme="light"] .hero-highlight {
    color: #b8860b;
}

[data-theme="light"] .hero-highlight::after {
    background: linear-gradient(90deg, #b8860b, transparent);
}

[data-theme="light"] .hero-subtitle {
    color: #374151;
}

[data-theme="light"] .hero-badge {
    background: rgba(184, 134, 11, 0.1);
    border-color: rgba(184, 134, 11, 0.3);
    color: #b8860b;
}

[data-theme="light"] .hero-stat-value {
    color: #b8860b;
}

[data-theme="light"] .hero-stat-label {
    color: #4b5563;
}

/* Responsive Video */
@media (max-width: 1024px) {
    .hero-video-container.desktop-video {
        display: block;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-visual {
        display: flex;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero-video-container.desktop-video {
        max-width: 100%;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn i {
        font-size: 1.5rem;
    }

    .video-play-text {
        font-size: 0.875rem;
    }
}

/* Old card styles - keeping for backward compatibility */
.hero-card-stack {
    position: relative;
    width: 300px;
    height: 400px;
}

.hero-lottery-card {
    position: absolute;
    width: 250px;
    height: 350px;
    background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-card-hover) 100%);
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    animation: float 3s ease-in-out infinite;
}

.hero-lottery-card.secondary {
    right: 0;
    bottom: 0;
    border-color: var(--color-secondary);
    animation-delay: -1.5s;
    z-index: -1;
    opacity: 0.8;
    transform: rotate(10deg);
}

.hero-lottery-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    color: var(--color-primary);
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.hero-lottery-card.secondary .hero-lottery-number {
    color: var(--color-secondary);
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.hero-lottery-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

.hero-lottery-card.secondary {
    animation-name: floatSecondary;
}

@keyframes floatSecondary {

    0%,
    100% {
        transform: translateY(0) rotate(10deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* ============================================
   LOTTERIES BAR
   ============================================ */
.lotteries-bar {
    background: var(--color-bg-secondary);
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.lotteries-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
}

.lotteries-scroll::-webkit-scrollbar {
    height: 4px;
}

.lotteries-scroll::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2px;
}

.lottery-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    color: var(--color-text-primary);
    font-weight: 500;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.lottery-chip:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-card-hover);
    color: var(--color-primary);
}

.lottery-chip img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background: var(--color-bg-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: var(--color-bg-primary);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--color-bg-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-primary);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FEATURED DRAWS
   ============================================ */
.featured-draws {
    background: var(--color-bg-secondary);
}

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-card-hover));
}

.placeholder-image i {
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.5;
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results-section {
    background: var(--color-bg-primary);
}

.result-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    text-align: center;
    transition: all var(--transition-normal);
}

.result-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.result-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.result-lottery {
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 15px;
}

.result-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.result-animal {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.result-animal i {
    color: var(--color-primary);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    background: var(--color-bg-secondary);
}

.video-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-xl);
}

.video-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.video-content p {
    color: var(--color-text-secondary);
    margin-bottom: 25px;
}

.video-player {
    aspect-ratio: 16/9;
    background: var(--color-bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.video-placeholder:hover {
    background: var(--color-bg-card);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--color-primary);
}

.video-placeholder span {
    color: var(--color-text-secondary);
}

@media (max-width: 768px) {
    .video-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--color-bg-primary);
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--color-primary);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-bg-primary);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-user h4 {
    margin-bottom: 2px;
    font-size: 1rem;
}

.testimonial-prize {
    font-size: 0.85rem;
    color: var(--color-success);
    font-weight: 600;
}

.testimonial-stars {
    margin-left: auto;
    color: var(--color-primary);
}

.testimonial-text {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--color-bg-secondary);
}

.cta-box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--color-bg-card) 0%, #1e3a5f 100%);
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-glow);
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--color-text-secondary);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-visual {
    display: flex;
    justify-content: center;
}

.cta-prize {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.cta-prize-label {
    font-size: 0.9rem;
    color: var(--color-bg-primary);
    opacity: 0.8;
}

.cta-prize-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-bg-primary);
}

.cta-prize-sub {
    font-size: 0.9rem;
    color: var(--color-bg-primary);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    background: var(--color-bg-primary);
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-secondary);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.trust-badge span {
    font-weight: 500;
}

@media (max-width: 768px) {
    .trust-badges {
        gap: 20px;
    }

    .trust-badge {
        flex-basis: calc(50% - 20px);
        justify-content: center;
    }
}

/* ============================================
   LIGHT THEME - ADDITIONAL SECTIONS
   ============================================ */

/* How it Works Section - Light */
[data-theme="light"] .how-it-works {
    background: #ffffff;
}

[data-theme="light"] .step-card {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .step-card:hover {
    border-color: rgba(184, 134, 11, 0.3);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .step-card h3 {
    color: #0a1628;
}

[data-theme="light"] .step-card p {
    color: #4b5563;
}

[data-theme="light"] .step-number {
    background: #ffffff;
    border-color: #b8860b;
    color: #b8860b;
}

/* Featured Draws Section - Light */
[data-theme="light"] .featured-draws {
    background: #eef2f6;
}

/* Lotteries Bar - Light */
[data-theme="light"] .lotteries-bar {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .lottery-chip {
    background: #f4f6f9;
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #0a1628;
}

[data-theme="light"] .lottery-chip:hover {
    border-color: #b8860b;
    background: #ffffff;
    color: #b8860b;
}

/* CTA Section - Light */
[data-theme="light"] .cta-box {
    background: linear-gradient(135deg, #ffffff 0%, #f4f6f9 100%);
    border-color: #b8860b;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .cta-content h2 {
    color: #0a1628;
}

[data-theme="light"] .cta-content p {
    color: #374151;
}

[data-theme="light"] .cta-prize {
    background: linear-gradient(135deg, #b8860b 0%, #a67c00 100%);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

[data-theme="light"] .cta-prize-label,
[data-theme="light"] .cta-prize-amount,
[data-theme="light"] .cta-prize-sub {
    color: #ffffff;
}

/* Trust Section - Light */
[data-theme="light"] .trust-section {
    background: #ffffff;
    border-top-color: rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .trust-badge {
    color: #374151;
}

[data-theme="light"] .trust-badge i {
    color: #b8860b;
}