body {
    background: url('empyty'), #333;
    background-image: url('2026-02-16_16.11.08.png'); 
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    color: #f0f0f0;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: clamp(32px, 8vw, 72px); 
    color: #ece4d0;
    text-transform: uppercase;
    margin: 20px 0;
    text-shadow: 3px 3px #000;
    letter-spacing: 2px;
    text-align: center;
}

.nav-bar {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: 900px;
    padding: 10px 0;
    text-align: center;
    border: 1px solid #444;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.nav-bar a {
    margin: 0 10px;
    color: #ece4d0;
}

.main-container {
    display: flex;
    width: 100%;
    max-width: 900px;
    min-height: 500px;
    background: rgba(0, 0, 0, 0.7); 
    border: 1px solid #444;
}

.sidebar {
    width: 25%;
    padding: 20px;
    border-right: 1px solid #444;
    font-size: 13px;
    line-height: 1.4;
}

.content {
    width: 75%;
    padding: 20px;
}

.ip-box {
    background: #222;
    padding: 10px;
    border: 1px solid #555;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.ip-box button {
    background: #444;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
}

.ip-box button:hover {
    background: #666;
}


.news-section { margin-top: 30px; }

.date-header {
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 5px;
    display: block;
}

.footer-text {
    font-size: 11px; 
    margin-top: 50px; 
    color: #777;
}

a { color: #aaa; text-decoration: none; transition: 0.2s; }
a:hover { color: #fff; text-shadow: 0 0 5px #fff; }

@media (max-width: 600px) {
    .main-container { flex-direction: column; }
    .sidebar { width: 100%; border-right: none; border-bottom: 1px solid #444; box-sizing: border-box; }
    .content { width: 100%; box-sizing: border-box; }
}