:root {
    --bg-color: #0a0a0a;
    --bg-gradient: linear-gradient(to right, #141414, #1a1a1a, #0a0a0a);
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --primary-color: #ffffff;
    --secondary-color: #cccccc;
    --accent-color: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

/* 3. Global Scrollbar Hiding (App Feel) */
::-webkit-scrollbar {
    display: none;
}

* {
    font-family: 'Poppins', sans-serif !important;
    box-sizing: border-box;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

html,
body {
    width: 100%;
    max-width: 100vw;
    overscroll-behavior-y: none;
    background-color: #0a0a0a;
    /* Fix for white flash during page loads */
}

body {
    background: var(--bg-gradient);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Native App Feel */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 5px var(--primary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Glassmorphism Generic Class */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Header */
header {
    padding: 1rem 0;
    margin-bottom: 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0;
    /* Joined text */
    font-size: 1.8rem;
    color: #fff;
    text-transform: none;
    letter-spacing: -1px;
    /* Tighter spacing for joined look */
}

/* White Sparkling Alpha */
.logo-symbol {
    font-size: 2.5rem;
    color: #fff;
    /* White */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
    animation: sparkle 2s infinite alternate;
    margin-right: 2px;
}

@keyframes sparkle {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        opacity: 0.9;
        transform: scale(1);
    }

    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.8);
        opacity: 1;
        transform: scale(1.1);
    }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Header & Navigation */
.header-spacer {
    height: 80px;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(10, 10, 25, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
    /* Above overlay */
    padding: 10px;
}

.mobile-toggle .bar {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-toggle.active .bar.top {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .bar.middle {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-toggle.active .bar.bottom {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
#mobile-menu-overlay {
    display: none;
    /* Hidden by default */
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.mobile-menu-content {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.mobile-nav a i {
    font-size: 1.4rem;
    color: #00f2ff;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: #00f2ff;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.mobile-user-info {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.mobile-user-info .username {
    font-weight: 700;
    color: #00f2ff;
}

.mobile-btn {
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s;
}

.mobile-btn.login {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-btn.register {
    background: linear-gradient(135deg, #00f2ff, #0066ff);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.mobile-btn.logout {
    background: rgba(255, 0, 85, 0.1);
    color: #ff0055;
    border: 1px solid rgba(255, 0, 85, 0.2);
}

.mobile-btn:active {
    transform: scale(0.98);
}

/* Responsive Logic */
@media (max-width: 1075px) {

    .main-nav,
    .user-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    .header-container {
        justify-content: flex-end;
    }

    .header-container .logo-area {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Fix FontAwesome Icons getting overridden by global font */
.fas,
.fa,
.fab,
.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

/* Logo Area Updates */
.logo-area {
    display: flex;
    align-items: center;
    /* Perfect vertical alignment */
    text-decoration: none;
    gap: 8px;
    /* Tighter gap */
    z-index: 100;
}

.logo-img {
    height: 40px;
    /* Adjust based on your logo's height proportion */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 300;
    /* Thin "Evde" */
    color: white;
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
}

.logo-text span {
    font-weight: 900;
    /* Thick "Alfa" */
    background: linear-gradient(to right, #fff, #a2d2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 1px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.main-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav a i {
    font-size: 16px;
    min-width: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.main-nav a:hover i {
    transform: translateY(-2px);
    color: #00f2ff;
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-right: 10px;
}

.action-btn {
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.action-btn.text {
    color: white;
}

.action-btn.text:hover {
    color: #00f2ff;
}

/* Premium Launch Button (Sign Up) */
.action-btn.primary {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    /* Glass base */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}

/* Gradient Border/Glow effect using pseudo-element */
.action-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00f2ff, #0066ff);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0.1;
    /* Subtle tint initially */
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.action-btn.primary:hover::before {
    opacity: 1;
    /* Full gradient on hover */
}

/* Shimmer Line */
.action-btn.primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    z-index: 2;
}

.action-btn.primary:hover::after {
    left: 150%;
    transition: 0.7s ease-in-out;
}

.action-btn.outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    background: transparent;
}

.action-btn.outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 180, 219, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
}

/* Forms */
.form-container {
    max-width: 400px;
    margin: 50px auto;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.form-control {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.4);
}

/* App Grid */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.app-card {
    transition: transform 0.3s;
    overflow: hidden;
}

.app-card:hover {
    transform: scale(1.03);
}

.app-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.app-card h3 {
    margin-bottom: 5px;
}

.app-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

/* Subscription Page */
.pricing-card {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin: 20px 0;
    color: var(--primary-color);
}

/* Footer */
/* ENHANCED FOOTER */
footer {
    margin-top: auto;
    background: #050510;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 20px 20px;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: left;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.cta-section-enhanced {
    background: linear-gradient(135deg, #1c1c3c, #0a0a1a);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    border-top: 1px solid var(--glass-border);
}

.cta-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,...');
    /* Optional pattern */
    opacity: 0.05;
}

.cta-btn-glow {
    padding: 18px 50px;
    font-size: 1.3rem;
    border-radius: 50px;
    background: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 180, 219, 0.6);
    color: white;
    font-weight: bold;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn-glow:hover {
    box-shadow: 0 0 50px rgba(0, 180, 219, 1);
    transform: scale(1.05);
}

/* Default: Hide mobile bottom nav on desktop */
.mobile-bottom-nav {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Mobile menu implementation usually needed here */
    }

    .mobile-nav {
        /* Mobile nav block */
        position: relative;
        background: transparent;
    }

    .mobile-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.8rem;
    }

    .container {
        padding-bottom: calc(100px + env(safe-area-inset-bottom));
        /* Increased Space for bottom nav + safe area */
    }

    /* Modern Bottom Navigation Bar */
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        /* 2. Safe Area Insets calculation */
        height: calc(70px + env(safe-area-inset-bottom));
        padding: 0 20px env(safe-area-inset-bottom) 20px;
        background: rgba(10, 10, 25, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 9999;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    }

    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        font-size: 0.7rem;
        font-weight: 500;
        flex: 1;
        transition: all 0.3s ease;
    }

    .mobile-bottom-nav .nav-item i {
        font-size: 1.3rem;
        margin-bottom: 4px;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .mobile-bottom-nav .nav-item.active {
        color: #00f2ff;
    }

    .mobile-bottom-nav .nav-item.active i {
        color: #00f2ff;
        transform: translateY(-2px);
    }

    /* Center Protruding FAB */
    .mobile-bottom-nav .center-fab {
        position: relative;
        flex: 0 0 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateY(-25px);
        /* Protrude upwards */
        z-index: 10000;
    }

    .mobile-bottom-nav .center-fab .fab-inner {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, #00f2ff, #0066ff);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 20px rgba(0, 102, 255, 0.4), inset 0 -3px 10px rgba(0, 0, 0, 0.2);
        border: 4px solid #0f0f1a;
        /* Match body bg to create cutout effect */
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .mobile-bottom-nav .center-fab i {
        color: white;
        font-size: 1.8rem;
        margin: 0;
    }

    .mobile-bottom-nav .center-fab .fab-text {
        position: absolute;
        bottom: -20px;
        font-size: 0.7rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.5);
        transition: color 0.3s ease;
        white-space: nowrap;
    }

    .mobile-bottom-nav .center-fab.active .fab-text {
        color: #00f2ff;
    }

    .mobile-bottom-nav .center-fab:active .fab-inner {
        transform: scale(0.9);
    }

    /* Notification Badge */
    .mobile-bottom-nav .bottom-badge {
        position: absolute;
        top: -2px;
        left: 50%;
        margin-left: 5px;
        background: #ff4757;
        color: white;
        font-size: 0.6rem;
        font-weight: 800;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 10px rgba(255, 71, 87, 0.6);
        z-index: 10;
        border: 1.5px solid rgba(10, 10, 25, 0.9);
    }
}

/* Admin Panel Layout */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.sidebar-menu li a {
    display: block;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.7);
    border-left: 3px solid transparent;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-left-color: var(--primary-color);
}

.admin-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .admin-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        min-height: auto;
    }
}

/* HERO SECTION */
.hero-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 30px auto;
    animation: fadeInUp 1.2s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.4s ease-out;
    z-index: 2;
}

.hero-btn-primary {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff00cc, #333399);
    border: none;
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.5);
    transition: all 0.3s;
}

.hero-btn-primary:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 0, 204, 0.8);
}

/* Floating Shapes Background */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    opacity: 0.6;
    animation: float 10s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #ff00cc;
    top: -10%;
    left: -10%;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #333399;
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #00d2ff;
    top: 40%;
    right: 20%;
    animation-delay: -2s;
}

/* FULL WIDTH HERO SLIDER */
.hero-slider-section {
    position: relative;
    width: 100vw;
    height: 90vh;
    /* Almost full viewport */
    overflow: hidden;
    margin-top: -1px;
    /* Fix small gaps */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    padding: 20px;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Animations for Slide Content */
.hero-slide-content {
    max-width: 800px;
    z-index: 3;
}

.hero-slide h1 {
    font-size: 5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-slide p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    transform: translateY(30px);
    opacity: 0;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-slide.active h1 {
    animation: slideUpFade 1s forwards 0.3s;
}

.hero-slide.active p {
    animation: slideUpFade 1s forwards 0.5s;
}

.hero-slide.active .btn-custom {
    animation: slideUpFade 1s forwards 0.7s;
    opacity: 0;
    /* Start hidden */
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Beautiful Gradients for Slides */
.slide-1 {
    background: radial-gradient(circle at center, #2b5876 0%, #4e4376 100%);
}

.slide-2 {
    background: radial-gradient(circle at center, #0093E9 0%, #80D0C7 100%);
}

.slide-3 {
    background: radial-gradient(circle at center, #85FFBD 0%, #FFFB7D 100%);
}

.slider-nav-btns {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
}

/* Container Utility for Dashboard Only (Since we removed global container) */
.dashboard-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

/* SLIDER SECTION - FULL WIDTH */
.slider-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /* Break out of container */
    overflow: hidden;
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(0, 102, 255, 0.1)),
        url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1h2v2H1V1zm4 0h2v2H5V1zm4 0h2v2H9V1z' fill='%2300f2ff' fill-opacity='0.1'/%3E%3C/svg%3E");
}

.slider-track {
    display: flex;
    gap: 40px;
    padding: 20px 50px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-card {
    min-width: 400px;
    /* Larger cards */
    width: 400px;
    height: 500px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    flex-shrink: 0;
    scroll-snap-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slider-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* FEATURES SECTION (High-Tech Redesign) */
.features-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background: #050510;
    overflow: hidden;
}

/* Background Effects */
.features-section.tech-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.03) 0%, transparent 60%);
    animation: rotateBg 60s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.tech-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: white;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #a2d2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.2));
}

.rocket-emoji {
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(255, 100, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    perspective: 1000px;
    /* For 3D Tilt */
}

/* Glass Tech Card */
.feature-card.glass-tech {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.card-border-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(0, 242, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.4s;
}

.feature-card.glass-tech:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 242, 255, 0.1);
    border-color: rgba(0, 242, 255, 0.2);
}

.feature-card.glass-tech:hover .card-border-glow {
    opacity: 1;
}

/* Holo Icon Wrapper */
.icon-wrapper.holo-emitter {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
}

.feature-icon {
    width: 50px;
    height: 50px;
    color: #00f2ff;
    transition: 0.4s;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.4));
    z-index: 2;
}

.holo-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(0, 242, 255, 0.3);
    border-radius: 50%;
    animation: spinSlow 10s linear infinite;
}

.feature-card.glass-tech:hover .feature-icon {
    transform: scale(1.1);
    color: #fff;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.8));
}

.feature-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.95rem;
}

@keyframes spinSlow {
    100% {
        transform: rotate(360deg);
    }
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* --- FORCE MOBILE MENU OVERRIDES --- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10002;
    padding: 10px;
}

.mobile-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: #fff !important;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-toggle.active .bar.top {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .bar.middle {
    opacity: 0;
}

.mobile-toggle.active .bar.bottom {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 1075px) {

    .main-nav,
    .user-actions {
        display: none !important;
    }

    .mobile-toggle {
        display: flex !important;
    }

    .header-container {
        justify-content: space-between !important;
        padding: 0 20px;
    }
}

/* --- MOBILE MENU ENHANCEMENTS --- */

/* Close Button */
.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.mobile-close-btn:hover {
    background: rgba(255, 0, 85, 0.2);
    color: #ff0055;
    border-color: #ff0055;
    transform: rotate(90deg);
}

/* Cinematic Alpha Symbol */
.cinematic-alpha-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    /* Lifted up from the line */
    padding-bottom: 15px;
    padding-top: 10px;
}

.cinematic-alpha-text {
    margin-top: -15px;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.cinematic-alpha-text .alfa {
    color: #ffffff;
}

.cinematic-alpha-text .kesif {
    color: #FFE600;
}

.cinematic-alpha {
    font-family: 'Poppins', sans-serif;
    /* Changed to Poppins */
    font-size: 5rem;
    /* Significantly Larger */
    font-weight: 700;
    color: #fff;
    text-shadow:
        0 0 10px rgba(0, 242, 255, 0.8),
        0 0 20px rgba(0, 242, 255, 0.6),
        0 0 40px rgba(0, 242, 255, 0.4);
    animation: alphaPulse 3s infinite ease-in-out alternate;
}

@keyframes alphaPulse {
    0% {
        opacity: 0.6;
        text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        text-shadow:
            0 0 20px rgba(0, 242, 255, 1),
            0 0 40px rgba(0, 242, 255, 0.8),
            0 0 60px #00f2ff;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.6;
        text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
        transform: scale(0.95);
    }
}

/* --- INFO HERO SECTION (New) --- */
.info-hero-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #050510 100%);
    color: white;
}

.info-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* Text Side */
.info-hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight-text {
    background: linear-gradient(135deg, #00f2ff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.3));
}

.hero-subheadline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Stats Row */
.hero-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.plus {
    font-size: 1.5rem;
    color: #00f2ff;
    vertical-align: top;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

/* CTA Button */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: white;
    color: black;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.hero-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.4);
    gap: 20px;
}

/* Visual Side */
.info-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.floating-console {
    width: 350px;
    height: 450px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    box-shadow:
        -50px 50px 100px rgba(0, 0, 0, 0.8),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.console-screen {
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, #1a1a2e, #0f0c29);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.console-content {
    text-align: center;
    color: #00f2ff;
    animation: pulse 2s infinite;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.icon-math {
    top: -20px;
    right: -20px;
    background: #ff0055;
    color: white;
}

.icon-science {
    bottom: 50px;
    left: -30px;
    background: #00f2ff;
    color: black;
}

.icon-art {
    top: 40%;
    right: -50px;
    background: #ffe600;
    color: black;
}

.icon-rocket {
    bottom: -20px;
    right: 20px;
    background: #8a2be2;
    color: white;
}

/* Background Orbs */
.tech-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: #00f2ff;
    top: -100px;
    left: -100px;
    animation: float 10s infinite alternate;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #ff0055;
    bottom: -50px;
    right: -50px;
    animation: float 8s infinite alternate-reverse;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .info-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .info-hero-text {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-stats-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .floating-console {
        width: 280px;
        height: 380px;
        transform: none;
        /* Simplify on mobile */
    }
}

/* --- COSMIC TESTIMONIALS (Marquee) --- */
.testimonials-section {
    padding: 80px 0;
    background: #050510;
    /* Blend with previous section */
    overflow: hidden;
    position: relative;
}

.marquee-track {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    gap: 30px;
    animation: scrollLeft 40s linear infinite;
}

.marquee-left .marquee-content {
    animation-name: scrollLeft;
}

.marquee-right .marquee-content {
    animation-name: scrollRight;
}

.t-card {
    min-width: 350px;
    width: 350px;
    padding: 30px;
    border-radius: 20px;
    white-space: normal;
    /* Allow text wrap inside card */
    cursor: pointer;
    transition: transform 0.3s;
}

.t-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
}

.t-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.t-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.color-1 {
    background: linear-gradient(135deg, #ff0055, #ff5500);
}

.color-2 {
    background: linear-gradient(135deg, #00f2ff, #0066ff);
}

.color-3 {
    background: linear-gradient(135deg, #cc00ff, #aa00ff);
}

.color-4 {
    background: linear-gradient(135deg, #00ff88, #00cc66);
}

.color-5 {
    background: linear-gradient(135deg, #ff9900, #ffcc00);
}

.color-6 {
    background: linear-gradient(135deg, #ff00cc, #9900cc);
}

.t-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: white;
}

.t-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.t-stars {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.t-card p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.5;
}

/* Pause animation on hover */
.marquee-track:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Adjust based on content width duplications */
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* --- HOW IT WORKS (3 Steps) --- */
.how-it-works-section {
    padding: 40px 0 100px;
    background: #010102;
    position: relative;
    overflow: visible;
    text-align: center;
    z-index: 20;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    position: relative;
    padding: 40px 0;
}

@media (min-width: 992px) {
    .how-it-works-section {
        padding-top: 0;
    }

    .steps-container {
        margin-top: -225px;
    }
}

/* Connecting Line */
.steps-connector {
    position: absolute;
    top: 90px;
    left: 15%;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00f2ff, transparent);
    z-index: 0;
    opacity: 0.5;
}

.step-card {
    position: relative;
    flex: 1;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px 30px;
    transition: transform 0.4s;
    z-index: 1;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 242, 255, 0.3);
}

.step-number-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    font-family: 'Poppins', sans-serif;
}

.step-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #00f2ff;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.step-glow-ring {
    position: absolute;
    inset: -5px;
    border: 1px dashed rgba(0, 242, 255, 0.3);
    border-radius: 50%;
    animation: spinSlow 20s linear infinite;
}

.step-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

/* Step Hover Effects */
.step-card:hover .step-icon-wrapper {
    color: white;
    background: #00f2ff;
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.5);
    transform: scale(1.1);
    transition: all 0.3s;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .steps-connector {
        width: 3px;
        height: 80%;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(180deg, transparent, #00f2ff, transparent);
    }

    .step-card {
        width: 100%;
        max-width: 100%;
    }
}

/* --- MISSION LAUNCH CTA (Footer) --- */
.cta-mission-section {
    padding: 120px 0;
    position: relative;
    background: radial-gradient(circle at center, #1a1a2e 0%, #000000 100%);
    overflow: hidden;
}

.cta-mission-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Warp Speed Background */
.warp-stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.3;
    animation: warpSpeed 10s linear infinite;
    z-index: 0;
    transform-origin: center;
}

@keyframes warpSpeed {
    from {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }

    to {
        transform: scale(3);
        opacity: 0;
    }
}

.cta-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Console Variant for CTA */
.floating-console.cta-variant {
    transform: perspective(1000px) rotateY(15deg) rotateX(5deg);
    background: rgba(0, 242, 255, 0.05);
    border-color: rgba(0, 242, 255, 0.2);
}

.start-btn-pulse {
    width: 100px;
    height: 100px;
    background: #FF0055;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.5);
    animation: pulseBtn 1.5s infinite;
    cursor: pointer;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(255, 0, 85, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0);
    }
}

.cta-text {
    flex: 1;
    text-align: left;
}

.cta-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-cta-btn.glow-effect {
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
}

.hero-cta-btn.glow-effect:hover {
    box-shadow: 0 0 60px rgba(0, 242, 255, 0.7);
    background: white;
    color: black;
}

/* Specific Icon for CTA */
.cta-variant .icon-star {
    top: -30px;
    left: 20px;
    background: #FFE600;
    color: black;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .cta-mission-container {
        flex-direction: column-reverse;
        /* Visual on bottom for CTA typically, or top. Plan said visual left on desktop. */
        text-align: center;
    }

    .cta-text {
        text-align: center;
        margin-bottom: 50px;
    }

    .cta-subtext {
        margin: 0 auto 40px;
    }

    .floating-console.cta-variant {
        transform: none;
    }
}

/* --- REGISTRATION PAGE (Mission Control) --- */
.register-page-body {
    background: radial-gradient(circle at center, #1b2735 0%, #090a0f 100%);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

.register-page-wrapper {
    background: radial-gradient(circle at center, #1b2735 0%, #090a0f 100%);
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 1;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.auth-console {
    background: rgba(16, 18, 27, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 40px rgba(0, 180, 219, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

/* Console details */
.auth-console::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00b4db, transparent);
    animation: scanline 3s linear infinite;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #00b4db);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.auth-subtitle {
    color: #a0a0a0;
    font-size: 1rem;
    font-weight: 300;
}

.auth-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.tech-input-group {
    position: relative;
    margin-bottom: 5px;
}

.tech-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tech-input:focus {
    background: rgba(0, 180, 219, 0.05);
    border-color: #00b4db;
    box-shadow: 0 0 15px rgba(0, 180, 219, 0.2);
    outline: none;
}

.tech-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.tech-label {
    position: absolute;
    left: 15px;
    top: -10px;
    background: #0f0c29;
    /* Match modal bg */
    padding: 0 5px;
    font-size: 0.8rem;
    color: #00b4db;
    font-weight: 500;
}

.mission-launch-btn {
    grid-column: span 2;
    margin-top: 20px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #00b4db, #0083b0);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 180, 219, 0.4);
}

.mission-launch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 180, 219, 0.6);
}

.mission-launch-btn:active {
    transform: translateY(1px);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: #888;
    grid-column: span 2;
}

.auth-footer a {
    color: #00b4db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-footer a:hover {
    color: #fff;
    text-shadow: 0 0 10px #00b4db;
}

@media (max-width: 768px) {
    .auth-form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .mission-launch-btn {
        grid-column: span 1;
    }

    .auth-footer {
        grid-column: span 1;
    }
}

/* --- DASHBOARD (Space Station) --- */
/* --- DASHBOARD (Space Station) --- */
.dashboard-station {
    background:
        linear-gradient(rgba(11, 14, 23, 0.9), rgba(11, 14, 23, 0.9)),
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0, 242, 255, 0.05) 1px, rgba(0, 242, 255, 0.05) 2px);
    background-size: 100% 100%, 100% 20px;

    /* Layout Fixes */
    flex: 1;
    /* Pushes footer to bottom naturally */
    width: 100%;
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
    /* Clips the rotating background */
    display: flex;
    flex-direction: column;
}

/* Background Animation Effect */
.dashboard-station::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 180, 219, 0.05) 31%, transparent 70%);
    animation: stationRotate 60s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes stationRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.station-container {
    width: 100%;
    max-width: 1600px;
    /* Wider layout */
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Status Panel */
.status-panel-wrapper {
    background: rgba(16, 18, 27, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.welcome-text {
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px rgba(0, 180, 219, 0.5);
}

.tech-overline {
    font-size: 0.7rem;
    color: #00b4db;
    letter-spacing: 2px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.digital-header {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fff, #00f2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.5));
}

.tech-status-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.blinking-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: blinkStatus 1.5s infinite;
}

.typewriter-text {
    border-right: 2px solid #00b4db;
    padding-right: 5px;
    animation: blinkCursor 1s steps(2) infinite;
    color: #00b4db;
}

@keyframes blinkStatus {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

@keyframes blinkCursor {

    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: #00b4db;
    }
}

/* Command Actions (Buttons next to text) */
.command-actions {
    display: flex;
    gap: 20px;
    margin-left: auto;
    /* Push to the right */
    margin-right: 40px;
    /* Spacing from status panel */
}

.cmd-btn {
    display: flex;
    flex-direction: column;
    /* Icon Top, Text Bottom */
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 25px;
    /* Larger hit area */
    background: rgba(0, 180, 219, 0.05);
    border: 1px solid rgba(0, 180, 219, 0.2);
    border-radius: 12px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
    min-width: 100px;
    /* Uniform width */
}

.cmd-btn:hover {
    background: rgba(0, 180, 219, 0.15);
    border-color: #00b4db;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 180, 219, 0.3);
}

.cmd-btn i {
    color: #00f2ff;
    font-size: 1.8rem;
    /* Big Icon */
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.6);
}

.subscription-status {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-active {
    background: rgba(46, 213, 115, 0.15);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.status-inactive {
    background: rgba(255, 71, 87, 0.15);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

/* Holo Grid */
.holo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Holo Card */
.holo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.holo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00b4db;
    box-shadow: 0 0 30px rgba(0, 180, 219, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.holo-thumb-wrapper {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.holo-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.holo-card:hover .holo-thumb-wrapper img {
    transform: scale(1.1);
}

.holo-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.holo-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.holo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.holo-desc {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.holo-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-play {
    background: linear-gradient(90deg, #00b4db, #0083b0);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 180, 219, 0.3);
}

.btn-play:hover {
    box-shadow: 0 0 25px rgba(0, 180, 219, 0.6);
}

.btn-lock {
    background: rgba(255, 255, 255, 0.05);
    color: #ff4757;
    border: 1px solid #ff4757;
    cursor: not-allowed;
}

.btn-lock:hover {
    background: rgba(255, 71, 87, 0.1);
}

.holo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.badge-new {
    background: #ff0055;
    color: #fff;
    box-shadow: 0 0 10px #ff0055;

}

/* --- Mobile Query for Dashboard --- */
@media (max-width: 992px) {
    .status-panel-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px;
    }

    .welcome-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tech-status-line {
        justify-content: center;
    }

    .command-actions {
        margin: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* Stack buttons vertically */
        align-items: center;
        /* Center align them */
        gap: 15px;
    }

    .cmd-btn {
        width: 100%;
        /* Full width for easier tapping */
        max-width: 300px;
        /* Prevent them from being too wide on tablets */
    }

    .subscription-status {
        width: 100%;
        justify-content: center;
    }

    .holo-grid {
        grid-template-columns: 1fr;
    }
}

/* TROPHY ROOM / BADGES PAGE (v2) */
.trophy-room {
    padding-top: 40px;
}

/* 1. Pilot Stats Card */
.pilot-stats-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.9), rgba(10, 10, 20, 0.95));
    border: 1px solid rgba(0, 242, 255, 0.15);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.pilot-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pilot-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00f2ff, #0066ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.pilot-info h2 {
    margin: 0;
    font-size: 1.8rem;
    color: white;
}

.pilot-rank {
    font-family: 'Orbitron', sans-serif;
    color: #ffd700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stats-overview {
    display: flex;
    gap: 40px;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-label {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.stat-total {
    font-size: 1rem;
    color: #555;
    font-weight: 400;
}

.mission-progress {
    width: 100%;
    margin-top: 10px;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00f2ff, #0066ff);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
    transition: width 1s ease-out;
}

/* 2. Badge Grid */
.section-title {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.section-title i {
    color: #ffd700;
}

.badge-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.badge-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.badge-visual {
    height: 140px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-icon-main {
    font-size: 4rem;
    color: #444;
    transition: 0.4s;
    z-index: 2;
}

.badge-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    transition: 0.4s;
}

.badge-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.badge-title {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 8px;
    transition: 0.3s;
}

.badge-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: auto;
}

.badge-footer {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

/* LOCKED STATE */
.badge-card-premium.locked .lock-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}

.badge-card-premium.locked:hover {
    background: rgba(255, 255, 255, 0.05);
}

.status-pill.locked {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    color: #888;
}

/* EARNED STATE */
.badge-card-premium.earned {
    border-color: rgba(0, 242, 255, 0.4);
    background: radial-gradient(circle at top left, rgba(0, 242, 255, 0.05), rgba(0, 0, 0, 0.4));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.badge-card-premium.earned:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

.badge-card-premium.earned .badge-visual {
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.2), transparent);
}

.badge-card-premium.earned .badge-icon-main {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: floatBadge 3s ease-in-out infinite;
}

.badge-card-premium.earned .badge-title {
    color: white;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.badge-card-premium.earned .badge-desc {
    color: #ccc;
}

.status-pill.earned {
    background: rgba(46, 213, 115, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    color: #2ed573;
    font-weight: bold;
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.badge-date {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .pilot-stats-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .stats-overview {
        width: 100%;
        justify-content: space-between;
    }
}