/* ============================================================
   HERO + SERVER STATUS — Aramses2
   ============================================================ */

.aramses-hero {
    position: relative;
    width: 100%;
    margin: -8px 0 24px;
    overflow: hidden;
    border-radius: 8px;
    background: #0a0604;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    isolation: isolate;
}

.aramses-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/img/background2.png') center/cover no-repeat;
    opacity: 0.55;
    z-index: -2;
    transform: scale(1.05);
    animation: hero-zoom 30s ease-in-out infinite alternate;
}

.aramses-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 0%, rgba(10, 6, 4, 0.9) 80%),
        linear-gradient(180deg, rgba(10, 6, 4, 0.4) 0%, rgba(10, 6, 4, 0.95) 100%);
    z-index: -1;
}

@keyframes hero-zoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.18); }
}

.aramses-hero-inner {
    position: relative;
    padding: 48px 32px 32px;
    text-align: center;
    color: #e8dcc4;
}

.aramses-hero-logo {
    width: 180px;
    max-width: 60%;
    height: auto;
    margin: 0 auto 14px;
    filter: drop-shadow(0 0 18px rgba(255, 140, 60, 0.45));
    animation: hero-logo-float 4s ease-in-out infinite;
}

@keyframes hero-logo-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.aramses-hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: clamp(20px, 3.2vw, 32px);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f5e7c8;
    text-shadow: 0 2px 12px rgba(255, 100, 30, 0.5);
    margin: 0 0 8px;
}

.aramses-hero-subtitle {
    font-family: 'Onest', sans-serif;
    font-size: clamp(13px, 1.6vw, 15px);
    color: #c6baac;
    letter-spacing: 0.5px;
    margin: 0 0 28px;
    opacity: 0.85;
}

.aramses-hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}

.aramses-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    font-family: 'Onest', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.aramses-cta-btn.primary {
    background: linear-gradient(180deg, #c4732a 0%, #8b4513 100%);
    color: #fff5dc;
    border-color: #ff8c42;
    box-shadow: 0 4px 14px rgba(255, 100, 30, 0.35);
}
.aramses-cta-btn.primary:hover {
    background: linear-gradient(180deg, #d6852d 0%, #a55418 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 120, 40, 0.5);
}

.aramses-cta-btn.secondary {
    background: rgba(20, 12, 6, 0.7);
    color: #e8dcc4;
    border-color: #c6baac;
    backdrop-filter: blur(4px);
}
.aramses-cta-btn.secondary:hover {
    background: rgba(40, 24, 12, 0.85);
    border-color: #ff8c42;
    color: #fff5dc;
    transform: translateY(-2px);
}

/* ============================================================
   SERVER STATUS BAR
   ============================================================ */

.server-status {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(10, 6, 4, 0.7);
    border: 1px solid rgba(198, 186, 172, 0.2);
    border-radius: 6px;
    backdrop-filter: blur(8px);
    margin-top: 8px;
}

.server-status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px 0 0;
    border-right: 1px solid rgba(198, 186, 172, 0.2);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6b6b6b;
    box-shadow: 0 0 8px currentColor;
    transition: background 0.4s, box-shadow 0.4s;
}

.status-dot.online {
    background: #6dd06d;
    color: #6dd06d;
    animation: status-pulse 1.6s ease-in-out infinite;
}

.status-dot.offline {
    background: #d04545;
    color: #d04545;
}

@keyframes status-pulse {
    0%, 100% { box-shadow: 0 0 6px #6dd06d, 0 0 12px rgba(109, 208, 109, 0.4); }
    50%      { box-shadow: 0 0 12px #6dd06d, 0 0 24px rgba(109, 208, 109, 0.8); }
}

.server-status-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
    align-items: center;
}

.stat-cell {
    text-align: center;
    padding: 4px 8px;
    border-left: 1px solid rgba(198, 186, 172, 0.1);
}
.stat-cell:first-child { border-left: 0; }

.stat-value {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffd587;
    line-height: 1.1;
    text-shadow: 0 0 8px rgba(255, 180, 80, 0.3);
    transition: transform 0.3s;
}

.stat-value.bumped { animation: stat-bump 0.4s ease; }
@keyframes stat-bump {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.18); color: #ffe9a8; }
    100% { transform: scale(1); }
}

.stat-label {
    display: block;
    margin-top: 4px;
    font-family: 'Onest', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #968875;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .aramses-hero-inner { padding: 32px 16px 22px; }
    .aramses-hero-cta { gap: 8px; }
    .aramses-cta-btn { padding: 10px 16px; font-size: 11px; }
    .server-status {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .server-status-indicator {
        border-right: 0;
        border-bottom: 1px solid rgba(198, 186, 172, 0.2);
        padding: 0 0 10px 0;
        justify-content: center;
    }
    .stat-value { font-size: 18px; }
}
