/* ============================================================
   REALMI STATUS CARD - PAKSUMPI REUNA JA PUNAINEN HOHTO
   ============================================================ */

/* 1. KORTIN PÄÄKEHYS */
.mcsmd-card {
    background: #3d2923 !important; /* Minecraft-ruskea */
    
    /* REUNA: Muutettu 2px -> 3px */
    border: 3px solid #751B1B !important; 
    
    /* HOHTO: Lisätty brändin punainen glow-efekti */
    box-shadow: 0 0 25px rgba(117, 27, 27, 0.6), 0 10px 30px rgba(0,0,0,0.7) !important;
    
    border-radius: 18px !important;
    padding: 24px !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* 2. REFRESH-PAINIKKEEN JA TYHJIEN ALUEIDEN POISTO */
.mcsmd-refresh, .mcsmd-refresh-title, .mcsmd-refresh-small, .mcsmd-refresh-status, [title="Refresh status"], .mcsmd-right button {
    display: none !important;
}

.mcsmd-right {
    min-width: 0 !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
}

/* 3. HEADER: IKONI JA TEKSTI VIEREKKÄIN */
.mcsmd-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

.mcsmd-header-left {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
}

.mcsmd-server-icon, .mcsmd-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 10px !important;
    flex-shrink: 0 !important;
}

/* 4. TEKSTIEN VÄRIT JA TYYLIT */
.mcsmd-title, .mcsmd-version, .mcsmd-players, .mcsmd-motd, .mcsmd-info span {
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8) !important;
}

.mcsmd-title {
    font-size: 22px !important;
    font-weight: 700 !important;
}

/* 5. STATUS-PAINIKE (ONLINE) */
.mcsmd-status.on {
    background-color: #2ecc71 !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 5px 15px !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    border: 1px solid #27ae60 !important;
    text-transform: uppercase !important;
}

/* 6. BANNERIN PIENENNYS JA KESKITYS */
.mcsmd-server-banner, .mcsmd-banner {
    width: 80% !important;
    max-width: 450px !important;
    margin: 10px auto !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    display: block !important;
}

.mcsmd-server-banner img, .mcsmd-banner img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* 7. MOTD:N KESKITYS */
.mcsmd-motd {
    text-align: center !important;
    width: 100% !important;
    margin-top: 10px !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
}

/* MOBIILIOPTIMOINTI */
@media (max-width: 600px) {
    .mcsmd-card { padding: 15px !important; }
    .mcsmd-header-left { gap: 10px !important; }
    .mcsmd-server-banner, .mcsmd-banner { width: 95% !important; }
}