:root {
    --primary-color: #39ff14; /* Neon Green */
    --secondary-color: #b026ff; /* Neon Purple */
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-color: #f0f0f0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --font-heading: 'Black Ops One', cursive;
    --font-body: 'Roboto Condensed', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
}

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

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

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

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

.btn-cta-nav {
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    color: var(--primary-color) !important;
}

.btn-cta-nav:hover {
    background: var(--primary-color);
    color: #000 !important;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/hero.png') no-repeat center center/cover;
    filter: brightness(0.4) contrast(1.2);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--dark-bg), transparent);
}

.hero-content h2 {
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
}

.main-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    color: #ccc;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    animation: bounce 2s infinite;
    font-size: 2rem;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Sections */
.section {
    padding: 6rem 5%;
}

.dark-section {
    background-color: var(--dark-bg);
}

.darker-section {
    background-color: var(--darker-bg);
}

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

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

.split.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.text-content h3 {
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.text-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.neon-purple {
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(176, 38, 255, 0.5);
}

.neon-green {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #aaa;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.features-list i {
    color: var(--secondary-color);
}

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

.image-content img {
    width: 100%;
    border-radius: 5px;
    filter: saturate(0.8) contrast(1.1);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Pricing */
.cta-section {
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.card {
    background: rgba(255,255,255,0.03);
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
    position: relative;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
}

.card.featured {
    border-color: var(--secondary-color);
    background: rgba(176, 38, 255, 0.05);
}

.card.featured:hover {
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.2);
    border-color: var(--secondary-color);
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
}

.card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

footer {
    padding: 3rem 5%;
    background: #000;
    border-top: 1px solid #222;
    text-align: center;
}

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

.socials a {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 1rem;
    padding: 0.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}

.socials a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .split, .split.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
