* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background: #0f0f1a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 60px 20px;
    text-align: center;
}

.site-title {
    font-size: 3rem;
    font-weight: bold;
    color: #e94560;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.site-subtitle-ka {
    font-size: 1.1rem;
    color: #a8b2c1;
    margin-bottom: 5px;
}

.site-subtitle-en {
    font-size: 1rem;
    color: #7a8494;
}

.date-bar {
    background: #16213e;
    text-align: center;
    padding: 12px;
    color: #a8b2c1;
    font-size: 0.95rem;
    border-bottom: 1px solid #2a2a4e;
}

nav {
    background: #16213e;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    border-bottom: 2px solid #0f0f1a;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    padding: 14px 20px;
    display: block;
    transition: all 0.3s;
}

nav a:hover {
    background: #e94560;
    color: #ffffff;
}

main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    flex: 1;
    width: 100%;
}

.section {
    background: #16213e;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #e94560;
}

.section h2 {
    font-size: 1.4rem;
    color: #e94560;
    margin-bottom: 15px;
}

.section p {
    line-height: 1.9;
    color: #a8b2c1;
    font-size: 1rem;
}

.img-block {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 3px solid #e94560;
}

footer {
    background: #0a0a14;
    text-align: center;
    padding: 20px;
    color: #555;
    font-size: 0.85rem;
    border-top: 1px solid #1a1a2e;
}

@media (max-width: 600px) {
    .site-title { font-size: 2rem; }
    nav a { padding: 10px 12px; font-size: 0.9rem; }
}
