body {
    background: #050505;
    color: #d0d0d0;
    font-family: Verdana, Arial, sans-serif;
    margin: 0;
}

/* ===========================
   HEADER
=========================== */

.header {
    position: relative;
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid #8b0000;
    min-height: 80px;
}

.header-left {
    position: fixed !important;
    left: 20px !important;
    top: 20px !important;
    width: 100px !important;
    height: 100px !important;
    background: red !important;
    z-index: 999999 !important;
}

.header-title {
    display: inline-block;
}

.header-title h1 {
    color: #cc0000;
    margin: 0;
    font-size: 52px;
    letter-spacing: 8px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(204,0,0,0.25);
}

.header-title p {
    color: #888;
    margin-top: 8px;
    letter-spacing: 2px;
}

/* ===========================
   CONTENT
=========================== */

.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

.card {
    background: #111;
    border: 1px solid #2a2a2a;
    margin-bottom: 20px;
    padding: 20px;
}

.card h2 {
    color: #cc0000;
    margin-top: 0;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.card p {
    line-height: 1.6;
}

.archive-link {
    padding: 4px 0;
}

/* ===========================
   LINKS
=========================== */

.card a {
    color: #cc0000;
    text-decoration: none;
    font-weight: bold;
}

.card a:hover {
    color: #ff3333;
    text-shadow: 0 0 4px rgba(255,0,0,0.5);
}

/* ===========================
   STATUS
=========================== */

.status-online {
    color: #00aa00;
    font-weight: bold;
    letter-spacing: 2px;
}

/* ===========================
   FOOTER
=========================== */

.footer {
    text-align: center;
    color: #666;
    padding: 30px;
    border-top: 1px solid #222;
    margin-top: 50px;
}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #080808;
}

::-webkit-scrollbar-thumb {
    background: #333;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}