/* Lucky Stars Casino - Bright & Dynamic Styles */

/* CSS Variables - Explosive Colors! */
:root {
    /* Primary Colors - BRIGHT & BOLD */
    --electric-blue: #00D4FF;
    --hot-pink: #FF0080;
    --neon-green: #00FF88;
    --golden-yellow: #FFD700;
    --vibrant-purple: #9D00FF;
    --fire-orange: #FF6B00;
    
    /* Background Colors */
    --bg-dark: #0A0E27;
    --bg-medium: #151937;
    --bg-light: #1E2346;
    --bg-card: #252A4E;
    
    /* Text Colors */
    --text-white: #FFFFFF;
    --text-light: #E8E8F0;
    --text-muted: #A8ABBE;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* Base Styles - Let's make it POP! */
body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(157, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
}

/* Typography - BIG & BOLD! */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.gradient-text {
    background: linear-gradient(135deg, var(--electric-blue), var(--hot-pink), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--golden-yellow);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Buttons - SUPER CLICKABLE! */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--electric-blue), var(--hot-pink));
    color: var(--text-white);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--golden-yellow), var(--fire-orange));
    color: var(--bg-dark);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
}

.btn-outline:hover {
    background: var(--electric-blue);
    color: var(--bg-dark);
    transform: scale(1.05);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Animations - MAKE IT MOVE! */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bounce {
    animation: bounce 2s infinite;
}

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

/* Modal - Age Verification */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 3px solid var(--electric-blue);
    border-radius: 30px;
    padding: var(--space-xl);
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: scale(0.8) rotate(-5deg);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
}

.modal.active .modal-content {
    transform: scale(1) rotate(0deg);
}

.modal-logo {
    font-size: 5rem;
    margin-bottom: var(--space-md);
    animation: pulse 2s infinite;
}

.modal-subtitle {
    color: var(--golden-yellow);
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
}

.age-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin: var(--space-lg) 0;
}

.disclaimer {
    color: var(--neon-green);
    font-weight: 700;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--bg-card);
    border: 2px solid var(--golden-yellow);
    border-radius: 20px;
    padding: var(--space-md);
    max-width: 400px;
    z-index: 1000;
    transform: translateY(200%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

/* Header - BOLD & BRIGHT! */
.main-header {
    background: rgba(21, 25, 55, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--electric-blue);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: var(--space-sm) 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-white);
}

.logo-icon {
    font-size: 2.5rem;
    margin-right: var(--space-sm);
    animation: pulse 3s infinite;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--neon-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-green);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: var(--space-sm);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--electric-blue);
    transition: all 0.3s ease;
}

/* Hero Section - EXPLOSIVE! */
.hero {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(25, 14, 41, 0.9) 0%, rgba(18, 10, 31, 0.95) 100%),
                url('../images/backgrounds/desktop/hero-bg.png') center/cover no-repeat;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.star {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--golden-yellow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(3px);
    animation: float 10s infinite ease-in-out;
}

.star-1 { top: 10%; left: 10%; animation-delay: 0s; }
.star-2 { top: 20%; right: 15%; animation-delay: 2s; }
.star-3 { bottom: 30%; left: 20%; animation-delay: 4s; }
.star-4 { bottom: 10%; right: 25%; animation-delay: 6s; }
.star-5 { top: 50%; left: 50%; animation-delay: 8s; }

/* Floating Decorative Elements */
.floating-element {
    position: absolute;
    opacity: 0.8;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.floating-element.element-1 {
    top: 10%;
    right: 5%;
    width: 150px;
    animation-delay: 0s;
}

.floating-element.element-2 {
    bottom: 20%;
    left: 3%;
    width: 120px;
    animation-delay: 2s;
}

.floating-element.element-3 {
    top: 50%;
    right: 10%;
    width: 100px;
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.title-top {
    display: block;
    font-size: 1.5rem;
    color: var(--electric-blue);
    margin-bottom: var(--space-xs);
}

.title-main {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    background: linear-gradient(135deg, var(--golden-yellow), var(--fire-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.title-bottom {
    display: block;
    font-size: 1.8rem;
    color: var(--hot-pink);
    margin-top: var(--space-xs);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.feature-icon {
    font-size: 2rem;
}

.feature-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Sections */
section {
    padding: var(--space-xxl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

/* Benefits Section */
.benefits-section {
    background: var(--bg-medium);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.benefit-card {
    background: var(--bg-card);
    border: 3px solid var(--electric-blue);
    border-radius: 20px;
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--hot-pink);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.3);
}

.benefit-card:hover::before {
    transform: rotate(225deg);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    display: block;
}

.benefit-card h3 {
    color: var(--golden-yellow);
    margin-bottom: var(--space-sm);
}

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

.card-bounce {
    animation: bounce 3s infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

/* Games Section */
.games-section {
    background: var(--bg-dark);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.game-card {
    background: linear-gradient(rgba(39, 28, 62, 0.95), rgba(39, 28, 62, 0.95)),
                url('../images/elements/casino-icons.png') center/cover no-repeat;
    background-size: 150%;
    background-position: center;
    border: 3px solid transparent;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.game-hot {
    border-color: var(--fire-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.game-new {
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.game-jackpot {
    border-color: var(--golden-yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(157, 0, 255, 0.4);
}

.game-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 900;
    z-index: 10;
    animation: pulse 2s infinite;
}

.game-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--neon-green), var(--electric-blue));
    color: var(--bg-dark);
    border: none;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
}

.play-icon {
    font-size: 1.5rem;
}

.game-info {
    padding: var(--space-lg);
}

.game-title {
    color: var(--text-white);
    margin-bottom: var(--space-sm);
}

.game-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.stars {
    color: var(--golden-yellow);
    font-size: 1.2rem;
}

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

.game-description {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.stat-item {
    color: var(--electric-blue);
    font-weight: 700;
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-medium);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--bg-card);
    border: 2px solid var(--hot-pink);
    border-radius: 20px;
    padding: var(--space-lg);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.3);
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--golden-yellow);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 900;
    color: var(--text-white);
}

.author-badge {
    font-size: 0.9rem;
    color: var(--golden-yellow);
}

/* Leaderboard */
.leaderboard-section {
    background: var(--bg-dark);
}

.leaderboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.leaderboard-item {
    background: var(--bg-card);
    border: 2px solid var(--electric-blue);
    border-radius: 15px;
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: all 0.3s ease;
}

.leaderboard-item.gold {
    border-color: var(--golden-yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.leaderboard-item.silver {
    border-color: #C0C0C0;
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3);
}

.leaderboard-item.bronze {
    border-color: #CD7F32;
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.3);
}

.leaderboard-item:hover {
    transform: translateY(-5px);
}

.rank {
    font-size: 2rem;
    font-weight: 900;
    color: var(--golden-yellow);
    min-width: 50px;
    text-align: center;
}

.player-info {
    flex: 1;
}

.player-name {
    display: block;
    font-weight: 900;
    color: var(--text-white);
}

.player-win {
    display: block;
    color: var(--neon-green);
    font-weight: 700;
}

.game-played {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-medium);
    position: relative;
    overflow: hidden;
}

/* Bonus Wheel Decoration */
.bonus-wheel-decoration {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    opacity: 0.3;
    animation: spin 15s linear infinite;
}

@keyframes spin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

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

.faq-item {
    background: var(--bg-card);
    border: 2px solid var(--electric-blue);
    border-radius: 15px;
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: var(--space-md);
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--golden-yellow);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--text-light);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-medium), var(--bg-light));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, var(--golden-yellow), var(--fire-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.cta-features span {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.cta-buttons {
    margin-bottom: var(--space-md);
}

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

/* Disclaimer Section */
.disclaimer-section {
    background: rgba(255, 0, 0, 0.05);
    border-top: 3px solid rgba(255, 0, 0, 0.3);
    padding: var(--space-xl) 0;
}

.disclaimer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    color: var(--golden-yellow);
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
}

.disclaimer-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.disclaimer-resources {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.disclaimer-resources ul {
    list-style: none;
    padding: 0;
    margin-top: var(--space-sm);
}

.disclaimer-resources li {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.disclaimer-resources a {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 700;
}

.disclaimer-resources a:hover {
    text-decoration: underline;
}

.disclaimer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.disclaimer-logos img {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.disclaimer-logos img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.7);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--golden-yellow);
    color: var(--bg-dark);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Footer */
.main-footer {
    background: linear-gradient(rgba(18, 10, 31, 0.95), rgba(18, 10, 31, 0.95)),
                url('../images/backgrounds/desktop/footer-pattern.png') center/cover no-repeat;
    border-top: 3px solid var(--electric-blue);
    padding: var(--space-xl) 0 var(--space-lg);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h4 {
    color: var(--golden-yellow);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.3) rotate(15deg);
}

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

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--electric-blue);
    padding-left: 10px;
}

.support-info {
    color: var(--text-light);
    line-height: 1.8;
}

.support-info strong {
    color: var(--neon-green);
}

.support-info a {
    color: var(--electric-blue);
    text-decoration: none;
}

.cert-logos {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.cert-logos img {
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.cert-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--bg-medium);
        flex-direction: column;
        padding: var(--space-xl);
        transition: all 0.3s ease;
        border-right: 3px solid var(--electric-blue);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        flex-direction: column;
        width: 100%;
        margin-top: var(--space-lg);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 6rem 0 3rem;
        background: linear-gradient(180deg, rgba(25, 14, 41, 0.9) 0%, rgba(18, 10, 31, 0.95) 100%),
                    url('../images/backgrounds/mobile/hero-bg.png') center/cover no-repeat;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .game-card, .benefit-card, .testimonial-card {
        margin: 0 0.5rem var(--space-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-logos {
        gap: 1rem;
    }
    
    .disclaimer-logos img {
        height: 50px;
        padding: 0.5rem;
    }
    
    .leaderboard-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    /* Hide decorative elements on mobile for better performance */
    .floating-element {
        display: none;
    }
    
    .bonus-wheel-decoration {
        display: none;
    }
    
    /* Mobile Menu Background Image */
    .nav-menu.active {
        background: linear-gradient(rgba(25, 14, 41, 0.95), rgba(18, 10, 31, 0.95)),
                    url('../images/backgrounds/mobile/menu-bg.png') center/cover no-repeat;
    }
}

/* Prevent horizontal scroll on all devices */
@media (max-width: 1200px) {
    .star {
        display: none;
    }
} 

/* Hero Compact */
.hero-compact {
    padding: 6rem 0 2rem;
    min-height: auto;
}

.hero-compact .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

/* About Page Styles */
.about-section {
    background: var(--bg-dark);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-block {
    background: var(--bg-card);
    border: 3px solid var(--electric-blue);
    border-radius: 25px;
    padding: var(--space-xl);
    margin-bottom: var(--space-xxl);
    text-align: center;
}

.story-block h2 {
    color: var(--golden-yellow);
    margin-bottom: var(--space-lg);
}

.story-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

/* Timeline */
.timeline {
    position: relative;
    margin: var(--space-xxl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--electric-blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 40%;
    text-align: right;
    color: var(--golden-yellow);
    font-weight: 900;
    font-size: 1.2rem;
}

.timeline-item:nth-child(even) .timeline-date {
    text-align: left;
}

.timeline-content {
    flex: 0 0 40%;
    background: var(--bg-card);
    border: 2px solid var(--hot-pink);
    border-radius: 20px;
    padding: var(--space-lg);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.timeline-content h3 {
    color: var(--neon-green);
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--golden-yellow);
    border: 3px solid var(--bg-dark);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -60px;
}

/* Values Grid */
.values-section {
    margin: var(--space-xxl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.value-card {
    background: var(--bg-card);
    border: 3px solid var(--neon-green);
    border-radius: 20px;
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.value-card h3 {
    color: var(--golden-yellow);
    margin-bottom: var(--space-sm);
}

/* Team Section */
.team-section {
    margin: var(--space-xxl) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.team-member {
    background: var(--bg-card);
    border: 2px solid var(--electric-blue);
    border-radius: 20px;
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--golden-yellow);
    margin-bottom: var(--space-md);
}

.team-member h3 {
    color: var(--hot-pink);
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
}

.team-role {
    color: var(--neon-green);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

/* Stats Section */
.stats-section {
    margin: var(--space-xxl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.stat-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-light));
    border: 3px solid var(--golden-yellow);
    border-radius: 20px;
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--golden-yellow);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 700;
}

/* CTA Block */
.cta-block {
    background: var(--bg-card);
    border: 3px solid var(--hot-pink);
    border-radius: 30px;
    padding: var(--space-xl);
    text-align: center;
    margin: var(--space-xxl) 0;
}

.cta-block h2 {
    color: var(--golden-yellow);
    margin-bottom: var(--space-md);
}

.cta-block p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

/* Contact Page Styles */
.contact-section {
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 3px solid var(--electric-blue);
    border-radius: 25px;
    padding: var(--space-xl);
}

.contact-form-wrapper h2 {
    color: var(--golden-yellow);
    margin-bottom: var(--space-md);
}

.contact-form-wrapper p {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

/* Form Styles */
.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    color: var(--neon-green);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-dark);
    border: 2px solid var(--electric-blue);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--hot-pink);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Contact Info */
.contact-info-wrapper h2 {
    color: var(--golden-yellow);
    margin-bottom: var(--space-lg);
}

.contact-card {
    background: var(--bg-card);
    border: 2px solid var(--hot-pink);
    border-radius: 20px;
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.contact-card h3 {
    color: var(--neon-green);
    margin-bottom: var(--space-sm);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: var(--space-xs);
}

.contact-card strong {
    color: var(--golden-yellow);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Social Contact */
.social-contact {
    background: var(--bg-card);
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    text-align: center;
}

.social-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.social-btn {
    padding: 0.5rem 1rem;
    background: var(--bg-dark);
    border: 2px solid var(--electric-blue);
    border-radius: 30px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--electric-blue);
    color: var(--bg-dark);
    transform: scale(1.1);
}

/* FAQ Prompt */
.faq-prompt {
    background: var(--bg-card);
    border: 2px solid var(--golden-yellow);
    border-radius: 20px;
    padding: var(--space-lg);
    text-align: center;
}

.faq-prompt h3 {
    color: var(--golden-yellow);
    margin-bottom: var(--space-sm);
}

.faq-prompt a {
    color: var(--electric-blue);
    font-weight: 700;
}

/* Fun Facts */
.fun-facts {
    background: var(--bg-medium);
    border-radius: 30px;
    padding: var(--space-xl);
}

.fun-facts h2 {
    text-align: center;
    color: var(--golden-yellow);
    margin-bottom: var(--space-lg);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.fact-card {
    background: var(--bg-card);
    border: 2px solid var(--electric-blue);
    border-radius: 15px;
    padding: var(--space-md);
    text-align: center;
    transition: all 0.3s ease;
}

.fact-card:hover {
    transform: rotate(-3deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.fact-icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.fact-card p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.fact-card strong {
    color: var(--hot-pink);
}

/* Responsive adjustments for About & Contact */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: left;
    }
    
    .timeline-date {
        text-align: left !important;
        margin-bottom: var(--space-sm);
    }
    
    .timeline-content {
        margin-left: 40px;
    }
    
    .timeline-content::after {
        left: -30px !important;
        right: auto !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
} 