/* ===== RESET & GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    /* Color Palette - Enterprise Dark Theme */
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-gold-light: #f0c040;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-light-gray: #999999;
    --border-color: #333333;
    --border-light: #444444;
    --success-green: #2ecc71;
    --info-blue: #3498db;
    --card-bg: #111111;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.4);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 5px 15px rgba(212, 175, 55, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-gray);
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-gold-light);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: var(--secondary-dark);
    padding: var(--space-sm) var(--space-md);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Standalone */
.logo-standalone {
    height: 50px;
    display: flex;
    align-items: center;
}

.logo-standalone img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--space-xs) 0;
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: var(--space-xs);
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

/* Entity Lock Section */
.entity-lock {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-color);
    background: #0d0d0d;
    text-align: center;
}

.entity-lock p {
    font-size: 0.85rem;
    color: var(--text-light-gray);
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.entity-lock strong {
    color: var(--accent-gold);
}

/* ===== MOBILE NAVIGATION ===== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
    backdrop-filter: blur(3px);
}

.overlay.active {
    display: block;
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--secondary-dark);
    padding: var(--space-xl) var(--space-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    overflow-y: auto;
}

.nav-mobile.active {
    right: 0;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--space-md);
}

.mobile-logo {
    height: 40px;
}

.mobile-logo img {
    height: 100%;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.close-menu {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    padding: var(--space-xs);
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.nav-mobile-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border: 1px solid transparent;
}

.nav-mobile-link:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-color: var(--border-color);
}

.nav-mobile-link i {
    width: 20px;
    text-align: center;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-banner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: var(--space-xl);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    line-height: 1.2;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-content h1 span {
    color: var(--accent-gold);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    color: var(--text-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p strong {
    color: var(--accent-gold);
}

/* CTA Area */
.cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.btn-main-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, var(--accent-gold), #a88221);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    min-width: 250px;
    box-shadow: var(--shadow-gold);
}

.btn-main-login:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.security-status {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--space-sm);
}

.security-status small {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

.security-status small i {
    color: var(--accent-gold);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    flex: 1;
    width: 100%;
}

/* Login Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--space-xxl) auto;
    padding: 0 var(--space-md);
}

.login-card {
    background-color: rgba(26, 26, 26, 0.95);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 500px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.login-card h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--accent-gold);
}

.login-card p {
    color: var(--text-gray);
    margin-bottom: var(--space-xl);
    font-size: 1.05rem;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, var(--accent-gold), #a88221);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
}

.login-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.login-btn i {
    font-size: 1.2rem;
}

/* ===== CORE FEATURES ===== */
.core-features {
    padding: var(--space-xxl) 0;
    background: var(--primary-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.feature-card {
    background: var(--card-bg);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: var(--space-md);
}

.feature-card h3 {
    color: var(--text-white);
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== CONTENT SECTIONS ===== */
.intro-authority,
.tech-specs-area,
.technical-deep-dive,
.operational-stability,
.integration-efficiency,
.faq-section,
.authority-hub {
    padding: var(--space-xxl) 0;
    border-top: 1px solid var(--border-color);
}

.intro-authority {
    background: #0b0b0b;
}

.tech-specs-area {
    background: var(--primary-dark);
    padding: var(--space-xl) 0;
}

.technical-deep-dive {
    background: #080808;
}

.operational-stability {
    background: #0b0b0b;
}

.integration-efficiency {
    background: #080808;
}

.faq-section {
    background: #0b0b0b;
}

.authority-hub {
    background: #080808;
}

/* Section Headers */
.intro-authority h2,
.technical-deep-dive h2,
.operational-stability h2,
.integration-efficiency h3,
.faq-section h3 {
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block;
    padding-bottom: var(--space-xs);
    margin-bottom: var(--space-xl);
}

/* Content Body */
.content-body {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

.content-body p {
    margin-bottom: var(--space-lg);
}

.content-body strong {
    color: var(--accent-gold);
}

/* ===== TECH SPECS BOX ===== */
.specs-box {
    padding: var(--space-xl);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.specs-box h4 {
    color: var(--text-white);
    margin-bottom: var(--space-lg);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

.spec-item {
    text-align: center;
    padding: var(--space-sm);
    border-right: 1px solid var(--border-color);
}

.spec-item:last-child {
    border-right: none;
}

.spec-label {
    color: var(--accent-gold);
    font-weight: bold;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}

.spec-value {
    color: var(--text-white);
    font-size: 1rem;
}

/* ===== TECH SPECS TABLE ===== */
.specs-table-container {
    margin: var(--space-xl) 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--card-bg);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-light-gray);
    font-size: 0.95rem;
}

.specs-table thead {
    background: #151515;
}

.specs-table th {
    padding: var(--space-md);
    border-bottom: 2px solid var(--border-color);
    color: var(--accent-gold);
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.specs-table tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: background-color 0.3s;
}

.specs-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.specs-table td {
    padding: var(--space-md);
    vertical-align: middle;
}

.specs-table td:first-child {
    color: var(--text-white);
    font-weight: 500;
}

.status-active {
    color: var(--success-green);
    font-weight: bold;
}

.status-active::before {
    content: '●';
    margin-right: var(--space-xs);
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: var(--space-xl) 0;
    background: #050505;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.trust-badge-item {
    text-align: center;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.trust-badge-item:hover {
    opacity: 1;
    filter: grayscale(0);
}

.trust-badge-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    display: block;
    margin-bottom: var(--space-xs);
}

.trust-badge-item span {
    color: var(--text-white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FAQ SECTION ===== */
.faq-item {
    margin-bottom: var(--space-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    background: var(--card-bg);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-light);
}

.faq-item h4 {
    color: var(--accent-gold);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-light-gray);
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
}

/* ===== AUTHORITY HUB ===== */
.authority-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.hub-section h5 {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.hub-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hub-links li {
    margin-bottom: var(--space-sm);
}

.hub-links a {
    color: var(--text-light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: block;
}

.hub-links a:hover {
    color: var(--text-white);
}

.status-box {
    background: var(--card-bg);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.status-item {
    color: var(--text-light-gray);
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
}

.status-item:last-child {
    margin-bottom: 0;
}

.status-item strong {
    color: var(--text-white);
    margin-left: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: #050505;
    color: var(--text-light-gray);
    padding: var(--space-xxl) 0 var(--space-xl);
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-logo {
    margin-bottom: var(--space-sm);
}

.footer-logo span {
    color: var(--text-white);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-logo span span {
    color: var(--accent-gold);
}

.footer-subtitle {
    color: var(--accent-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: justify;
    color: var(--text-light-gray);
}

.footer-section h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-links .contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

.footer-links .contact-item i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.footer-links .contact-item a {
    color: var(--text-light-gray);
}

.footer-links .contact-item a:hover {
    color: var(--accent-gold);
}

.privacy-contact {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-color);
}

.privacy-contact span {
    display: block;
    color: #555;
    font-size: 0.75rem;
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
}

.privacy-contact a {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-copyright p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
}

.footer-copyright p:first-child {
    margin-bottom: var(--space-xs);
}

.footer-copyright strong {
    color: var(--accent-gold);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        height: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .authority-hub-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .header {
        padding: var(--space-sm);
    }
    
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        height: 100%;
    }
    
    .hero-content {
        padding: var(--space-lg);
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .login-card {
        padding: var(--space-lg);
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spec-item:nth-child(2) {
        border-right: none;
    }
    
    .spec-item:nth-child(3),
    .spec-item:nth-child(4) {
        border-top: 1px solid var(--border-color);
        padding-top: var(--space-md);
    }
    
    .spec-item:nth-child(4) {
        border-right: none;
    }
    
    .trust-badges {
        gap: var(--space-md);
    }
    
    .trust-badge-item {
        flex: 0 0 calc(50% - var(--space-md));
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero {
        height: 100%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-main-login,
    .login-btn {
        font-size: 1.1rem;
        padding: var(--space-md);
    }
    
    .security-status {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .spec-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: var(--space-md);
    }
    
    .spec-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .spec-item:nth-child(3),
    .spec-item:nth-child(4) {
        border-top: none;
        padding-top: var(--space-md);
    }
    
    .specs-table {
        font-size: 0.85rem;
    }
    
    .specs-table th,
    .specs-table td {
        padding: var(--space-sm);
    }
    
    .trust-badge-item {
        flex: 0 0 100%;
    }
    
    .nav-mobile {
        width: 280px;
        padding: var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--accent-gold);
}

.text-white {
    color: var(--text-white);
}

.bg-dark {
    background-color: var(--primary-dark);
}

.bg-darker {
    background-color: var(--secondary-dark);
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mb-1 { margin-bottom: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mb-3 { margin-bottom: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space-md); }
.p-4 { padding: var(--space-lg); }
.p-5 { padding: var(--space-xl); }