* {
    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/WIN_20250503_23_43_37_Pro-N-7_voliXMeTXT.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeIn 1.2s ease;
}

h1 {
    color: #fff;
    font-size: 2.6rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    padding: 24px 40px;
    border-radius: 16px;
    animation: pulse 2s infinite;


}

/* buttons at bottom */
.result-nav {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 40px;
}

.result-nav a {
    color: #fff;
    font-size: 1.2rem;
    padding: 14px 30px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.4);
    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);
}

.nav {
    position: absolute;
    top: 20px;
    left: 20px;
}

.nav-btn {
    color: #fff;
    font-size: 1rem;
    padding: 10px 18px;
    background: rgba(0,0,0,0.6);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.4);
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
@keyframes resultPop {
    0% {
        transform: scale(0.9) rotate(0deg);
        box-shadow: 0 0 0 rgba(255,255,255,0);
    }
    40% {
        transform: scale(1.05) rotate(-1deg);
        box-shadow: 0 0 20px rgba(255,255,255,0.6);
    }
    70% {
        transform: scale(0.98) rotate(1deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 rgba(255,255,255,0);
    }
}
