/* Haylor Client Area Styles - Matching Billing Page Theme */

:root {
    --primary: #18181b;
    --secondary: #23272f;
    --accent: #ff3edb;
    --accent2: #00ff3c;
    --text: #f5f5f5;
    --muted: #666;
    --card: #23272f;
    --nav-bg: rgba(24,24,27,0.95);
    --success: #00ff3c;
    --error: #ff3e3e;
    --warning: #ffaa00;
    --info: #3e9fff;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.background-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
    animation: float-particle 20s infinite linear;
}

.particle-1 { width: 4px; height: 4px; top: 10%; left: 10%; animation-delay: 0s; }
.particle-2 { width: 6px; height: 6px; top: 20%; left: 80%; animation-delay: 2s; }
.particle-3 { width: 3px; height: 3px; top: 30%; left: 20%; animation-delay: 4s; }
.particle-4 { width: 5px; height: 5px; top: 40%; left: 90%; animation-delay: 6s; }
.particle-5 { width: 4px; height: 4px; top: 50%; left: 5%; animation-delay: 8s; }
.particle-6 { width: 7px; height: 7px; top: 60%; left: 70%; animation-delay: 10s; }
.particle-7 { width: 3px; height: 3px; top: 70%; left: 15%; animation-delay: 12s; }
.particle-8 { width: 5px; height: 5px; top: 80%; left: 85%; animation-delay: 14s; }
.particle-9 { width: 4px; height: 4px; top: 90%; left: 25%; animation-delay: 16s; }
.particle-10 { width: 6px; height: 6px; top: 15%; left: 60%; animation-delay: 18s; }
.particle-11 { width: 3px; height: 3px; top: 25%; left: 40%; animation-delay: 1s; }
.particle-12 { width: 5px; height: 5px; top: 35%; left: 75%; animation-delay: 3s; }
.particle-13 { width: 4px; height: 4px; top: 45%; left: 30%; animation-delay: 5s; }
.particle-14 { width: 6px; height: 6px; top: 55%; left: 95%; animation-delay: 7s; }
.particle-15 { width: 3px; height: 3px; top: 65%; left: 50%; animation-delay: 9s; }
.particle-16 { width: 5px; height: 5px; top: 75%; left: 10%; animation-delay: 11s; }
.particle-17 { width: 4px; height: 4px; top: 85%; left: 65%; animation-delay: 13s; }
.particle-18 { width: 6px; height: 6px; top: 95%; left: 45%; animation-delay: 15s; }
.particle-19 { width: 3px; height: 3px; top: 5%; left: 55%; animation-delay: 17s; }
.particle-20 { width: 5px; height: 5px; top: 35%; left: 80%; animation-delay: 19s; }

.particle-square {
    position: absolute;
    background: var(--accent2);
    opacity: 0.08;
    animation: float-particle-square 25s infinite linear;
}

.particle-sq-1 { width: 8px; height: 8px; top: 12%; left: 22%; animation-delay: 0s; }
.particle-sq-2 { width: 6px; height: 6px; top: 62%; left: 88%; animation-delay: 5s; }
.particle-sq-3 { width: 10px; height: 10px; top: 82%; left: 18%; animation-delay: 10s; }
.particle-sq-4 { width: 7px; height: 7px; top: 32%; left: 72%; animation-delay: 15s; }

.particle-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid var(--accent);
    opacity: 0.06;
    animation: float-particle-triangle 30s infinite linear;
}

.particle-tri-1 { top: 18%; left: 68%; animation-delay: 0s; }
.particle-tri-2 { top: 78%; left: 38%; animation-delay: 15s; }

.particle-diamond {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent2);
    transform: rotate(45deg);
    opacity: 0.07;
    animation: float-particle-diamond 28s infinite linear;
}

.particle-dia-1 { top: 28%; left: 12%; animation-delay: 0s; }
.particle-dia-2 { top: 88%; left: 92%; animation-delay: 14s; }

.particle-hex {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.05;
    animation: float-particle-hex 35s infinite linear;
}

.particle-hex-1 { top: 42%; left: 82%; animation-delay: 0s; }
.particle-hex-2 { top: 92%; left: 28%; animation-delay: 17s; }

.particle-star {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent2);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.04;
    animation: float-particle-star 40s infinite linear;
}

.particle-star-1 { top: 8%; left: 42%; animation-delay: 0s; }
.particle-star-2 { top: 72%; left: 78%; animation-delay: 20s; }

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    height: 1px;
    opacity: 0.03;
    animation: float-line 45s infinite linear;
}

.line-1 { width: 200px; top: 15%; left: -200px; animation-delay: 0s; }
.line-2 { width: 150px; top: 45%; left: -150px; animation-delay: 10s; }
.line-3 { width: 180px; top: 75%; left: -180px; animation-delay: 20s; }
.line-4 { width: 120px; top: 25%; left: -120px; animation-delay: 30s; }
.line-5 { width: 160px; top: 85%; left: -160px; animation-delay: 40s; }

@keyframes float-particle {
    0% { transform: translateY(0px) translateX(0px); opacity: 0.1; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 0.2; }
    50% { transform: translateY(-40px) translateX(20px); opacity: 0.1; }
    75% { transform: translateY(-20px) translateX(10px); opacity: 0.2; }
    100% { transform: translateY(0px) translateX(0px); opacity: 0.1; }
}

@keyframes float-particle-square {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.08; }
    50% { transform: translateY(-30px) translateX(15px) rotate(180deg); opacity: 0.15; }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); opacity: 0.08; }
}

@keyframes float-particle-triangle {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.06; }
    50% { transform: translateY(-25px) translateX(12px) rotate(180deg); opacity: 0.12; }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); opacity: 0.06; }
}

@keyframes float-particle-diamond {
    0% { transform: translateY(0px) translateX(0px) rotate(45deg); opacity: 0.07; }
    50% { transform: translateY(-35px) translateX(18px) rotate(225deg); opacity: 0.14; }
    100% { transform: translateY(0px) translateX(0px) rotate(405deg); opacity: 0.07; }
}

@keyframes float-particle-hex {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.05; }
    50% { transform: translateY(-40px) translateX(20px) rotate(180deg); opacity: 0.1; }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); opacity: 0.05; }
}

@keyframes float-particle-star {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.04; }
    50% { transform: translateY(-45px) translateX(25px) rotate(180deg); opacity: 0.08; }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); opacity: 0.04; }
}

@keyframes float-line {
    0% { transform: translateX(0px); opacity: 0.03; }
    50% { transform: translateX(calc(100vw + 200px)); opacity: 0.08; }
    100% { transform: translateX(calc(100vw + 200px)); opacity: 0.03; }
}

/* Navigation */
.sub-nav {
    background: var(--nav-bg);
    border-bottom: 1px solid rgba(255, 62, 219, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    padding: 2px 0; /* Reduced from 4px to 2px */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px; /* Reduced from 15px to 10px */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px; /* Reduced from 15px to 10px */
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 6px; /* Reduced from 8px to 6px */
    flex-shrink: 0;
}

.nav-logo {
    width: 18px; /* Reduced from 24px to 18px */
    height: 18px; /* Reduced from 24px to 18px */
    border-radius: 4px; /* Reduced from 6px to 4px */
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.nav-logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent);
    background: linear-gradient(45deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    padding: 4px 8px;
    border: 2px solid var(--accent);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(255, 62, 219, 0.3);
}

.nav-logo-text:hover {
    border-color: var(--accent2);
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(255, 62, 219, 0.5);
}

.nav-title {
    font-size: 0.9rem; /* Reduced from 1.1rem to 0.9rem */
    font-weight: 700;
    color: var(--accent2);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px; /* Reduced from 10px to 8px */
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    padding: 4px 10px; /* Reduced from 6px 12px to 4px 10px */
    border-radius: 4px; /* Reduced from 6px to 4px */
    transition: all 0.3s ease;
    font-size: 0.7rem; /* Reduced from 0.8rem to 0.7rem */
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px; /* Reduced from 4px to 3px */
    white-space: nowrap;
}

.nav-links a:hover {
    background: rgba(255, 62, 219, 0.1);
    color: var(--accent);
    transform: translateY(-1px);
}

.nav-links a.active {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(255, 62, 219, 0.3); /* Reduced shadow */
}

.nav-links a.external-link {
    color: var(--accent);
    font-weight: 600;
}

.nav-links a.external-link:hover {
    background: rgba(255, 62, 219, 0.15);
    transform: translateY(-2px);
}

.nav-links a.logout-link {
    color: #ff6b6b;
    font-weight: 600;
}

.nav-links a.logout-link:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff8e8e;
}

.nav-links a.admin-link {
    color: var(--accent2);
    font-weight: 600;
    background: rgba(0, 255, 60, 0.1);
    border: 1px solid rgba(0, 255, 60, 0.3);
}

.nav-links a.admin-link:hover {
    background: rgba(0, 255, 60, 0.2);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 0.8rem; /* Reduced from 0.9rem to 0.8rem */
}



/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 2px; /* Reduced from 3px to 2px */
    padding: 4px; /* Reduced from 6px to 4px */
}

.nav-toggle span {
    width: 16px; /* Reduced from 18px to 16px */
    height: 1px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 70px);
    padding: 40px 0;
}

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

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid;
    font-weight: 500;
}

.alert-success {
    background: rgba(0, 255, 60, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(255, 62, 62, 0.1);
    border-color: var(--error);
    color: var(--error);
}

.alert-info {
    background: rgba(62, 159, 255, 0.1);
    border-color: var(--info);
    color: var(--info);
}

/* Cards */
.card {
    background: var(--card);
    border: 1px solid rgba(255, 62, 219, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(255, 62, 219, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 62, 219, 0.2);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0;
}

.card-subtitle {
    color: var(--muted);
    margin-top: 5px;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent2);
    color: var(--primary);
}

.btn-primary:hover {
    background: #00cc30;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--error);
    color: var(--text);
}

.btn-danger:hover {
    background: #cc3333;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 62, 219, 0.2);
    border-radius: 8px;
    background: var(--secondary);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 62, 219, 0.1);
}

.form-input::placeholder {
    color: var(--muted);
}

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

.form-select {
    cursor: pointer;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--card);
    border: 1px solid rgba(255, 62, 219, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(255, 62, 219, 0.4);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent2);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tables */
.table-container {
    overflow-x: auto;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid rgba(255, 62, 219, 0.2);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 62, 219, 0.1);
}

.table th {
    background: rgba(255, 62, 219, 0.05);
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.table tr:hover {
    background: rgba(255, 62, 219, 0.05);
}

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: rgba(0, 255, 60, 0.2);
    color: var(--accent2);
    border: 1px solid rgba(0, 255, 60, 0.3);
}

.status-pending {
    background: rgba(255, 170, 0, 0.2);
    color: var(--warning);
    border: 1px solid rgba(255, 170, 0, 0.3);
}

.status-completed {
    background: rgba(0, 255, 60, 0.2);
    color: var(--success);
    border: 1px solid rgba(0, 255, 60, 0.3);
}

.status-open {
    background: rgba(62, 159, 255, 0.2);
    color: var(--info);
    border: 1px solid rgba(62, 159, 255, 0.3);
}

.status-resolved {
    background: rgba(0, 255, 60, 0.2);
    color: var(--success);
    border: 1px solid rgba(0, 255, 60, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--nav-bg);
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .card {
        padding: 20px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* News Section Responsive */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-card {
        padding: 20px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-brand .nav-title {
        display: none;
    }
    
    .nav-logo-text {
        font-size: 1rem;
        padding: 3px 6px;
        letter-spacing: 1px;
    }
    
    .card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.p-0 { padding: 0; }
.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 16px; }
.rounded-full { border-radius: 50%; }

.shadow { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
.shadow-lg { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); }

.transition { transition: all 0.3s ease; }

/* Discord Login */
.discord-login {
    margin-bottom: 30px;
}

.btn-discord {
    background: #5865F2;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

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

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 62, 219, 0.2);
}

.divider span {
    background: var(--card);
    padding: 0 15px;
    color: var(--muted);
    font-size: 0.9rem;
}

/* News Section */
.news-section {
    margin-bottom: 40px;
}

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

.news-card {
    background: var(--card);
    border: 1px solid rgba(255, 62, 219, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover {
    border-color: rgba(255, 62, 219, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.news-card:hover::before {
    opacity: 1;
}

.news-date {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.news-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.news-link:hover {
    color: var(--accent2);
    transform: translateX(3px);
}

/* Section Headers */
.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    margin-bottom: 40px;
    text-align: center;
    padding: 40px 0;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.page-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
}

.empty-icon {
    font-size: 3rem;
    color: var(--muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--muted);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.empty-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}


@media (max-width: 480px) {
    .nav-container {
        padding: 0 8px; /* Reduced from 10px to 8px */
    }
    
    .nav-title {
        font-size: 0.8rem; /* Reduced from 1rem to 0.8rem */
    }
    
    .nav-logo {
        width: 16px; /* Reduced from 20px to 16px */
        height: 16px; /* Reduced from 20px to 16px */
    }
    

}

/* Assets Page Styling */
.assets-content {
    margin-bottom: 40px;
}

.assets-section {
    margin-bottom: 50px;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.asset-card {
    background: var(--card);
    border: 1px solid rgba(255, 62, 219, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.asset-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.asset-card:hover {
    border-color: rgba(255, 62, 219, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.asset-card:hover::before {
    opacity: 1;
}

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

.asset-info {
    flex: 1;
    margin-right: 20px;
}

.asset-name {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.asset-category {
    background: rgba(0, 255, 60, 0.1);
    color: var(--accent2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
}

.asset-description {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.asset-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--secondary);
    border-radius: 12px;
    border: 1px solid rgba(255, 62, 219, 0.1);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-label {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}

.meta-value {
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
}

.asset-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.asset-actions .btn {
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

/* Empty Category State */
.empty-category {
    text-align: center;
    padding: 40px 20px;
    background: var(--card);
    border: 1px solid rgba(255, 62, 219, 0.1);
    border-radius: 12px;
    margin-top: 25px;
}

.empty-category p {
    color: var(--muted);
    font-size: 1rem;
    margin: 0;
}

.empty-category a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.empty-category a:hover {
    color: var(--accent2);
    text-decoration: underline;
}

/* Support Section */
.support-section {
    margin-top: 50px;
}

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

.support-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--secondary);
    border: 1px solid rgba(255, 62, 219, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: rgba(255, 62, 219, 0.3);
    transform: translateY(-2px);
}

.support-icon {
    font-size: 2rem;
    color: var(--muted);
    margin-bottom: 20px;
    opacity: 0.7;
    font-weight: 600;
}

.support-card h3 {
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.support-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Responsive adjustments for assets page */
@media (max-width: 768px) {
    .assets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .asset-card {
        padding: 25px;
    }
    
    .asset-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .asset-meta {
        grid-template-columns: 1fr;
    }
    
    .asset-actions {
        flex-direction: column;
    }
    
    .asset-actions .btn {
        min-width: auto;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Billing Section */
.billing-section {
    margin-bottom: 60px;
    padding: 40px 0;
    background: var(--secondary);
    border-radius: 20px;
    border: 1px solid rgba(255, 62, 219, 0.1);
}

.billing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.billing-card {
    text-align: center;
    padding: 30px;
    background: var(--card);
    border: 1px solid rgba(255, 62, 219, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.billing-card:hover {
    border-color: rgba(255, 62, 219, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

.billing-card h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.billing-card p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.billing-card .btn {
    min-width: 200px;
}

/* Responsive adjustments for billing section */
@media (max-width: 768px) {
    .billing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .billing-card {
        padding: 25px;
    }
    
    .billing-icon {
        font-size: 3rem;
    }
    
    .billing-card h3 {
        font-size: 1.5rem;
    }
    
    .billing-card p {
        font-size: 1rem;
    }
    
    .billing-card .btn {
        min-width: auto;
        width: 100%;
    }
}

/* My Assets Page Styling */
.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.asset-card {
    background: var(--card);
    border: 1px solid rgba(255, 62, 219, 0.2);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.asset-card:hover {
    border-color: rgba(255, 62, 219, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

.asset-title {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    margin-right: 20px;
}

.asset-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.asset-status.active {
    background: rgba(0, 255, 60, 0.1);
    color: var(--accent2);
}

.asset-status.expired {
    background: rgba(255, 170, 0, 0.1);
    color: #ffaa00;
}

.asset-status.cancelled {
    background: rgba(255, 62, 62, 0.1);
    color: #ff3e3e;
}

.asset-details {
    margin-bottom: 20px;
}

.asset-category {
    color: var(--accent2);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.asset-date {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0;
}

.asset-actions {
    display: flex;
    gap: 15px;
}

.asset-actions .btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.browse-more {
    text-align: center;
    padding: 40px;
    background: var(--secondary);
    border-radius: 16px;
    border: 1px solid rgba(255, 62, 219, 0.2);
}

.browse-more h2 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.browse-more p {
    color: var(--muted);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Responsive adjustments for My Assets */
@media (max-width: 768px) {
    .assets-grid {
        grid-template-columns: 1fr;
    }
    
    .asset-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .asset-actions {
        flex-direction: column;
    }
    
    .asset-actions .btn {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .asset-card {
        padding: 20px;
    }
    
    .asset-title {
        font-size: 1.2rem;
    }
}
