/* NEXUS VR - Cyberpunk VR Club Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0f;
    overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00f5ff;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #00f5ff, #b624ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px #00f5ff;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00f5ff;
    text-shadow: 0 0 10px #00f5ff;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #00f5ff, #b624ff);
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00f5ff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(10, 10, 15, 0.7), rgba(10, 10, 15, 0.7)),
        url('../images/04.webp') center/cover;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

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

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.hero-title .neon {
    background: linear-gradient(45deg, #00f5ff, #ff0080, #b624ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neon-glow 2s ease-in-out infinite alternate;
}

@keyframes neon-glow {
    from { text-shadow: 0 0 20px #00f5ff, 0 0 30px #00f5ff, 0 0 40px #00f5ff; }
    to { text-shadow: 0 0 10px #ff0080, 0 0 20px #ff0080, 0 0 30px #ff0080; }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.4;
}

.cta-button {
    background: linear-gradient(45deg, #00f5ff, #b624ff);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    color: #ffffff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover:before {
    left: 100%;
}

/* Main Sections */
main {
    margin-top: 80px;
}

section {
    padding: 5rem 0;
    position: relative;
}

/* Section Headers */
h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00f5ff, #b624ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00f5ff, #ff0080);
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a1a 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #00f5ff;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-text ul {
    list-style: none;
    padding-left: 1rem;
}

.about-text li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
}

.about-text li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #b624ff;
    font-size: 0.8rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 245, 255, 0.2);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Products Section */
.products {
    background: #0a0a0f;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(182, 36, 255, 0.1));
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00f5ff, #ff0080, #b624ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
}

.product-card h3 {
    font-size: 1.5rem;
    color: #00f5ff;
    margin-bottom: 1rem;
}

.product-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-card ul {
    list-style: none;
}

.product-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-card li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #b624ff;
}

/* Pricing Section */
.prices {
    background: linear-gradient(135deg, #1a0a1a 0%, #0a0a0f 100%);
}

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

.price-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.price-card.featured {
    border: 2px solid #00f5ff;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
    transform: scale(1.05);
}

.price-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00f5ff, #b624ff);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
}

.price-card h3 {
    font-size: 2rem;
    color: #00f5ff;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #ffffff;
}

.price span {
    font-size: 1rem;
    color: #b624ff;
}

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.price-card li {
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
}

.price-button {
    width: 100%;
    background: linear-gradient(45deg, #b624ff, #ff0080);
    border: none;
    padding: 1rem 2rem;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.price-button:hover {
    background: linear-gradient(45deg, #ff0080, #00f5ff);
    transform: translateY(-2px);
}

.special-offers {
    margin-top: 4rem;
    text-align: center;
}

.special-offers h3 {
    font-size: 2rem;
    color: #ff0080;
    margin-bottom: 2rem;
}

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

.offer-card {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(182, 36, 255, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 128, 0.3);
}

.offer-card h4 {
    color: #ff0080;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery {
    background: #0a0a0f;
}

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

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    border-color: #00f5ff;
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.3);
}

/* Testimonials Section */
.feedback {
    background: linear-gradient(135deg, #1a0a1a 0%, #0a0a0f 100%);
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 245, 255, 0.1);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #00f5ff;
}

.testimonial h4 {
    color: #00f5ff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.rating {
    color: #ff0080;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    background: #0a0a0f;
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(182, 36, 255, 0.05));
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #00f5ff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 245, 255, 0.1);
}

.faq-item h3 {
    color: #00f5ff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    line-height: 1.6;
}

/* Contact Form */
.contact {
    background: linear-gradient(135deg, #1a0a1a 0%, #0a0a0f 100%);
    text-align: center;
    padding: 5rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00f5ff;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00f5ff;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.submit-button {
    background: linear-gradient(45deg, #00f5ff, #b624ff);
    border: none;
    padding: 1rem 3rem;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.3);
}

/* Disclaimer */
.disclaimer {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 245, 255, 0.3);
}

.disclaimer h3 {
    color: #ff0080;
    margin-bottom: 1rem;
    text-align: center;
}

.disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 2px solid #00f5ff;
}

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

.footer-section h4 {
    color: #00f5ff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00f5ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    color: #cccccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid #00f5ff;
    padding: 1.5rem;
    z-index: 1001;
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-accept {
    background: linear-gradient(45deg, #00f5ff, #b624ff);
    border: none;
    padding: 0.8rem 1.5rem;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 245, 255, 0.3);
}

.cookie-learn {
    color: #00f5ff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 1px solid #00f5ff;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.cookie-learn:hover {
    background: rgba(0, 245, 255, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1002;
}

.popup {
    background: linear-gradient(135deg, #1a0a1a, #0a0a0f);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #00f5ff;
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.3);
    max-width: 400px;
    width: 90%;
}

.popup h3 {
    color: #00f5ff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.popup p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-close {
    background: linear-gradient(45deg, #b624ff, #ff0080);
    border: none;
    padding: 0.8rem 2rem;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.popup-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(182, 36, 255, 0.3);
}

/* Policy Pages */
.policy-page {
    padding: 2rem 0;
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

.policy-page h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00f5ff, #b624ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    text-align: center;
    color: #cccccc;
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #00f5ff;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: #00f5ff;
    margin-bottom: 1.5rem;
    text-align: left;
}

.policy-section h2::after {
    display: none;
}

.policy-section h3 {
    font-size: 1.4rem;
    color: #b624ff;
    margin: 1.5rem 0 1rem 0;
}

.policy-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-section a {
    color: #00f5ff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.policy-section a:hover {
    border-bottom-color: #00f5ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

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

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

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .price-card.featured {
        transform: none;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    h2 {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 15px;
    }
}

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

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

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

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

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

    .popup {
        padding: 2rem;
        margin: 1rem;
    }

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

/* Animations and Smooth Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .popup-overlay {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .policy-page {
        margin-top: 0;
    }
}