:root {
    --bg-color: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --brand-primary: #cd7f32;
    /* Bronze/Gold from logo */
    --brand-secondary: #e67e22;
    --accent-blue: #0984e3;
    /* Replaced with a deep tech blue if needed, but avoiding ukraine blue */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-height: 80px;
    --transition-speed: 0.5s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

/* Selection Color */
::selection {
    background: var(--brand-primary);
    color: #fff;
}

.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand-primary);
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.3);
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-item:hover,
.nav-item.active {
    color: var(--brand-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Space between buttons */
}

/* Base Nav Button Info */
.nav-actions .btn {
    padding: 12px 24px;
    border-radius: 50px;
    /* Pillow shape for modern look */
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    /* Use the heading font for buttons */
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

/* Login Button - Glass/Outline Style */
.nav-actions .btn-login {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(5px);
}

.nav-actions .btn-login:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Play Button - Gradient & Glow Style */
.nav-actions .btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.nav-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
}

/* Shine Effect on Hover for Primary */
.nav-actions .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.nav-actions .btn-primary:hover::after {
    left: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Accordion */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--nav-height);
    padding: 20px;
    overflow: hidden;
}

.accordion-container {
    display: flex;
    width: 100%;
    max-width: 1600px;
    height: 80vh;
    gap: 10px;
}

.card {
    position: relative;
    flex: 1;
    /* Default state: all equal width */
    border-radius: 20px;
    background-color: var(--card-bg);
    overflow: hidden;
    cursor: pointer;
    transition: flex var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--glass-border);
}

/* Active Card Expansion */
/* Active Card Expansion - DISABLED as per user request */
.card.active {
    flex: 1;
    /* Keep same size */
    border: 2px solid var(--brand-primary);
    /* Thicker brand border */
    box-shadow: 0 0 25px rgba(205, 127, 50, 0.4);
    /* Brand colored glow */
}

/* Background Image & Overlay */
.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.card:hover .card-bg,
.card.active .card-bg {
    opacity: 0.6;
    /* Slightly less opaque than before over the letter */
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

/* Big Background Letter */
.big-letter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Outfit', sans-serif;
    font-size: 20rem;
    /* Massive size */
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 4px rgba(255, 255, 255, 0.1);
    /* Slightly more visible stroke by default */
    z-index: 3;
    pointer-events: none;
    transition: all 0.5s ease;
}

.card.active .big-letter {
    /* Keep size same, specific style for visibility */
    color: rgba(205, 127, 50, 0.1);
    /* Brand tint */
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
    /* Stronger stroke on active */
    font-size: 20rem;
    /* Don't enlarge */
    opacity: 1;
    /* Full opacity for the element settings above */
}

/* Content */
.card-content {
    position: relative;
    z-index: 4;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-info {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s 0.2s, transform 0.4s 0.2s;
}

.card.active .card-info {
    opacity: 1;
    transform: translateY(0);
}

.card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 400px;
    line-height: 1.5;
}

/* Character Images for Cards */
/* We will define these classes, but assume images are named char-1 to char-5.jpg */
/* Character images are handled via card-bg nth-child selectors below */

/* Specific style adjustment for .card-bg using css variables/classes effectively */
.card:nth-child(1) .card-bg {
    background-image: url('char-1.png');
}

.card:nth-child(2) .card-bg {
    background-image: url('char-2.png');
}

.card:nth-child(3) .card-bg {
    background-image: url('char-3.png');
}

.card:nth-child(4) .card-bg {
    background-image: url('char-4.png');
}

.card:nth-child(5) .card-bg {
    background-image: url('char-5.png');
}


/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background: rgba(15, 15, 15, 0.9);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    color: var(--text-secondary);
}

.socials a {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-left: 20px;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--brand-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .accordion-container {
        flex-direction: column;
    }

    .card.active {
        flex: 2;
    }

    .big-letter {
        font-size: 10rem;
    }

    .card.active .big-letter {
        font-size: 12rem;
    }

    .nav-links,
    .nav-actions {
        display: none;
        /* Hide for mobile for now (simple version) */
    }

    .mobile-menu-btn {
        display: block;
    }


    .card h3 {
        font-size: 1.5rem;
    }
}

/* Button Styling Fixes */
.btn-action {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 150px;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 127, 50, 0.5);
    color: #fff;
}

.btn-outline {
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    background: transparent;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    transition: all 0.3s;
    min-width: 150px;
    display: inline-flex;
    justify-content: center;
    margin-top: 10px;
    /* Ensure spacing if needed */
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.3);
}

.copy-ip {
    width: 100%;
    /* Full width in card context or constrained by padding */
    max-width: 250px;
    font-family: 'Inter', sans-serif;
}


/* --- New Sections Styling --- */

.section-container {
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-line {
    width: 100px;
    height: 4px;
    background: var(--brand-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* About Section */
.about-section {
    background: transparent;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

.about-paths {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.path-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    transition: transform 0.3s, border-color 0.3s;
}

.path-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-primary);
}

.path-icon {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 20px;
}

.path-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

/* Steps Section */
.steps-section {
    background: linear-gradient(180deg, transparent 0%, rgba(205, 127, 50, 0.05) 50%, transparent 100%);
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.step-card:hover {
    border-color: var(--brand-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-icon {
    font-size: 3rem;
    color: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.btn-outline {
    border: 2px solid var(--brand-primary);
    color: #fff;
    background: transparent;
    padding: 10px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: #fff;
}

.copy-ip {
    cursor: pointer;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Social Section */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    background: var(--card-bg);
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card:hover::before {
    opacity: 1;
}

.social-card i {
    font-size: 3rem;
    z-index: 2;
}

.social-info {
    z-index: 2;
}

.social-info h3 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.social-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Social Colors */
.discord {
    border-left: 5px solid #5865F2;
}

.discord i {
    color: #5865F2;
}

.instagram {
    border-left: 5px solid #E1306C;
}

.instagram i {
    color: #E1306C;
}

.youtube {
    border-left: 5px solid #FF0000;
}

.youtube i {
    color: #FF0000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-container {
        padding: 50px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .step-card {
        min-width: 100%;
    }
}

/* --- Modal Styles --- */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    margin: 15% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    animation: modalFadeIn 0.3s;
}

.modal-content.large-modal {
    max-width: 800px;
    margin: 5% auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: var(--text-secondary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 25px;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--brand-primary);
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Form Styles */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.input-group input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.2);
}

.full-width {
    width: 100%;
    margin-top: 10px;
}

/* Stats Styles - Modern Dashboard */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Updated Icon Gradients */
.stat-icon.money {
    background: linear-gradient(135deg, #00b09b, #96c93d);
}

.stat-icon.bank {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
}

.stat-icon.level {
    background: linear-gradient(135deg, #ff9f43, #ee5253);
}

.stat-icon.job {
    background: linear-gradient(135deg, #8e44ad, #a29bfe);
}

.stat-icon.prc {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.stat-info h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.highlight-text {
    color: var(--brand-primary);
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

/* Vehicle List - Modern Cards */
.vehicle-list h3 {
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 15px;
    padding-bottom: 15px;
}

/* Custom Scrollbar for Vehicle Grid */
.vehicles-grid::-webkit-scrollbar {
    width: 6px;
}

.vehicles-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
}

.vehicles-grid::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 3px;
}

.vehicle-card {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.vehicle-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.vehicle-card:hover::after {
    transform: scaleX(1);
}

.v-model {
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.v-plate {
    background: #fff;
    color: #1a1a1a;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: inherit;
    font-weight: 900;
    text-align: center;
    border: 2px solid #3366ff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.no-data {
    color: var(--text-secondary);
    font-style: italic;
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

/* Modal sizing update */
.modal-content.large-modal {
    max-width: 900px;
    padding: 50px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Panel Page Styles --- */
.panel-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: radial-gradient(circle at top center, #1a1a1a, #0f0f0f);
}

.panel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(20, 20, 20, 0.8);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.panel-nav .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
}

.panel-main {
    flex: 1;
    padding: 50px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    animation: fadeIn 0.5s ease;
}

.panel-section {
    margin-top: 50px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.section-title h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: #fff;
}

.section-title i {
    font-size: 1.5rem;
    color: var(--brand-primary);
}

.text-left {
    text-align: left;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
    min-width: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Dynamic Donate Card Styles --- */
.market-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.donate-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donate-header h2 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin-bottom: 5px;
    font-size: 2rem;
}

.donate-header p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Campaign Badges */
.campaign-badge {
    background: linear-gradient(90deg, #ff4757, #ff6b81);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.4);
    animation: badgePop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.campaign-badge.gold {
    background: linear-gradient(90deg, #ffa502, #eaaa00);
    box-shadow: 0 0 25px rgba(255, 165, 2, 0.5);
    color: #000;
}

.campaign-badge.hidden {
    display: none;
}

@keyframes badgePop {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Calculator Grid */
.calculator-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-group {
    flex: 1;
    text-align: left;
}

.calc-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.input-wrapper,
.output-wrapper {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.input-wrapper:focus-within {
    border-color: var(--brand-primary);
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.2);
}

.input-wrapper i {
    font-size: 1.5rem;
    color: #2ecc71;
    /* Dollar green */
}

.input-wrapper input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    outline: none;
}

/* Remove Arrows from Number Input */
.input-wrapper input::-webkit-outer-spin-button,
.input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calc-arrow {
    font-size: 2rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

.output-wrapper {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(0, 0, 0, 0.4));
    border-color: var(--brand-primary);
}

.output-wrapper span {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-primary);
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 20px rgba(205, 127, 50, 0.4);
}

.output-wrapper .currency {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: auto;
}

.bonus-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
}

.buy-btn-large {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #e67e22, #d35400);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
    border: none;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.buy-btn-large:hover {
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.5);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .calculator-grid {
        flex-direction: column;
    }

    .calc-arrow {
        transform: rotate(90deg);
    }
}

/* --- Support / Ticket Styles --- */
.support-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .support-layout {
        grid-template-columns: 1fr;
    }
}

.support-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.card-header h4 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.limit-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 8px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-primary);
    outline: none;
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.2);
}

/* Custom Date Picker Icon */
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(66%) sepia(61%) saturate(1610%) hue-rotate(346deg) brightness(101%) contrast(98%);
    /* Approximation of brand-primary #cd7f32 */
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s;
    background-size: contain;
    padding: 2px;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
    transform: scale(1.2);
    filter: invert(62%) sepia(65%) saturate(3015%) hue-rotate(352deg) brightness(95%) contrast(93%);
    /* Brighter Orange on hover */
}

/* Info Card List */
.info-content ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.info-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.info-content li::before {
    content: '•';
    color: var(--brand-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Submit Button Style */
.support-card button[type="submit"] {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    margin-top: 20px;
}

.support-card button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
}

.support-card button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;

    transform: none;
}

/* Modern Discord Login Button */
.btn-discord {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-discord:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
    background: linear-gradient(135deg, #4752C4, #5865F2);
}

.btn-discord:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.btn-discord i {
    font-size: 1.4rem;
}