:root {
    --bg-color: #0b0616;
    --surface-color: #1a0f2e;
    --primary-color: #fc0fc0; /* Neon Pink */
    --secondary-color: #00f0ff; /* Neon Blue */
    --gold: #FFD700;
    --gold-glow: rgba(255, 215, 0, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #a395b4;
    --glass-bg: rgba(26, 15, 46, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

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

h1, h2, h3, .logo {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

/* Typography Highlights */
h1 span, h2 span {
    background: linear-gradient(90deg, var(--gold), #ffaa00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px var(--gold-glow);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(11, 6, 22, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

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

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

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #bc0a8f);
    color: white;
    box-shadow: 0 0 20px rgba(252, 15, 192, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(252, 15, 192, 0.6);
}

.btn-outline {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.6rem 1.5rem;
    background: transparent;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--gold), #d4af37);
    color: #000;
    box-shadow: 0 0 20px var(--gold-glow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--gold-glow);
}

.icon {
    width: 24px;
    height: 24px;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,6,22,0.6) 0%, rgba(11,6,22,0.95) 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 10;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-inline: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.bonus-text {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* General Layout elements */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.feature-card {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-img {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
}

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

.feature-card p {
    color: var(--text-secondary);
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #1f0b40, #0a0414);
    padding: 5rem 2rem;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    position: relative;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.banner-img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--gold-glow));
}

.banner-text {
    max-width: 500px;
}

.banner-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-text p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
}

.quote {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stars {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: #05020a;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

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

.footer-logo {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid #1a0f2e;
    padding-top: 2rem;
}

/* Animations */
.floating {
    animation: floating 3s ease-in-out infinite;
}

.pulsing {
    animation: pulsing 2s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulsing {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Scroll Reveals */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Screenshots */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.screenshot-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s, border-color 0.3s;
    border: 2px solid var(--glass-border);
}

.screenshot-img:hover {
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

/* Disclaimer Section */
.disclaimer-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.disclaimer-box h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-box .highlight {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.disclaimer-box p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.disclaimer-box strong {
    color: var(--gold);
}

/* Legal Pages Styling */
.page-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.glass-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 3.5rem 4rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

.page-text {
    line-height: 1.8;
}

.page-text h3 {
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.page-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.page-text strong {
    color: var(--gold);
}

.page-list {
    margin-left: 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.page-list li {
    margin-bottom: 0.5rem;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .banner-text h2 {
        font-size: 2.5rem;
    }
}
