* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
  font-family: 'Autologo';
  src: url('../fonts/autologo.otf') format('opentype');
}

@font-face {
    font-family: 'AncizarSerif';
    src: url('../fonts/ancizarserif.otf') format('opentype');
}

body {
    margin: 0;
    font-family: 'AncizarSerif', 'Comic Sans MS', cursive, sans-serif;
    background: #fff5e6;
    color: #5c3a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: 
        repeating-radial-gradient(
            circle at center,
            rgba(255, 216, 168, 0.15) 0px,
            rgba(255, 216, 168, 0.15) 10px,
            transparent 10px,
            transparent 20px
        );
    background-size: 40px 40px;
    box-shadow: inset 0 0 30px rgba(122, 62, 6, 0.1);
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(255, 223, 186, 0.7), rgba(255, 240, 221, 0.7)), 
        url(../images/other/leaves.png);
    z-index: -1;
}

.verification-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 10;
}

.verification-card {
    background: linear-gradient(145deg, #fff0db, #ffe9cc);
    border: 3px solid #d4a574;
    border-radius: 18px;
    box-shadow: 8px 8px 0px rgba(122, 62, 6, 0.3), 
                0 0 40px rgba(212, 165, 116, 0.5);
    padding: 50px;
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.verification-icon {
    font-size: 4rem;
    color: #7a3e06;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px #ffd8a8;
}

.verification-title {
    font-size: 2.5rem;
    color: #7a3e06;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px #ffd8a8;
    letter-spacing: 1px;
}

.verification-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 40px;
    padding: 0 20px;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.age-button {
    padding: 16px 35px;
    border-radius: 12px;
    border: 2px solid #d4a574;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.age-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 216, 168, 0.5), transparent);
    transition: all 0.6s;
    z-index: -1;
}

.age-button:hover::before {
    left: 100%;
}

.confirm-btn {
    background: linear-gradient(145deg, #ffe4c4, #ffd8a8);
    color: #7a3e06;
}

.confirm-btn:hover {
    background: linear-gradient(145deg, #ffd8a8, #ffe4c4);
    transform: translateY(-5px);
    box-shadow: 4px 4px 0 #d4a574;
}

.decline-btn {
    background: linear-gradient(145deg, #fff0db, #ffe9cc);
    color: #7a3e06;
}

.decline-btn:hover {
    background: linear-gradient(145deg, #ffe9cc, #fff0db);
    transform: translateY(-5px);
    box-shadow: 4px 4px 0 #d4a574;
}

/* ===== FOOTER ===== */
.verification-footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #7a3e06;
    opacity: 0.8;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verification-card {
    animation: fadeIn 0.8s ease-out;
}

@media (max-width: 768px) {
    .verification-card {
        padding: 30px;
    }
    
    .verification-title {
        font-size: 2rem;
    }
    
    .verification-text {
        font-size: 1.1rem;
    }
    
    .button-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .age-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .verification-card {
        padding: 25px 15px;
    }
    
    .verification-title {
        font-size: 1.8rem;
    }
}