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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    padding: 20px 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeDown 0.8s ease;
}

.header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    background: linear-gradient(to right, #764ba2, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.warning-icon {
    color: #ff4b2b;
    font-size: 64px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
    animation: fadeUp 0.8s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.warning-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.warning-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.warning-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.warning-section h2 i {
    color: #764ba2;
    margin-right: 12px;
    font-size: 1.5rem;
}

.warning-section p {
    margin-bottom: 15px;
    color: #555;
}

.warning-section p:last-child {
    margin-bottom: 0;
}

.warning-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
    list-style-type: none;
}

.warning-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.warning-section ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #667eea;
    position: absolute;
    left: 0;
    top: 2px;
}

.buttons {
    text-align: center;
    margin-top: 40px;
    animation: fadeUp 1s ease;
}

.accept-button {
    display: inline-block;
    background: linear-gradient(to right, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(118, 75, 162, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.accept-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(118, 75, 162, 0.4);
}

.accept-button:hover:before {
    left: 100%;
}

.accept-button i {
    margin-right: 8px;
}

.footer {
    text-align: center;
    margin-top: 40px;
    color: #777;
    font-size: 0.9rem;
    animation: fadeUp 1.2s ease;
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .card {
        padding: 30px 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .warning-section h2 {
        font-size: 1.5rem;
    }
    
    .accept-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
