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

body {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.verification-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.verification-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.logo-svg {
    width: 40px;
    height: 40px;
    animation: logoGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 8px rgba(255, 71, 87, 0.6));
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 5px rgba(255, 71, 87, 0.4));
    }
    to {
        filter: drop-shadow(0 0 12px rgba(255, 71, 87, 0.8));
    }
}

.verification-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.verification-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.5;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn:hover:before {
    left: 100%;
}

.btn-no {
    background: rgba(255, 71, 87, 0.1);
    border: 2px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

.btn-no:hover {
    background: rgba(255, 71, 87, 0.2);
    border-color: #ff4757;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.2);
}

.btn-yes {
    background: rgba(46, 213, 115, 0.1);
    border: 2px solid rgba(46, 213, 115, 0.3);
    color: #2ed573;
}

.btn-yes:hover {
    background: rgba(46, 213, 115, 0.2);
    border-color: #2ed573;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 213, 115, 0.2);
}

.btn:active {
    transform: translateY(0);
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .verification-card {
        padding: 30px 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .verification-content h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .verification-container {
        padding: 15px;
    }
    
    .verification-card {
        padding: 25px 15px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .verification-content h2 {
        font-size: 1.3rem;
    }
}
