/* Premium Dark/Grey CSS Design System for Shadow Menu */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-main: #0c0c0e;
    --bg-card: #141417;
    --bg-card-hover: #19191d;
    --bg-header: rgba(12, 12, 14, 0.75);
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --accent-color: rgb(192, 192, 192); /* Premium Silver/Grey */
    --accent-glow: rgba(192, 192, 192, 0.15);
    --accent-glow-strong: rgb(200, 200, 200);
    
    --border-color: rgba(255, 255, 255, 0.05);
    --border-color-hover: rgba(255, 255, 255, 0.1);
    --border-silver: rgba(192, 192, 192, 0.2);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: #08080a;
    background-image: 
        radial-gradient(circle at 85% 15%, rgba(192, 192, 192, 0.07) 0%, transparent 45%),
        radial-gradient(circle at 15% 85%, rgba(192, 192, 192, 0.04) 0%, transparent 45%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Grid Background Overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
}

/* Background Glow Effects */
.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(12, 12, 14, 0.9);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo span {
    white-space: nowrap;
}

.logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 24px; /* Reduced from 32px to save horizontal space */
    list-style: none;
    align-items: center;
    flex-shrink: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem; /* Slightly reduced from 0.95rem to prevent overflow */
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

.nav-links span {
    white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.2s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color-hover);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-login:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
    background: rgba(192, 192, 192, 0.05);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    color: #0c0c0e;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px var(--accent-glow-strong);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow-strong);
    background-color: #a0a0a0;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-color-hover);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
}

.hero-banner-wrapper {
    max-width: 800px;
    margin: 0 auto 40px auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Feature Cards Grid */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.feature-card {
    background: rgba(20, 20, 24, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(20, 20, 24, 0.65);
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.1);
}

.feature-card:hover::before {
    background-color: var(--accent-color);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Anti-Cheat Bypasses Grid */
.bypass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.bypass-card {
    background: rgba(20, 20, 24, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.bypass-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.1);
}

.bypass-badge {
    background: rgba(192, 192, 192, 0.1);
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.bypass-info h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.bypass-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.pricing-card {
    background: rgba(20, 20, 24, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.pricing-card.premium {
    border-color: var(--accent-color);
    box-shadow: 0 8px 32px rgba(192, 192, 192, 0.15);
    transform: scale(1.03);
}

.pricing-card:hover {
    background: rgba(20, 20, 24, 0.65);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-title {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    display: none;
}

/* Showcase Layout */
.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 768px) {
    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* Resellers Page */
.reseller-section {
    background: rgba(20, 20, 24, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 80px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.reseller-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.reseller-header-text {
    flex: 1;
    min-width: 300px;
}

.reseller-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.reseller-header p {
    color: var(--text-secondary);
}

.reseller-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .reseller-info-grid {
        grid-template-columns: 1fr;
    }
}

.reseller-col h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.reseller-list {
    list-style: none;
}

.reseller-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.reseller-list li span.bullet {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

/* Reseller Ads Board */
.ads-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.ad-card {
    background: rgba(20, 20, 24, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.ad-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.1);
}

.ad-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.ad-content {
    padding: 24px;
}

.ad-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.ad-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.ad-author img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.ad-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.ad-details {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    font-size: 0.85rem;
}

.ad-price {
    font-weight: 600;
    color: var(--accent-color);
}

/* Download Page */
.download-container {
    max-width: 600px;
    margin: 180px auto 100px auto;
    background: rgba(20, 20, 24, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.download-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.download-details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.download-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.download-stat span.label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.download-stat span.val {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Logs / Updates Feed */
.logs-timeline {
    max-width: 800px;
    margin: 150px auto 100px auto;
    position: relative;
}

.logs-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.log-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px;
}

.log-dot {
    position: absolute;
    left: 21px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--bg-main);
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px var(--accent-glow-strong);
}

.log-item-content {
    background: rgba(20, 20, 24, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.log-item-content:hover {
    border-color: var(--accent-color);
}

.log-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}

.log-category {
    background: rgba(192, 192, 192, 0.1);
    color: var(--accent-color);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.log-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.log-item-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.log-item-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.admin-layout {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 120px auto 60px auto;
    padding: 0 24px;
    min-height: 80vh;
}

.admin-sidebar {
    width: 260px;
    background: rgba(20, 20, 24, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: fit-content;
    flex-shrink: 0;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.admin-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.admin-menu a:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.admin-menu a.active {
    background: rgba(192, 192, 192, 0.08);
    border: 1px solid rgba(192, 192, 192, 0.2);
    color: var(--accent-color);
}

.admin-content {
    flex: 1;
    background: rgba(20, 20, 24, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(192, 192, 192, 0.2);
    transform: translateY(-2px);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    opacity: 0.8;
}

/* Tables and Forms */
.panel {
    background: rgba(20, 20, 24, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: left;
}

th {
    border-bottom: 2px solid var(--border-color);
    padding: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
}

td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

/* Inputs and Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background: rgba(20, 20, 24, 0.8);
    border: 1px solid var(--border-color-hover);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
    background: rgba(20, 20, 24, 0.95);
}

/* Specific styling for select dropdowns */
select.form-control {
    background: rgba(20, 20, 24, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

select.form-control:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(20, 20, 24, 0.95);
}

select.form-control:focus {
    border-color: var(--accent-color);
    background: rgba(20, 20, 24, 0.98);
}

/* Dropdown options styling */
select.form-control option {
    background: #141417;
    color: #ffffff;
    padding: 10px;
}

select.form-control option:hover,
select.form-control option:focus {
    background: #2a2f3b;
    color: #ffffff;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background: #08080a;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 15px;
}

/* Responsive adaptations */
@media (max-width: 1300px) and (min-width: 1181px) {
    .nav-links {
        gap: 16px;
    }
    .logo {
        font-size: 1.25rem;
        gap: 8px;
    }
}

@media (max-width: 1180px) {
    .navbar {
        height: 70px;
    }
    .nav-links {
        display: none; /* Mobile menu handled via JS classes */
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        flex-direction: column;
        padding: 40px 0;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 992px) {
    .admin-layout {
        flex-direction: column;
        margin-top: 100px;
    }
    .admin-sidebar {
        width: 100%;
    }
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #08080a;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    border: 2.5px solid #08080a;
    transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* --- Custom Text Selection --- */
::selection {
    background: rgb(192, 192, 192);
    color: #fff;
}

/* --- Interactive Mouse Glow --- */
.mouse-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.04) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
    transform: translate(-50%, -50%);
    top: -500px;
    left: -500px;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}
body:hover .mouse-glow {
    opacity: 1;
}

/* --- Motion Graphics / Scroll Reveal --- */
.reveal-init {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Lucide Icon styling override */
.lucide {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    stroke-width: 2px;
    stroke: currentColor;
    fill: none;
    vertical-align: text-bottom;
}

/* Navigation items transitions */
.nav-links a::after {
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stat card animations */
tr {
    animation: fadeInRow 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fadeInRow {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Make icons in lists look premium */
.bullet-icon {
    color: var(--accent-color);
    margin-right: 8px;
    flex-shrink: 0;
}

/* Custom image icon styles */
.feature-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.bullet-icon-img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    margin-right: 8px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.status-icon-img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    margin-right: 6px;
    display: inline-block;
    vertical-align: middle;
}

.sidebar-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-right: 12px;
    display: inline-block;
    vertical-align: middle;
}
