/* Global Styles - Cyberpunk Neon */
:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --neon-blue: #00f3ff;
    --neon-pink: #bc13fe;
    --neon-green: #0aff0a;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    --card-bg: rgba(255, 255, 255, 0.05);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    color: var(--neon-pink);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.btn-highlight {
    border: 1px solid var(--neon-green);
    padding: 5px 15px;
    border-radius: 4px;
    color: var(--neon-green) !important;
}

.btn-highlight:hover {
    background: var(--neon-green);
    color: #000 !important;
}

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: linear-gradient(rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.8)), url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #222;
}

.video-overlay {
    display: none;
}

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

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--neon-blue);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #ccc;
}

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

.btn {
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--neon-pink);
    color: #fff;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.5);
}

.btn-primary:hover {
    background: #fff;
    color: var(--neon-pink);
    box-shadow: 0 0 40px rgba(188, 19, 254, 0.8);
}

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

.btn-outline:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

/* Stats */
.stats-bar {
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    margin-top: -50px;
    position: relative;
    z-index: 5;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-green);
    font-family: var(--font-heading);
}

.stat-item .text {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    color: #fff;
}

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

.club-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    overflow: hidden;
}

.club-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.2);
}

.card-image {
    height: 200px;
    background: #333;
    position: relative;
}

.high-end {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), url('images/luxus.png');
    background-size: cover;
    background-position: center;
}

.techno {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('images/techno.png');
    background-size: cover;
    background-position: center;
}

.ruin {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url('images/ruin.png');
    background-size: cover;
    background-position: center;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--neon-blue);
    color: #000;
    padding: 2px 8px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.card-body .location {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.card-body .desc {
    margin-bottom: 15px;
    line-height: 1.5;
    color: #ccc;
}

.tags span {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--neon-pink);
    border: 1px solid var(--neon-pink);
    padding: 2px 8px;
    margin-right: 5px;
    border-radius: 10px;
}

/* Feature Section (Company) */
.feature-section {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #050505 0%, #1a001a 100%);
    border-top: 1px solid var(--neon-pink);
    border-bottom: 1px solid var(--neon-pink);
    overflow: hidden;
}

.feature-content {
    flex: 1;
    padding: 60px;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glitch-text {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px var(--neon-pink);
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.btn-giant {
    font-size: 1.2rem;
    background: var(--neon-pink);
    color: #fff;
    padding: 20px 40px;
    display: inline-block;
    border-radius: 5px;
}

.scam-warning {
    margin-top: 20px;
    color: #ff3333;
    font-size: 0.9rem;
    border: 1px solid #ff3333;
    padding: 10px;
    display: inline-block;
}

.neon-circle {
    width: 300px;
    height: 300px;
    border: 4px solid var(--neon-pink);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px var(--neon-pink), inset 0 0 50px var(--neon-pink);
    animation: pulse 2s infinite;
}

.neon-circle span {
    font-size: 5rem;
    font-family: var(--font-heading);
    color: var(--neon-pink);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Calculator */
.calc-section {
    background: rgba(255, 255, 255, 0.02);
}

.calculator-box {
    max-width: 600px;
    margin: 0 auto;
    background: #111;
    padding: 40px;
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 30px rgba(10, 255, 10, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--neon-green);
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
    font-family: var(--font-body);
}

.btn-calc {
    width: 100%;
    background: var(--neon-green);
    color: #000;
    padding: 15px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.btn-calc:hover {
    background: #fff;
}

.result-box {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.result-box #total-cost {
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-green);
    display: block;
    margin: 10px 0;
}

.hidden {
    display: none;
}

/* Accordion */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h3 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 40px;
}

.accordion-item {
    border-bottom: 1px solid #333;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.accordion-header:after {
    content: '+';
    color: var(--neon-blue);
}

.accordion-content {
    padding-bottom: 20px;
    color: #ccc;
    display: none;
}

.accordion-content.active {
    display: block;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333;
    color: #666;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* Simplified for demo */
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .feature-section {
        flex-direction: column;
    }

    .feature-visual {
        margin-top: 40px;
    }
}