:root {
    --primary-color: #00ff88;
    --primary-dark: #00cc6a;
    --primary-glow: rgba(0, 255, 136, 0.4);
    --bg-dark: #08090a;
    --bg-card: rgba(15, 18, 20, 0.6);
    --bg-glass: rgba(20, 25, 30, 0.7);
    --text-main: #f0f2f5;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 255, 136, 0.3);
    --smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar Customizada (Cara do Paquistão) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #050505; 
}
::-webkit-scrollbar-thumb {
    background: var(--primary-dark); 
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color); 
}

/* Seleção de Texto Customizada */
::selection {
    background-color: var(--primary-color);
    color: #000;
}

/* Background & Overlays */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: url('/fundo.webp') no-repeat center center;
    background-size: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(3,3,3,0.6) 0%, rgba(3,3,3,0.95) 100%);
    z-index: -1;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 6%;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--smooth);
}

.navbar.scrolled {
    padding: 10px 6%;
    background: rgba(8, 9, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

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

.nav-actions { display: flex; gap: 15px; align-items: center; }

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
    transition: var(--smooth);
}

.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); background-color: var(--primary-color); }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: var(--primary-color); }

/* Buttons */
button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary, .btn-alistar, .btn-submit {
    background-color: var(--primary-color);
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.btn-primary:hover, .btn-alistar:hover, .btn-submit:hover {
    background-color: #fff;
    box-shadow: 0 8px 25px var(--primary-glow);
    transform: translateY(-3px);
}

.btn-secondary, .btn-encomenda {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.btn-secondary:hover, .btn-encomenda:hover {
    background-color: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    transform: translateY(-3px);
}

.btn-small { padding: 8px 15px; font-size: 0.8rem; }

/* User Profile Widget */
.user-widget {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    transition: var(--smooth);
}

.user-widget.active { display: flex; }
.user-widget:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--primary-color); }

.user-info-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

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

.user-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.user-badge {
    font-size: 0.65rem;
    font-weight: 900;
    padding: 1px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-discord { background-color: #5865F2; color: #fff; border: none; padding: 10px 20px; border-radius: 6px; font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: 0.3s; box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3); }
.btn-discord:hover { background-color: #4752C4; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5); }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title-main {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: 5px;
}

.hero-title-sub {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    letter-spacing: 5px;
    margin-bottom: 40px;
}

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

/* Sections */
.section {
    padding: 80px 5%;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}
.text-green { color: var(--primary-color); }

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* História */
.historia-content {
    display: flex;
    gap: 50px;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: 0.4s ease;
}
.historia-content:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.historia-text { flex: 2; }
.historia-text p { margin-bottom: 15px; line-height: 1.6; color: #ddd; font-size: 1.05rem; }

.historia-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border-left: 1px solid var(--border-color);
    padding-left: 40px;
}

.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 2.5rem; font-weight: 900; color: var(--primary-color); }
.stat-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 700; letter-spacing: 1px; }

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 50px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 30px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.2); }

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.card-header i { font-size: 2rem; }
.card-header h2 { font-size: 1.5rem; font-weight: 900; }

.card-green .card-header i { color: var(--primary-color); }
.card-red .card-header i { color: #ff3333; }
.card-blue .card-header i { color: #33aaff; }

.card-body h3 { font-size: 1rem; color: #fff; margin-bottom: 5px; margin-top: 15px;}
.card-body p { font-size: 0.9rem; color: #bbb; line-height: 1.5; }

/* Feed & Grids */
.news-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    transition: 0.3s ease;
}

.news-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.news-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}

.author-avatar { width: 45px; height: 45px; border-radius: 50%; border: 2px solid var(--primary-color); }
.news-body { font-size: 1.05rem; line-height: 1.6; color: #ddd; }

.gallery-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    transition: 0.3s ease;
}

.gallery-item-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.gallery-item-media { height: 300px; width: 100%; }
.gallery-item-media img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease;}
.gallery-item-card:hover .gallery-item-media img { transform: scale(1.05); }

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    transition: 0.3s ease;
}

.video-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.video-thumb {
    width: 100%;
    height: 200px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #000;
}

.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: 0.5s ease;}
.video-card:hover .video-thumb img { opacity: 1; transform: scale(1.05); }

.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: var(--primary-color);
    cursor: pointer;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
    transition: 0.3s;
}
.play-btn:hover { color: #fff; text-shadow: 0 0 20px var(--primary-color); transform: translate(-50%, -50%) scale(1.1); }

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 15, 5, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img, .lightbox-content iframe {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.4);
}

.lightbox-close {
    position: absolute;
    top: 30px; right: 40px;
    color: var(--primary-color);
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2001;
    text-shadow: 0 0 15px var(--primary-color);
}
.lightbox-close:hover {
    color: #fff;
    transform: scale(1.1) rotate(90deg);
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal.active { display: block; } /* For script.js compatibility */

.modal-content {
    background-color: #111;
    margin: 5% auto;
    padding: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover { color: #fff; }

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.input-group { margin-bottom: 20px; }
.input-group label { display: block; margin-bottom: 8px; color: #ddd; font-size: 0.9rem; font-weight: 700;}
.input-group input, .input-group textarea, select {
    width: 100%;
    padding: 12px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid #444;
    color: #fff;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.input-group input:focus, .input-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}
.btn-submit { width: 100%; padding: 15px; font-size: 1rem; margin-top: 10px; }

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    background: rgba(0,0,0,0.9);
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
}

.footer-tagline { color: var(--primary-color); margin-top: 10px; font-weight: 700; letter-spacing: 2px;}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade Geral */
@media (max-width: 900px) {
    .navbar {
        padding: 15px 5%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(8, 9, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 40px;
    }

    .nav-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 800;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 20px;
    }

    .nav-actions button {
        width: 100%;
        padding: 15px;
    }

    .historia-content {
        flex-direction: column;
        text-align: center;
    }
    .historia-stats {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 30px;
        flex-direction: row;
        justify-content: space-around;
    }
    .hero-title-main, .hero-title-sub {
        font-size: 3.5rem;
    }
    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 20px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }

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

    .hero-title-main {
        font-size: 2.8rem;
        line-height: 1.1;
        letter-spacing: 2px;
    }
    .hero-title-sub {
        font-size: 2.8rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
        text-align: center;
    }

    .section-header-flex {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .stat-num {
        font-size: 2.2rem;
    }

    .gallery-item-media {
        height: 250px;
    }

    .modal-content {
        padding: 35px 25px;
        width: 92%;
        margin: 10% auto;
    }

    .footer-tagline {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

/* Profile Modal Styles */
.profile-modal {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-glass) !important;
    backdrop-filter: blur(40px) !important;
    border: 1px solid var(--border-hover) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    padding: 30px !important;
}

/* Custom Scrollbar for Modal */
.profile-modal::-webkit-scrollbar {
    width: 6px;
}
.profile-modal::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.profile-header img {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px var(--primary-glow);
    object-fit: cover;
}

.profile-title h2 { 
    color: #fff; 
    margin-bottom: 8px; 
    font-size: 2.2rem; 
    font-weight: 800;
    letter-spacing: -0.5px;
}

.profile-title p { 
    font-weight: 600; 
    font-size: 1.2rem; 
    text-transform: uppercase;
    letter-spacing: 2px;
}

.profile-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
}

.profile-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: var(--smooth);
}

.profile-stat:hover {
    border-color: var(--primary-color);
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.profile-stat i { 
    font-size: 2rem; 
    margin-bottom: 15px; 
    color: var(--primary-color); 
}

.profile-stat .stat-val { 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: #fff; 
    margin-bottom: 8px; 
}

.profile-stat .stat-lbl { 
    font-size: 0.8rem; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    font-weight: 700;
}

.stat-danger i { color: #ff4757; }
.stat-danger .stat-val { color: #ff4757; }
/* Alert Modal Styles */
.alert-modal {
    max-width: 400px;
    text-align: center;
    padding: 40px 30px !important;
    background: rgba(10, 15, 10, 0.9) !important;
    border: 1px solid rgba(0, 255, 136, 0.3) !important;
}

.alert-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { transform: scale(1); opacity: 1; text-shadow: 0 0 0px var(--primary-color); }
    50% { transform: scale(1.1); opacity: 0.8; text-shadow: 0 0 20px var(--primary-color); }
    100% { transform: scale(1); opacity: 1; text-shadow: 0 0 0px var(--primary-color); }
}

.alert-modal h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.alert-modal p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.alert-modal .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}
/* Meta Progress Dashboard */
.meta-dashboard {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid var(--border-hover);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.meta-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.meta-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.meta-dashboard-header h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-badge {
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.status-badge.success {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.status-badge.pending {
    background: rgba(255, 165, 2, 0.1);
    color: #ffa502;
    border: 1px solid rgba(255, 165, 2, 0.3);
}

.progress-item {
    margin-bottom: 20px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.progress-track {
    width: 100%;
    height: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 50px;
    box-shadow: 0 0 15px var(--primary-glow);
}
