@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;800&family=Poppins:wght@300;400;600;700&display=swap');

body {
    background: linear-gradient(135deg, #faf8f6 0%, #f5f1ed 100%);
    color: #333;
    font-family: 'Poppins', system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.warning-box {
    background: rgba(255, 255, 255, 0.98);
    padding: 60px 45px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.12);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 20, 147, 0.15);
    max-width: 520px;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.warning-box h1 {
    font-size: 48px;
    margin: 0 0 15px 0;
    color: #ff1493;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.warning-box h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 28px;
    color: #ff69b4;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.warning-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 300;
}

.continue-btn {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    color: white;
    padding: 15px 45px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.2);
    border: none;
    cursor: pointer;
}

.continue-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.3);
    background: linear-gradient(135deg, #ff1493 0%, #e91e63 100%);
}

.continue-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .warning-box {
        padding: 40px 25px;
        margin: 20px;
    }
    
    .warning-box h1 {
        font-size: 36px;
    }
    
    .warning-box h2 {
        font-size: 22px;
    }
    
    .continue-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}
