:root {
    --primary-blue: #00d2ff;
    --secondary-blue: #3a7bd5;
    --deep-ocean: #000c18;
    --dark-bg: #03070c;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-glow: rgba(0, 210, 255, 0.4);
    --text-main: #f0f7ff;
    --text-dim: #8ba2b5;
    --surface: #0a1118;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
    height: 100vh;
}

/* Grid Pattern Background */
.grid-bg {
    background-image: 
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slides System */
#app {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slide {
    position: fixed;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Float Animation for Content */
.float-in {
    animation: floatIn 1.5s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes floatIn {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Start Menu Styling */
#start-menu {
    background: radial-gradient(circle at 50% 50%, var(--secondary-blue) 0%, var(--deep-ocean) 100%);
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1000;
}

.hero-box {
    position: relative;
    z-index: 10;
}

.glow-text {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(to bottom, #fff, var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px var(--accent-glow));
    margin-bottom: 0.5rem;
    animation: pulse 3s infinite ease-in-out, float 6s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { filter: drop-shadow(0 0 15px var(--accent-glow)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 45px var(--accent-glow)); transform: scale(1.03); }
}

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

.subtitle {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 4rem;
    letter-spacing: 8px;
    font-weight: 300;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.btn-primary-glow {
    padding: 1.5rem 5rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    background: transparent;
    border: 1px solid var(--primary-blue);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.1);
    z-index: 1;
    text-transform: uppercase;
}

.btn-primary-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary-glow:hover::before {
    transform: translateX(100%);
}

.btn-primary-glow:hover {
    background: var(--primary-blue);
    box-shadow: 0 0 60px var(--primary-blue);
    transform: translateY(-5px) scale(1.05);
    color: var(--deep-ocean);
}

.version {
    position: absolute;
    bottom: 3rem;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-dim);
    background: rgba(0,0,0,0.4);
    padding: 8px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Dashboard Navigation */
.navbar {
    padding: 1rem 0;
    background: rgba(3, 7, 12, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-weight: 900;
    font-size: 1.8rem;
    color: #fff;
}

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

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

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-link:hover { color: #fff; }

.nav-link.special {
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ext { font-size: 0.7rem; opacity: 0.7; }

.nav-btn-sm {
    background: #5865F2;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: 0.3s;
}

.nav-btn-sm:hover { filter: brightness(1.2); transform: translateY(-2px); }

/* Main Content Styles */
.dashboard-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 5%;
}

.hero-minimal {
    text-align: center;
    margin-bottom: 8rem;
}

.title-main {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desc-main {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.btn-download-main {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 1.5rem 4rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 4px;
    transition: 0.3s;
    box-shadow: 0 20px 40px rgba(255,255,255,0.1);
}

.btn-download-main:hover {
    background: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 210, 255, 0.3);
}

.file-info {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 10rem;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
}

.stat-val {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-dim);
}

/* Features Section */
.features-section {
    margin-bottom: 10rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h3 {
    font-size: 2.5rem;
    color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 12px;
    transition: 0.3s;
}

.feature-card:hover { border-color: var(--primary-blue); transform: translateY(-10px); }

.f-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }

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

.feature-card p { line-height: 1.6; color: var(--text-dim); }

/* Mega Offer Section */
.mega-offer {
    background: var(--surface);
    border: 1px solid var(--primary-blue);
    border-radius: 20px;
    padding: 4rem;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.offer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.badge-new {
    background: var(--primary-blue);
    color: #000;
    padding: 5px 15px;
    font-weight: 900;
    font-size: 0.7rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.offer-left h3 { font-size: 3rem; margin-bottom: 1rem; color: #fff; }

.offer-left p { color: var(--text-dim); font-size: 1.1rem; }

.offer-right { display: flex; gap: 2rem; }

.pricing-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    min-width: 220px;
}

.pricing-card.premium {
    border-color: var(--primary-blue);
    background: rgba(0, 210, 255, 0.05);
}

.price-header { font-size: 0.8rem; font-weight: 700; color: var(--text-dim); margin-bottom: 1rem; }

.price-val { font-size: 3rem; font-weight: 900; color: #fff; margin-bottom: 0.5rem; }

.premium .price-val { color: var(--primary-blue); }

.curr { font-size: 1rem; margin-left: 5px; opacity: 0.7; }

.price-limit { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 1.5rem; }

.btn-buy {
    width: 100%;
    padding: 1rem;
    border: none;
    background: var(--primary-blue);
    color: #000;
    font-weight: 900;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-buy:hover { filter: brightness(1.2); transform: scale(1.05); }

/* Footer */
.footer-modern {
    border-top: 1px solid var(--glass-border);
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.logo-sm { font-weight: 900; font-size: 1.2rem; color: var(--primary-blue); margin-bottom: 1rem; }

.footer-col h5 { font-size: 0.9rem; margin-bottom: 1.5rem; color: #fff; }

.footer-col a { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; display: block; margin-bottom: 0.5rem; transition: 0.2s; }

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

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.5;
}

@media (max-width: 968px) {
    .glow-text { font-size: 4rem; }
    .title-main { font-size: 2.5rem; }
    .stats-grid, .feature-grid, .offer-container, .offer-right { grid-template-columns: 1fr; flex-direction: column; }
    .nav-links { display: none; }
}

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

.action-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: left;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.action-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    background: rgba(0, 210, 255, 0.05);
}

.action-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1.2rem;
    background: linear-gradient(90deg, var(--secondary-blue), var(--primary-blue));
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
}

.btn-download:hover {
    filter: brightness(1.2);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.4);
}

/* Offer Card Specifics */
.highlight-glow {
    border: 1px solid var(--primary-blue);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.1);
}

.badge {
    background: var(--primary-blue);
    color: var(--deep-ocean);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    align-self: flex-start;
    margin-bottom: 1rem;
}

.offer-details {
    margin: 1.5rem 0;
}

.trial {
    font-size: 1.4rem;
    font-weight: 700;
}

.free {
    color: var(--primary-blue);
    text-decoration: underline;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0.5rem 0;
    color: #fff;
}

.unlimited {
    color: var(--text-dim);
    font-weight: 600;
    font-style: italic;
}

.btn-secondary {
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--deep-ocean);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-card {
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.discord { background-color: #5865F2; }

.social-btn:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Animations Logic */
.slide.exit {
    transform: translateY(-100%);
    opacity: 0;
}

.slide.enter {
    transform: translateY(100%);
}

.slide.enter-active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .glow-text { font-size: 3.5rem; }
    .hero-section h2 { font-size: 2rem; }
    .action-grid { grid-template-columns: 1fr; }
}
