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

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden; /* Sahifa mutlaqo qimirlamaydi */
    font-family: 'Arial', sans-serif;
}

body {
    background: url('oqibat.jpg?v=1.2') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container {
    width: 100%;
    max-width: 400px;
    height: 100vh; /* Ekran balandligiga to'liq moslashish */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Hamma narsani markazga to'playdi */
    padding: 20px;
    background: rgba(0, 0, 0, 0.15);
}

.overlay-circle {
    background: rgba(255, 255, 255, 0.96);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 4px solid #d4af37;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 30px; /* Aloqa blokidan masofa */
}

.overlay-circle h1 {
    color: #1a2a44;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
}

.button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.nav-button {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #1a2a44;
    border-radius: 25px;
    padding: 8px 10px;
    text-decoration: none;
    color: #1a2a44;
    font-weight: bold;
    font-size: 11px;
    width: 120px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-button img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.info-box {
    background: #fff;
    width: 90%;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.info-box h3 {
    margin-bottom: 10px;
    font-size: 14px;
    color: #000;
}

.contact-row {
    display: flex;
    justify-content: space-around;
}

.contact-item a {
    text-decoration: none;
    color: #1a2a44;
    font-weight: bold;
    font-size: 12px;
}

.contact-item p {
    font-size: 10px;
    color: #777;
    margin: 0;
}

/* Directed by qismi */
.credits {
    margin-top: 20px;
    font-size: 12px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: normal;
}