/* --- HARDWARE.CSS (Trvalo rozsvietený prémiový dizajn) --- */
:root {
    --bg-base: #0a0a0c;
    --card-bg: #111114;
    --card-border: #27272a;
    --accent: #f97316;
    --accent-glow: rgba(249, 115, 22, 0.15);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --success: #10b981;
}

.hw-page {
    padding: 60px 20px 0;
    max-width: 1150px;
    margin: 0 auto;
}

/* --- HLAVIČKA STRÁNKY --- */
.hw-hero {
    text-align: center;
    margin-bottom: 60px;
}

.hw-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    color: var(--text-main);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hw-hero p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hw-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

/* --- HORIZONTÁLNA KARTA SERVERA --- */
.active-server {
    display: flex;
    background: var(--card-bg);
    border: 1px solid #27272a; /* Jemnejší okraj okolo celej karty */
    border-bottom: 3px solid var(--accent); /* Oranžový pásik na spodku */
    border-radius: 16px;
    overflow: hidden;
    /* Odstránená svätožiara, ponechaný len tmavý tieň pre hĺbku v priestore */
    box-shadow: 0 10px 30px rgba(0,0,0,0.4); 
    transition: all 0.4s ease;
}

.server-visual {
    width: 35%;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-right: 1px solid var(--card-border);
}

.server-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17, 17, 20, 0) 0%, rgba(17, 17, 20, 1) 100%);
}

.status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.pulse {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.server-details {
    width: 65%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.server-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    color: var(--text-main);
    margin: 0;
    letter-spacing: 1px;
}

.tech-tag {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

/* --- TABUĽKA PARAMETROV --- */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.spec-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-box i {
    color: var(--accent);
    font-size: 18px;
    background: rgba(249, 115, 22, 0.05);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    flex-shrink: 0;
}

.spec-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-text small {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.spec-text span {
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
}

.spec-text span.highlight {
    color: var(--accent);
    font-family: monospace;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* --- PRIPRAVOVANÝ SERVER --- */
.planned-banner-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.planned-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed #3f3f46;
    border-radius: 16px;
    padding: 25px 35px;
    width: 100%;
    max-width: 900px;
    transition: all 0.3s;
}

.planned-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.planned-icon-box {
    background: rgba(249, 115, 22, 0.05);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(249, 115, 22, 0.2);
    flex-shrink: 0;
}

.planned-icon-box i {
    font-size: 20px;
    color: var(--accent);
}

.planned-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: var(--text-main);
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
}

.planned-text p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.planned-badge {
    background: #27272a;
    color: #d4d4d8;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
}

/* --- INFRAŠTRUKTÚRA --- */
.infra-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 50px;
    margin-bottom: 80px;
    border-top: 1px solid var(--card-border);
}

.feature-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #3f3f46;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.feature-box h4 {
    color: var(--text-main);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-box h4 i {
    color: var(--accent);
    font-size: 20px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- RESPONZIVITA --- */
@media (max-width: 992px) {
    .active-server { flex-direction: column; }
    .server-visual { width: 100%; min-height: 250px; border-right: none; border-bottom: 1px solid var(--card-border); }
    .server-visual::after { background: linear-gradient(to top, rgba(17, 17, 20, 1) 0%, rgba(17, 17, 20, 0) 100%); }
    .server-details { width: 100%; padding: 30px 20px; }
    
    .planned-banner { flex-direction: column; text-align: center; gap: 20px; padding: 30px 20px; }
    .planned-content { flex-direction: column; text-align: center; }
    
    .infra-features { grid-template-columns: 1fr; margin-bottom: 60px; }
}

@media (max-width: 600px) {
    .specs-grid { grid-template-columns: 1fr; gap: 20px; }
}