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

:root {
    --bg: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --accent: #d4af37;
    --accent-hover: #f4d03f;
    --accent-dark: #b8860b;
    --accent-light: #ffd700;
    --text: #ffffff;
    --text-muted: #a3a3a3;
    --border: #1a1a1a;
    --success: #d4af37;
    --sidebar-bg: #1a1a0a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
    border-left: 1px solid var(--border);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-dark), var(--accent));
    border-radius: 6px;
    border: 2px solid var(--bg);
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent), var(--accent-light));
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo h1 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-list a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    position: relative;
}

.nav-list a:hover {
    color: var(--text);
    background: var(--bg-card);
}

.nav-list a.active {
    color: var(--accent);
    background: transparent;
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.header-action:hover {
    color: var(--text);
}

.header-action-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    padding: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    z-index: 2;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
    letter-spacing: -2px;
}

.hero-content h1 .highlight {
    color: var(--accent);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.hero-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.hero-cta-icon {
    width: 20px;
    height: 20px;
}

.hero-visual {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15), transparent 70%);
}

/* Stats Sidebar */
.stats-sidebar {
    background: var(--sidebar-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 100px;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.stats-header-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    font-size: 20px;
}

.stats-header h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
}

.stats-label {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    font-weight: 600;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateX(4px);
}

.stat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.stat-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

/* Status Section */
.status-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.status-section h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -1px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.status-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.status-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.status-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.status-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

.status-dot.offline {
    background: #dc2626;
    animation: none;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-info p {
    font-size: 15px;
    color: var(--text-muted);
}

.status-info strong {
    color: var(--text);
    font-weight: 700;
}

/* Features Section */
.features-section {
    padding: 0;
}

.features-header {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    overflow: hidden;
}

.features-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.features-header-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

.features-header h2 {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--text);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.2));
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
    letter-spacing: -0.3px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Rules Section */
.rules-header {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    overflow: hidden;
}

.rules-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent 70%);
    animation: rotate 20s linear infinite;
}

.rules-header-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

.rules-header h1 {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--text);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.rules-section {
    margin-top: 0;
    padding-bottom: 40px;
}

.rules-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text);
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 16px;
}

.rules-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
}

.rule-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.rule-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.5s;
}

.rule-category:hover::before {
    left: 100%;
}

.rule-category:hover {
    border-left-color: var(--accent-light);
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.rule-category h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
    letter-spacing: -0.3px;
}

.rule-category p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* About Section */
.about-header {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent 70%);
    animation: rotate 20s linear infinite;
}

.about-header-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-header h1 {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--text);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.about-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.5s;
}

.about-section:hover::before {
    left: 100%;
}

.about-section:hover {
    border-left-color: var(--accent-light);
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.about-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.about-section p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

/* Shop Section */
.shop-header {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    overflow: hidden;
}

.shop-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent 70%);
    animation: rotate 20s linear infinite;
}

.shop-header-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

.shop-header h1 {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--text);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.shop-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 18px;
    color: var(--text-muted);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.shop-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.shop-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.5s;
}

.shop-item:hover::before {
    left: 100%;
}

.shop-item:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.shop-item-popular {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, var(--bg-card), rgba(212, 175, 55, 0.05));
}

.shop-item-popular::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.shop-item-image {
    font-size: 64px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.shop-item h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text);
    letter-spacing: -0.5px;
}

.shop-item-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.shop-item-price {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.shop-buy-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.shop-buy-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
}

.shop-item-popular .shop-buy-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.shop-item-popular .shop-buy-btn:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.shop-buy-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.shop-buy-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}

.shop-item.hidden {
    display: none;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    padding: 32px 0;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent 70%);
    animation: rotate 20s linear infinite;
}

.promo-banner-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Footer */
.footer {
    background: var(--bg);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 80px 0 40px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-section:first-child h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.footer-section:first-child p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 400px;
}

.footer-section h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-section ul li {
    margin: 0;
}

.footer-section a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
    padding-left: 12px;
}

.footer-section a:hover::before {
    width: 8px;
}

.footer-section p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .stats-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        padding: 20px;
        border-top: 1px solid var(--border);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 8px;
    }

    .nav-list a {
        display: block;
        padding: 16px;
    }

    .header-actions {
        gap: 16px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-container {
        padding: 0 24px;
    }

    .status-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .container > h1,
    .about-section h1 {
        font-size: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promo-banner-text {
        font-size: 18px;
    }
}
