/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-cyan: #00FFFF;
    --neon-magenta: #FF00FF;
    --deep-blue: #0A0E27;
    --dark-purple: #1A1A2E;
    --electric-blue: #00D9FF;
    --hot-pink: #FF006E;
    --soft-white: #F8F9FA;
    --gray-text: #B8B9C1;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-purple) 100%);
    color: var(--soft-white);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    transition: width 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pic1.avif') no-repeat center center/cover;
    filter: blur(10px) brightness(0.4);
    transform: scale(1.1);
    z-index: -1;
}

.hero-content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text-content {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

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

.hero-image-showcase {
    flex: 1;
    max-width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-showcase-img-1,
.hero-showcase-img-2 {
    width: 70%;
    border-radius: 15px;
    border: 3px solid rgba(0, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-showcase-img-1 {
    transform: rotateY(-20deg) translateX(-20%);
    z-index: 2;
}

.hero-showcase-img-2 {
    position: absolute;
    transform: rotateY(20deg) translateX(20%);
    z-index: 1;
    filter: brightness(0.8);
}

.hero-image-showcase:hover .hero-showcase-img-1 {
    transform: rotateY(0) translateX(0) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 0, 110, 0.4);
    z-index: 3;
}

.hero-image-showcase:hover .hero-showcase-img-2 {
    transform: rotateY(0) translateX(0) scale(1.05);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--electric-blue), var(--hot-pink));
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(255, 0, 110, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 0, 110, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    padding: 12px 35px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--neon-cyan);
    color: var(--deep-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(255, 0, 255, 0.2));
    border: 2px solid var(--hot-pink);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(255, 0, 110, 0.3);
}

.disclaimer-icon {
    font-size: 3rem;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.8));
}

.disclaimer-banner h3 {
    color: var(--neon-magenta);
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.disclaimer-banner p {
    color: var(--soft-white);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.disclaimer-banner .btn-secondary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Game Section */
.game-section {
    padding: 60px 0;
    text-align: center;
}

.game-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-frame {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    border: 3px solid rgba(0, 255, 255, 0.4);
    border-radius: 15px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 50px rgba(0, 217, 255, 0.4);
    background: rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(10px);
}

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

@media (max-width: 768px) {
    .hero-content-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 10px;
    }
    .hero-text-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-image-showcase {
        max-width: 100%;
        margin-top: 1rem;
        flex-direction: row;
        justify-content: center;
    }
    .hero-showcase-img-1,
    .hero-showcase-img-2 {
        width: 45vw;
        min-width: 120px;
        max-width: 180px;
        height: auto;
    }
    .about-content {
        display: block;
        gap: 0;
    }
    .about-image {
        width: 100%;
        height: 200px;
        margin: 0 auto 1.5rem auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .about-image img {
        width: 80vw;
        max-width: 300px;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
    .about-text {
        text-align: center;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .about-text h2 {
        font-size: 1.5rem;
    }
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(90deg, var(--electric-blue), var(--hot-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.about-text p {
    color: var(--gray-text);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
}

.reviews-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(90deg, var(--neon-magenta), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

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

.review-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.review-stars {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.review-card p {
    color: var(--gray-text);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.reviewer-name {
    color: var(--neon-cyan);
    font-weight: 600;
    text-align: right;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(10, 14, 39, 0.5);
    backdrop-filter: blur(10px);
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(90deg, var(--hot-pink), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

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

.feature-box {
    text-align: center;
    padding: 40px 25px;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(0, 255, 255, 0.1));
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
}

.feature-box h3 {
    color: var(--neon-cyan);
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-box p {
    color: var(--gray-text);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 50px 0 20px;
    margin-top: 80px;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
}

.footer-disclaimer {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.15), rgba(255, 0, 255, 0.15));
    border: 1px solid var(--hot-pink);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-disclaimer p {
    color: var(--soft-white);
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--neon-cyan);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

.footer-section ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--electric-blue), var(--hot-pink));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(255, 0, 110, 0.4);
    z-index: 999;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(255, 0, 110, 0.6);
}

/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-purple));
    border: 3px solid var(--hot-pink);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 80px rgba(255, 0, 110, 0.5);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.popup-content h2 {
    color: var(--neon-magenta);
    margin-bottom: 25px;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.popup-content p {
    color: var(--soft-white);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.popup-buttons {
    margin-top: 30px;
}

/* Content Pages */
.content-page {
    padding: 100px 0 60px;
    min-height: 70vh;
}

.content-page h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    text-align: center;
}

.content-section {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.content-section h2 {
    color: var(--neon-cyan);
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.content-section h3 {
    color: var(--electric-blue);
    margin-bottom: 15px;
    margin-top: 25px;
    font-size: 1.3rem;
}

.content-section p {
    color: var(--gray-text);
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section ul {
    color: var(--gray-text);
    margin-left: 25px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section a {
    color: var(--neon-cyan);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.content-section a:hover {
    border-bottom-color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: var(--neon-cyan);
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-transform: uppercase;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--soft-white);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 14, 39, 0.5);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--soft-white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.contact-info {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    color: var(--neon-magenta);
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.contact-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h4 {
    color: var(--electric-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--gray-text);
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        border-bottom: 2px solid rgba(0, 255, 255, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

    .popup-content {
        padding: 40px 25px;
    }
}
