@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;900&display=swap');

:root {
    --bg-color: #060c14;
    --text-color: #e2e8f0;
    --primary-color: #00e5ff;
    --secondary-color: #1e3a8a;
    --discord-color: #5865F2;
    --glow: rgba(0, 229, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: radial-gradient(circle at top right, #1a1a2e 0%, #060c14 100%);
    background-attachment: fixed;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Base Classes */
.text-cyan {
    color: var(--primary-color) !important;
}

.text-purple {
    color: #b300ff !important;
}

.text-gold {
    color: #f59e0b !important;
}

.text-danger {
    color: #ef4444 !important;
}

.text-muted {
    color: #94a3b8;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Containers */
.glass,
.glass-panel,
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
    transform: translateY(-5px);
}

/* Background Watermark */
.bg-logo-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110vh;
    height: 110vh;
    background: url('../assets/hypers_icon.png') no-repeat center center;
    background-size: contain;
    opacity: 0.015;
    z-index: -2;
    pointer-events: none;
    filter: drop-shadow(0 0 100px var(--primary-color));
    animation: rotateSlow 240s linear infinite;
    display: block;
    /* Ensure it stays behind */
}

@keyframes rotateSlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.neon-glow {
    filter: drop-shadow(0 0 10px var(--primary-color));
    animation: neon-pulse 2s infinite ease-in-out;
}

@keyframes neon-pulse {

    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 15px var(--primary-color));
    }

    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 5px var(--primary-color));
    }
}

/* Navbar Upgrade */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.3s;
    background: rgba(6, 12, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 5%;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }
}

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

/* Elite User Profile Navbar */
.user-profile-nav {
    position: relative;
    list-style: none;
}

.user-nav-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s all;
}

.nav-avatar {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 50% !important;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.nav-balance {
    font-weight: 800;
    font-size: 0.8rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-nav-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 220px !important;
    background: #0a0a0f !important;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px !important;
    display: none;
    /* Changed to display none for JS/Hover safety */
    flex-direction: column !important;
    gap: 5px !important;
    z-index: 9999;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
}

.user-profile-nav:hover .user-nav-dropdown {
    display: flex !important;
}

.user-nav-dropdown a {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
    transition: 0.2s all;
    background: transparent !important;
    text-align: left !important;
}

.user-nav-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--primary-color) !important;
    padding-left: 15px !important;
}

.user-nav-dropdown .dropdown-header {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 5px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s all;
}

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

/* Sidebar & Layout */
.layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    height: 100vh;
    padding: 2rem;
    position: fixed;
    left: 0;
    top: 0;
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.sidebar-logo {
    max-width: 150px;
    margin-bottom: 2rem;
}

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    min-height: 100vh;
}

/* Dashboard Elements */
.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.greeting h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.stats-badge {
    display: flex;
    gap: 15px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
}

.side-menu {
    list-style: none;
    margin-top: 1rem;
}

.side-menu li {
    padding: 12px 20px;
    margin-bottom: 8px;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #94a3b8;
}

.side-menu li a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.side-menu li i {
    font-size: 1.2rem;
}

.side-menu li:hover,
.side-menu li.active {
    background: rgba(0, 229, 255, 0.05);
    color: var(--primary-color);
    box-shadow: inset 0 0 15px rgba(0, 229, 255, 0.02);
}

.side-menu li.active {
    border-left: 3px solid var(--primary-color);
}

/* Dashboard Grid */
.grid-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.stat-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 5rem;
    opacity: 0.1;
    color: var(--primary-color);
    transform: rotate(-15deg);
}

/* Utility Classes */
.flex {
    display: flex;
}

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

.hidden {
    display: none !important;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.p-4 {
    padding: 1.5rem;
}

.p-5 {
    padding: 2rem;
}

.w-100 {
    width: 100%;
}

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

.fw-bold {
    font-weight: 600;
}

/* Tabs Pane */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* User Profile in Sidebar */
.user-profile {
    margin-bottom: 2rem;
}

.user-profile img.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin-bottom: 10px;
    box-shadow: 0 0 20px var(--glow);
}

/* Pulse animation */
.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 229, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
    }
}

/* Custom Cursor Refined */
.cursor-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 100, 0.03) 0%, transparent 70%);
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

/* Admin Table Styling */
.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    padding: 15px;
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94a3b8;
    border-bottom: 2px solid var(--glass-border);
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.user-avatar-small {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
}

/* Features Banner */
.feature-banner {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(30, 58, 138, 0.1));
    border: 1px solid var(--primary-color);
}

.feature-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Landing Page Hero Section */
.hero {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 20px 100px 1000px;
    min-height: 80vh;
    gap: 100px;
    width: 100% !important;
    max-width: 100% !important;
}

.hero-content {
    flex: 1;
    z-index: 5;
    margin-left: 0;
    /* Removed negative margin to allow rightward move */
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Elite Hero Showcase Stack - Professional Refinement */
.hero-showcase {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    perspective: 2000px;
    /* padding-left removed to allow more space on left */
}

/* Elite Hero Showcase - Refined Stack */
.hero-showcase {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 550px;
    perspective: 1500px;
}

.showcase-card {
    position: absolute;
    width: 720px;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: #050505;
    -webkit-box-reflect: below 15px linear-gradient(transparent, transparent, rgba(0, 229, 255, 0.1));
}

.main-card {
    z-index: 10;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    border: 1px solid rgba(0, 229, 255, 0.5);
    animation: neonPulse 3s ease-in-out infinite alternate;
}

.sub-card {
    z-index: 5;
    transform: perspective(1000px) translate(-80px, 80px) rotateY(-10deg) rotateX(5deg);
    opacity: 0.45;
    filter: brightness(0.3) blur(1px);
}

@keyframes neonPulse {
    from {
        border-color: rgba(0, 229, 255, 0.2);
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
    }

    to {
        border-color: rgba(0, 229, 255, 0.6);
        box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
    }
}

.live-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #00e5ff;
    color: #00e5ff;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 30;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.live-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #00e5ff;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

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

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

.cheat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Back to cover but with better box ratio */
    display: block;
    opacity: 0.9;
}

.hero-showcase:hover .main-card {
    transform: perspective(1000px) translate(150px, -80px) rotateY(10deg) rotateX(0deg) scale(0.9);
    opacity: 0;
    pointer-events: none;
}

.hero-showcase:hover .sub-card {
    transform: perspective(1000px) translate(0, 0) rotateY(0deg) rotateX(0deg) scale(1.05);
    opacity: 1;
    filter: brightness(1.2) grayscale(0);
    z-index: 20;
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.4);
}

.glow-sphere {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
    z-index: 1;
    filter: blur(50px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Floating animation for the whole stack */
@keyframes floatStack {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-showcase {
    animation: floatStack 4s ease-in-out infinite;
}

/* Button Refinement */
.btn-discord {
    padding: 12px 25px;
    background: #00e5ff !important;
    color: #000 !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    transition: 0.3s all;
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
}

/* Premium SVG Logo (CheatVault) */
.cv-svg-logo {
    width: 40px;
    height: 48px;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
    margin-right: 10px;
}

.hero-cv-logo {
    width: 320px;
    height: 380px;
    filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.5));
    animation: floatingHero 4s ease-in-out infinite;
}

.hero-logo-img {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 0 70px rgba(0, 229, 255, 0.5));
    animation: floatingHero 4s ease-in-out infinite;
}

.bolt-floating {
    position: absolute;
    color: #fff;
    text-shadow: 0 0 20px var(--primary-color);
    animation: floating 3s ease-in-out infinite, pulse-neon 2s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.icon-glow {
    animation: neon-pulse 3s infinite alternate;
}

@keyframes floatingHero {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Enhanced Glitch Effect (CheatVault Style) */
.glitch {
    position: relative;
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 3px;
    text-shadow: -3px 0 #ff00c1;
    clip: rect(44px, 9999px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -3px;
    text-shadow: 3px 0 #00fff9;
    clip: rect(10px, 9999px, 30px, 0);
    animation: glitch-anim2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(20px, 9999px, 80px, 0);
    }

    100% {
        clip: rect(40px, 9999px, 120px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(60px, 9999px, 140px, 0);
    }

    100% {
        clip: rect(10px, 9999px, 30px, 0);
    }
}

/* Stats Bar Transformation */
.stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 40px 8%;
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
}

.stat-box {
    text-align: center;
    position: relative;
    flex: 1;
}

.stat-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #64748b;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.2), transparent);
}

/* Animations */
.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 50px 8%;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

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

.stat-box h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 900;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.stat-box p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
}

/* Showcase Section */
.showcase-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 50px;
    height: 500px;
}

.showcase-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.showcase-selectors {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.selector-item {
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.selector-item.active {
    border-color: var(--primary-color);
    background: rgba(0, 229, 255, 0.05);
}

/* Section Title Fade */
.section-title-fade {
    position: relative;
    text-align: center;
    margin: 80px 0 40px;
}

.section-title-fade .bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 900;
    opacity: 0.03;
    white-space: nowrap;
    pointer-events: none;
    text-transform: uppercase;
}

.section-title-fade h2 {
    font-size: 2.5rem;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.hero p.subtitle {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    font-size: 0.95rem;
    border-radius: 12px;
}

.btn-primary {
    background: var(--primary-color);
    box-shadow: 0 8px 15px rgba(0, 229, 255, 0.2);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Marquee (CheatVault style) */
.cv-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 2rem;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.cv-marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 3rem;
    min-width: 100%;
    animation: scroll 30s linear infinite;
}

.cv-icon-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    backdrop-filter: blur(8px);
    min-width: 140px;
}

.cv-icon-card:hover {
    transform: translateY(-10px) scale(1.15);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.15);
}

.cv-icon-card svg {
    width: 80px;
    height: 45px;
    transition: transform 0.3s ease;
}

.cv-icon-card:hover svg {
    transform: scale(1.1);
}

/* Icon specific colors (SVG classes) */
.icon-visa {
    filter: drop-shadow(0 0 5px #1a1f71);
    fill: #1a1f71 !important;
}

.icon-mastercard {
    filter: drop-shadow(0 0 5px #eb001b);
}

.icon-bitcoin {
    filter: drop-shadow(0 0 8px #f7931a);
    fill: #f7931a !important;
}

.icon-ethereum {
    filter: drop-shadow(0 0 8px #3c3c3d);
}

.icon-litecoin {
    filter: drop-shadow(0 0 8px #345d9d);
    fill: #345d9d !important;
}

.icon-paypal {
    filter: drop-shadow(0 0 5px #003087);
    fill: #003087 !important;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Reviews */
.reviews-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    overflow: hidden;
}

.reviews-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    mask-image: linear-gradient(to top, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to top, transparent, black 15%, black 85%, transparent);
    height: 600px;
}

.reviews-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    max-width: 400px;
    animation: scroll-v 40s linear infinite;
}

.reviews-col.reverse {
    animation-direction: reverse;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 15px;
    min-width: 300px;
}

.review-stars {
    color: gold;
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    margin-bottom: 10px;
}

.review-author {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.9rem;
}

@keyframes scroll-v {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

/* Buttons and Links */
.btn-discord {
    background: var(--discord-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    padding: 15px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 15px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.glow-on-hover:hover {
    box-shadow: 0 0 30px var(--glow);
    border-color: var(--primary-color);
}

/* CheatVault Style - Why Us Section */
.whyus {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 6rem;
    width: 100%;
    padding: 0 2rem;
    /* Added padding to sections */
}

.whyus-grids {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
    width: 100%;
}

@media(min-width: 768px) {
    .whyus-grids {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media(min-width: 1280px) {
    .whyus-grids {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.whyus-grid {
    grid-column: span 1/span 1;
}

.whyus-grid .icon {
    align-items: center;
    display: flex;
    gap: 0.625rem;
    justify-content: center;
}

@media(min-width: 768px) {
    .whyus-grid .icon {
        justify-content: flex-start;
    }
}

/* Responsive Design Overrides */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem !important;
        margin-top: 1rem;
    }

    .v-fade h1 {
        font-size: 3rem !important;
        opacity: 0.05 !important;
    }
}

.whyus-grid .icon svg {
    color: var(--primary-color);
    width: 2.5rem;
    height: 2.5rem;
}

.whyus-grid .text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.whyus-grid .description {
    margin-top: 1rem;
    text-align: center;
}

@media(min-width: 768px) {
    .whyus-grid .description {
        text-align: left;
    }
}

.whyus-grid .description .inner {
    color: #8a8a8d;
    line-height: 1.6;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 120px 20px 60px;
    min-height: 70vh;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* CheatVault Style - Fade Title */
.v-fade {
    position: relative;
    margin-bottom: 3rem;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.v-fade-inner {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}

.v-fade-inner svg {
    width: 1000px;
    height: auto;
}

.v-fade-text {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.v-fade-text h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    letter-spacing: 5px;
    margin: 0;
}

/* --- DASHBOARD PREMIUM UI --- */
.dashboard-page {
    background: radial-gradient(circle at top right, #0d1b2a 0%, #060c14 100%) !important;
}

.layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: rgba(10, 15, 25, 0.7);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.side-menu {
    list-style: none;
    padding: 20px 15px;
}

.side-menu li {
    margin-bottom: 8px;
}

.side-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
}

.side-menu li.active a,
.side-menu a:hover {
    background: rgba(0, 229, 255, 0.1);
    color: #fff;
    box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.05);
}

.side-menu li.active a {
    border-left: 3px solid var(--primary-color);
}

.user-profile {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.user-avatar-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.avatar.pulse-anim {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.main-content {
    flex: 1;
    padding: 30px 40px;
    background: transparent;
    overflow-y: auto;
}

.dash-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(15, 23, 35, 0.6);
    padding: 25px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: 0.4s all;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card i {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

/* Neon Glows for specific cards */
.stat-card:nth-child(1) {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.stat-card:nth-child(1) i {
    color: #10b981;
    filter: drop-shadow(0 0 10px #10b981);
}

.stat-card:nth-child(2) {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.2);
}

.stat-card:nth-child(2) i {
    color: #00e5ff;
    filter: drop-shadow(0 0 10px #00e5ff);
}

.stat-card:nth-child(3) {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.05);
    border-color: rgba(168, 85, 247, 0.2);
}

.stat-card:nth-child(3) i {
    color: #a855f7;
    filter: drop-shadow(0 0 10px #a855f7);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(15, 23, 35, 0.9);
}

.badge-new {
    background: var(--primary-color);
    color: #000;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 10px;
}

.stats-badge {
    display: flex;
    gap: 15px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-item i {
    font-size: 1rem;
}

/* Responsive Design Final Overrides */
@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }

    .navbar {
        padding: 10px 4%;
    }

    .nav-links a {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 1.5rem !important;
        line-height: 1.2;
    }

    .hero p.subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-cv-logo {
        width: 160px !important;
        height: auto;
    }

    .v-fade {
        height: auto;
        margin-bottom: 2rem;
        padding: 20px 0;
    }

    .v-fade-text h2 {
        font-size: 1.6rem !important;
        letter-spacing: 3px;
        white-space: nowrap;
    }

    .v-fade-inner {
        display: none !important;
    }

    .whyus-grids {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem;
    }

    .stat-box h2 {
        font-size: 1.4rem;
    }

    /* Mobile Dashboard Adjustments */
    .menu-toggle {
        display: block !important;
    }

    .sidebar {
        width: 260px !important;
        position: fixed !important;
        left: -280px !important;
        height: 100vh !important;
        transition: left 0.4s ease !important;
    }

    .sidebar.active {
        left: 0 !important;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .stats-badge {
        gap: 10px;
    }

    .badge-item {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    .grid-dashboard {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .hero {
        padding-top: 120px;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}