/* .textWrapper                      {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.textContainer                      {
    text-align: left;
    width: 85vw;
    padding: 1em;
    margin: 1em 0;
}

.textTitle          {
    font-size: 2em;
    font-weight: 600;
}

.textPara                   {
    font-size: 1.3em;
    font-weight: 100;
    opacity: .7;
}

.statsContainer         {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
    margin: 2em 0;
}

td                  {
    padding: .5em 1em;
    border: #ffffff20 thin solid;
    border-radius: .6em;
    background: #2223232e;
    font-size: 1.5em;
    font-weight: 100;
}

.timestamp                  {
    text-align: center;
}

@media (max-width: 597px) {
    .textContainer              {
        padding: 1em 0;
        width: 95vw;
    }

    .textTitle              {
        font-size: 1.7em;
    }

    .textPara                       {
        font-size: 1.1em;
    }
    
    td                  {
        font-size: 1.3em;
        padding: .3em .5em;
    }
}

@media (max-width: 493px) {
    .textTitle              {
        font-size: 1.3em;
    }

    .textPara                       {
        font-size: .8em;
    }
    
    td                  {
        font-size: .9em;
        padding: .3em .5em;
    }
}

@media (max-width: 341px) {
    .textTitle              {
        font-size: 1.1em;
    }

    .textPara                       {
        font-size: .7em;
    }
    
    td                  {
        font-size: .7em;
        padding: .3em .5em;
    }
}

@media (max-width: 275px) {
    td                  {
        font-size: .6em;
        padding: .3em .5em;
    }
} */


/* ===== Hero Section ===== */
.hero-section {
    margin-bottom: 3rem;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1.25rem;
    color: #f1f5f9;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.125rem);
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.9;
}

/* ===== Stats Grid ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.stat-value {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #f1f5f9;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.stat-value.online-stat {
    color: #4ade80;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

.stat-value.offline-stat {
    color: #f87171;
}

.stat-value.players-stat {
    color: #60a5fa;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

/* ===== Last Updated ===== */
.last-updated {
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 2rem auto;
    padding: 0.75rem 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    max-width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.update-icon {
    color: #60a5fa;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .last-updated {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
}

/* ===== Print Styles ===== */
@media print {
    .hero-section {
        background: white !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    
    .stat-card {
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
    }
}