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

body {
    font-family: system-ui, sans-serif;
}

.container,
.main-container {
    width: 100%;
    height: 100vh;
}

.main-container {
    background: url('../images/Picsart_25-12-16_02-21-34-144~2.jpg') center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease;
}

h1 {
    color: #fff;
    font-size: 3rem;
    background: rgba(0, 0, 0, 0.55);
    padding: 16px 28px;
    border-radius: 10px;
    margin-bottom: 80px;
    animation: slideDown 1s ease;
}

.choices {
    display: flex;
    gap: 160px;
}

/* ===== MAIN BUTTONS (BOLD) ===== */
.choices a {
    font-weight: 700; /* ← ეს არის bold */
}

a {
    text-decoration: none;
    color: #fff;
    font-size: 2.4rem;
    padding: 16px 36px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 12px;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

a:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.75);
}

.mate a:hover {
    color: rgb(55, 165, 255);
}

.tekla a:hover {
    color: rgb(204, 159, 255);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.progress {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
    animation: fadeIn 1.2s ease;
}
