* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, sans-serif;
}

.container,
.main-container {
    width: 100%;
    height: 100vh;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.2s ease;
}

/* ===== BACKGROUNDS (PLACEHOLDERS) ===== */
.mate-ara {
    background: url('../images/mate_ara.png') center / cover no-repeat;
}

.tekla-ara {
    background: url('../images/tekla_ara.jpg') center / cover no-repeat;
}

/* ===== TEXT ===== */
h1 {
    color: #fff;
    font-size: 2.6rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    padding: 26px 44px;
    border-radius: 18px;
    animation: pulse 2s infinite;
}

/* ===== BUTTONS ===== */
.result-nav {
    margin-top: 50px;
    display: flex;
    gap: 40px;
}

.result-nav a {
    color: #fff;
    font-size: 1.2rem;
    padding: 14px 32px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.4);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.result-nav a:hover {
    transform: scale(1.08);
    box-shadow: 0 0 16px rgba(255,255,255,0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
