/* RESETARE ȘI CONFIGURARE DE BAZĂ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #0d0e11; /* Fundalul închis de pe forum */
    color: #e2e8f0;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* EFECTE SPECIALE AMBIENTALE */
.hud-wallpaper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1c23 0%, #0d0e11 100%);
    z-index: -2;
}

.hud-scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 6px 100%;
    z-index: -1;
    pointer-events: none;
}

.seo-hidden-content {
    display: none;
}

/* STRUCTURA INTERFEȚEI (FLEXBOX / GRID RESPONSIV) */
.hud-frame {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    gap: 40px;
    flex-grow: 1;
    justify-content: center;
}

@media (min-width: 992px) {
    .hud-frame {
        flex-direction: row;
        align-items: center;
    }
    .hud-branding {
        flex: 1;
    }
    .hud-navigation {
        flex: 1.2;
    }
}

/* SECTIUNEA BRANDING (STÂNGA) */
.system-status {
    font-size: 0.75rem;
    color: #ffd700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blink-node {
    width: 8px;
    height: 8px;
    background-color: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 8px #ffd700;
    animation: blink 1s infinite alternate;
}

.hud-logo {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.gold-neon {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.hud-slogan {
    font-size: 0.85rem;
    color: #a0aec0;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

/* CASUTA GAMETRACKER ȘI MINI STATS */
.hud-terminal {
    background: #14161d;
    border: 1px solid #2d313f;
    border-radius: 6px;
    padding: 12px;
    max-width: 380px;
    margin-bottom: 20px;
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.term-dot {
    width: 6px;
    height: 6px;
    background: #2d313f;
    border-radius: 50%;
}

.term-title {
    font-size: 0.65rem;
    color: #718096;
    letter-spacing: 1px;
    margin-left: auto;
}

.gt-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hud-mini-stats {
    display: flex;
    gap: 15px;
    max-width: 380px;
}

.m-stat {
    flex: 1;
    background: #14161d;
    border-bottom: 2px solid #ffd700;
    padding: 8px;
    text-align: center;
    border-radius: 4px;
}

.m-stat span {
    display: block;
    font-size: 0.65rem;
    color: #718096;
}

.m-stat strong {
    font-size: 0.9rem;
    color: #fff;
}

/* MENIUL CYBER (DREAPTA) */
.cyber-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cyber-btn {
    position: relative;
    background: #14161d;
    border: 1px solid #2d313f;
    text-decoration: none;
    color: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cyber-btn:hover {
    border-color: #ffd700;
    transform: translateX(5px);
    background: #1b1e28;
}

.btn-inner {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.btn-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4a5568;
}

.btn-meta {
    flex-grow: 1;
}

.btn-meta h2 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-meta p {
    font-size: 0.7rem;
    color: #a0aec0;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.btn-icon {
    font-size: 1.4rem;
    color: #4a5568;
    transition: color 0.3s ease;
}

.cyber-btn:hover .btn-icon {
    color: #ffd700;
}

.gt-inline-img {
    margin-top: 8px;
    display: block;
    max-width: 100%;
}

/* EVIDENȚIERE EXCLUSIVĂ: FORUMUL CENTRAL (BUTONUL PRINCIPAL) */
.featured-btn {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #1b1e28 0%, #252219 100%);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
    animation: pulse-border 2s infinite alternate;
}

.featured-btn .btn-number {
    color: #ffd700;
}

.featured-btn .btn-meta h2 {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    font-size: 1.3rem; /* Text mărit pentru impact vizual rapid */
}

.featured-btn .btn-icon {
    color: #ffd700;
    font-size: 1.8rem;
}

.featured-btn:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.55);
    transform: scale(1.02) translateX(5px);
}

/* FOOTER */
.hud-footer {
    text-align: center;
    padding: 20px;
    font-size: 0.7rem;
    color: #4a5568;
    letter-spacing: 1px;
    border-top: 1px solid #14161d;
    margin-top: 40px;
}

/* ANIMAȚII */
@keyframes blink {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
        border-color: #ffd700;
    }
    100% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
        border-color: #fff3a8;
    }
}

/* STRUCTURĂ MOBILĂ EXTREMĂ (ECRANE MICI) */
@media (max-width: 576px) {
    .hud-logo {
        font-size: 2.5rem;
    }
    .btn-inner {
        padding: 12px;
        gap: 12px;
    }
    .btn-meta h2 {
        font-size: 0.95rem;
    }
    .featured-btn .btn-meta h2 {
        font-size: 1.1rem;
    }
}
