/* Game frame styles */
.game-frame {
    width: 100%;
    height: 550px;
    border: none;
    display: block;
    max-width: 900px;
    aspect-ratio: 16/9;
}

/* About image styles */
.about-image {
    width: 350px;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(118, 255, 3, 0.18);
    margin: 30px auto 10px auto;
}
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --purple-deep: #2d0a4e;
    --purple-rich: #4a148c;
    --magenta-bright: #d81b60;
    --lime-electric: #76ff03;
    --blue-neon: #00e5ff;
    --pink-hot: #ff006e;
    --gold-shine: #ffd700;
    --white-pure: #ffffff;
    --dark-overlay: #1a0033;
    --slot-gradient: linear-gradient(135deg, #2d0a4e, #4a148c, #d81b60);
    --candy-glow: linear-gradient(135deg, #76ff03, #00e5ff, #ff006e);
    --neon-shadow: 0 0 20px rgba(118, 255, 3, 0.5);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: var(--purple-deep);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(216, 27, 96, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.2) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--white-pure);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(26, 0, 51, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 40px;
    z-index: 1000;
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(118, 255, 3, 0.2),
                0 0 0 1px rgba(118, 255, 3, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(118, 255, 3, 0.3);
    transition: all 0.3s ease;
}

header:hover {
    box-shadow: 0 12px 40px rgba(118, 255, 3, 0.3),
                0 0 0 1px rgba(118, 255, 3, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(118, 255, 3, 0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: none;
}

.logo {
    font-family: 'Rubik', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--lime-electric);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(118, 255, 3, 0.7);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--lime-electric);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white-pure);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    background: var(--lime-electric);
    color: var(--purple-deep);
    box-shadow: var(--neon-shadow);
}

.nav-links a.active {
    background: var(--magenta-bright);
    color: var(--white-pure);
    box-shadow: 0 0 15px rgba(216, 27, 96, 0.6);
}

.hero {
    position: relative;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(45, 10, 78, 0.95), rgba(74, 20, 140, 0.9), rgba(216, 27, 96, 0.85)),
                url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?q=80&w=2070') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(118, 255, 3, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 110, 0.05) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 0, 51, 0.4);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(118, 255, 3, 0.15);
    border: 2px solid var(--lime-electric);
    border-radius: 50px;
    color: var(--lime-electric);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(118, 255, 3, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

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

.hero-content h1 {
    font-family: 'Rubik', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white-pure);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, var(--lime-electric), var(--blue-neon), var(--pink-hot));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--blue-neon);
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-outline {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--lime-electric);
    text-decoration: none;
    border: 2px solid var(--lime-electric);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary-outline:hover {
    background: var(--lime-electric);
    color: var(--purple-deep);
    box-shadow: 0 0 25px rgba(118, 255, 3, 0.6);
    transform: translateY(-2px);
}

.hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(118, 255, 3, 0.3);
    margin: 30px auto;
    border: 3px solid var(--lime-electric);
}

.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background: var(--candy-glow);
    color: var(--purple-deep);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(118, 255, 3, 0.4);
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--lime-electric);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 3px solid var(--lime-electric);
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--lime-electric);
    color: var(--purple-deep);
    transform: translateY(-2px);
    box-shadow: var(--neon-shadow);
}

.disclaimer-box {
    background: linear-gradient(135deg, #d81b60, #ff006e);
    border: 3px solid var(--pink-hot);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 8px 30px rgba(255, 0, 110, 0.4);
}

.disclaimer-box h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 2rem;
    color: var(--white-pure);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.disclaimer-box p {
    color: var(--white-pure);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.7;
}

.game-section {
    padding: 60px 0;
}

.section-title {
    font-family: 'Rubik', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--lime-electric);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 25px rgba(118, 255, 3, 0.7);
}

.game-container {
    background: rgba(26, 0, 51, 0.8);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.3);
    border: 3px solid var(--blue-neon);
}

.game-frame {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
    height: auto;
    box-shadow: 0 5px 20px rgba(118, 255, 3, 0.2);
}

.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.2), rgba(26, 0, 51, 0.6));
    border-radius: 20px;
    margin: 40px 0;
    border: 2px solid var(--purple-rich);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.5rem;
    color: var(--blue-neon);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text p {
    color: var(--white-pure);
    font-size: 1.1rem;
    line-height: 1.9;
    font-weight: 500;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.3);
    border: 3px solid var(--blue-neon);
}

.reviews-section {
    padding: 60px 0;
}

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

.review-card {
    background: rgba(26, 0, 51, 0.9);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(216, 27, 96, 0.3);
    border: 2px solid var(--magenta-bright);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(216, 27, 96, 0.5);
    border-color: var(--lime-electric);
}

.review-card .stars {
    color: var(--gold-shine);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.review-card p {
    color: var(--white-pure);
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.review-card h4 {
    color: var(--lime-electric);
    font-family: 'Rubik', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.features-section {
    padding: 60px 0;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.6), rgba(26, 0, 51, 0.9));
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
    border: 2px solid var(--blue-neon);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--pink-hot);
    box-shadow: 0 15px 50px rgba(255, 0, 110, 0.4);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
    color: var(--lime-electric);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--white-pure);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-section {
    padding: 60px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form {
    background: rgba(26, 0, 51, 0.9);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(118, 255, 3, 0.3);
    border: 3px solid var(--lime-electric);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--lime-electric);
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--blue-neon);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: rgba(45, 10, 78, 0.6);
    color: var(--white-pure);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lime-electric);
    box-shadow: 0 0 15px rgba(118, 255, 3, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    background: rgba(26, 0, 51, 0.9);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(216, 27, 96, 0.3);
    border: 3px solid var(--magenta-bright);
}

.contact-info h3 {
    font-family: 'Rubik', sans-serif;
    color: var(--pink-hot);
    margin-bottom: 20px;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    color: var(--white-pure);
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.7;
}

.legal-section {
    padding: 60px 0;
}

.legal-content {
    background: rgba(26, 0, 51, 0.95);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.3);
    border: 3px solid var(--blue-neon);
}

.legal-content h2 {
    font-family: 'Rubik', sans-serif;
    color: var(--lime-electric);
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-content h3 {
    font-family: 'Rubik', sans-serif;
    color: var(--pink-hot);
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--white-pure);
    margin-bottom: 15px;
    line-height: 1.9;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 15px;
    color: var(--white-pure);
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.last-updated {
    text-align: center;
    color: var(--blue-neon);
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

footer {
    background: rgba(26, 0, 51, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 40px 30px;
    margin: 60px 20px 30px;
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(118, 255, 3, 0.2),
                0 0 0 1px rgba(118, 255, 3, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(118, 255, 3, 0.3);
}

footer .container {
    padding: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Rubik', sans-serif;
    color: var(--lime-electric);
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--white-pure);
    line-height: 1.8;
    font-weight: 500;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--white-pure);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--lime-electric);
    padding-left: 10px;
    text-shadow: 0 0 10px rgba(118, 255, 3, 0.5);
}

.footer-notice {
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.3), rgba(255, 0, 110, 0.3));
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid var(--magenta-bright);
}

.footer-notice p {
    color: var(--white-pure);
    text-align: center;
    font-weight: 600;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid var(--purple-rich);
}

.footer-bottom p {
    color: var(--white-pure);
    font-weight: 500;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--candy-glow);
    color: var(--purple-deep);
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(118, 255, 3, 0.4);
    z-index: 999;
    font-weight: 700;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(118, 255, 3, 0.6);
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 0, 51, 0.95);
    backdrop-filter: blur(15px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: linear-gradient(135deg, #2d0a4e, #4a148c);
    border-radius: 20px;
    padding: 50px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 80px rgba(118, 255, 3, 0.5);
    border: 4px solid var(--lime-electric);
}

.popup-content h2 {
    font-family: 'Rubik', sans-serif;
    color: var(--lime-electric);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(118, 255, 3, 0.7);
}

.popup-content p {
    color: var(--white-pure);
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.9;
    font-weight: 600;
}

.popup-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.popup-buttons .btn-primary {
    background: var(--lime-electric);
    color: var(--purple-deep);
}

.popup-buttons .btn-secondary {
    background: transparent;
    border-color: var(--pink-hot);
    color: var(--pink-hot);
}

@media (max-width: 768px) {
        .about-section {
            padding: 30px 0;
            margin: 20px 0;
            border-radius: 14px;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 25px;
            align-items: center;
        }

        .about-image {
            width: 90vw;
            max-width: 320px;
            margin: 18px auto 8px auto;
            border-radius: 14px;
        }
    header {
        top: 10px;
        width: calc(100% - 20px);
        padding: 15px 20px;
        border-radius: 20px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 100px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        flex-direction: column;
        background: rgba(26, 0, 51, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px;
        transition: all 0.3s ease;
        border-radius: 20px;
        border: 2px solid rgba(118, 255, 3, 0.3);
        box-shadow: 0 8px 32px rgba(118, 255, 3, 0.2);
        transform: translateX(-150%);
        opacity: 0;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
    }

    .hero {
        min-height: 80vh;
        margin-top: 0;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 10px 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

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

    .hero-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    footer {
        margin: 40px 10px 20px;
        padding: 30px 20px 20px;
        border-radius: 20px;
    }

    .footer-links {
        align-items: center;
    }

    .game-frame {
        height: auto;
    }
}
