/* Base Styles */
:root {
    --neon-blue: #77ff00;
    --dark-blue: #0077b6;
    --black: #121212;
    --dark-gray: #232323;
    --light-gray: #f0f0f0;
    --white: #ffffff;
    --neon-glow: 0 0 10px rgb(23 255 0 / 70%), 0 0 20px rgb(4 255 0 / 50%);
    --transition-speed: 0.3s;
}

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

body {
    font-family: sans-serif;
    line-height: 1.6;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--white);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: var(--neon-blue);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    transition: all var(--transition-speed);
}

header.scrolled {
    padding: 1rem 0;
    background-color: rgba(18, 18, 18, 0.95);
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span.highlight {
    color: var(--neon-blue);
    text-shadow: var(--neon-glow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--neon-blue);
    bottom: 0;
    left: 0;
    transition: width var(--transition-speed);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--neon-blue);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    background-image: linear-gradient(
            rgba(18, 18, 18, 0.7),
            rgba(18, 18, 18, 0.7)
        ),
        url('../images/banner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(0, 243, 255, 0.1) 0%,
        rgba(18, 18, 18, 0.8) 70%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 span.highlight {
    color: var(--neon-blue);
    text-shadow: var(--neon-glow);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--light-gray);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--neon-blue);
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--neon-glow);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.8), 0 0 30px rgba(0, 243, 255, 0.6);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--dark-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #282828);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform var(--transition-speed);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--neon-blue);
    transform: scaleX(0);
    transition: transform var(--transition-speed);
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--light-gray);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--black);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--light-gray);
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--neon-blue);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--neon-blue);
    border-left: 2px solid var(--neon-blue);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid var(--neon-blue);
    border-right: 2px solid var(--neon-blue);
}

/* Games Section */
.games {
    padding: 5rem 0;
    background-color: var(--dark-gray);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background-color: var(--black);
    border-radius: 10px;
    overflow: hidden;
    transition: transform var(--transition-speed);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

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

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

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

.play-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--neon-blue);
    color: var(--black);
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--transition-speed);
    transform: translateY(20px);
}

.game-card:hover .play-button {
    transform: translateY(0);
}

.play-button:hover {
    background-color: var(--white);
}

.game-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.game-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--light-gray);
}

/* Disclaimer Section */
.disclaimer {
    padding: 3rem 0;
    background-color: var(--black);
    border-top: 1px solid rgba(0, 243, 255, 0.1);
}

.disclaimer-content {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.disclaimer-content h3 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.disclaimer-content p {
    color: var(--light-gray);
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
}

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

.copyright {
    color: var(--light-gray);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--light-gray);
    transition: color var(--transition-speed);
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--neon-blue);
}

/* Contact Page */
.contact-section {
    padding: 8rem 0 5rem;
    background-color: var(--black);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info,
.contact-form {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--neon-blue);
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 243, 255, 0.1);
    color: var(--neon-blue);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all var(--transition-speed);
}

.social-icon:hover {
    background-color: var(--neon-blue);
    color: var(--black);
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 5px rgba(0, 243, 255, 0.3);
}

.submit-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--neon-blue);
    color: var(--black);
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
}

/* Policy Pages */
.policy-section {
    padding: 8rem 0 5rem;
    background-color: var(--black);
}

.policy-content {
    background-color: var(--dark-gray);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.last-updated {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    text-align: right;
}

.policy-content h2 {
    color: var(--neon-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-content p,
.policy-content li {
    margin-bottom: 1rem;
    color: var(--light-gray);
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content ul li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        padding: 2rem 0;
        background-color: rgba(18, 18, 18, 0.95);
        flex-direction: column;
        align-items: center;
        transition: left var(--transition-speed);
        backdrop-filter: blur(10px);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .policy-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .feature-card,
    .game-card,
    .contact-info,
    .contact-form,
    .policy-content {
        padding: 1.5rem;
    }
}
