body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    animation: fadeIn 1.5s ease-in-out;
}

.icon {
    font-size: 60px;
    color: #f1c40f;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

p {
    margin: 10px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.highlight {
    color: #f39c12;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1rem;
    color: #fff;
    background-color: #e74c3c;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
    box-shadow: 0 6px 15px rgba(231, 76, 60, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}