/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styling body and html */
body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
}

/* Container for centering the warning box */
.warning-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #1e90ff, #87ceeb); /* Cool blue gradient */
    background-size: cover;
    overflow: hidden;
}

/* Warning Box Styling */
.warning-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);  /* Translucent white */
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Softer shadow */
    backdrop-filter: blur(8px);  /* Glass effect */
    animation: fadeIn 1s ease-out;
    max-width: 600px;
    width: 90%; /* Reduce width on small screens */
}

/* Warning Icon */
.warning-icon {
    width: 120px;
}

/* Title Styling */
.warning-title {
    font-size: 36px;
    font-weight: bold;
    color: #0699d4;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Message Styling */
.warning-message {
    font-size: 20px;
    color: #333; /* Darker text for readability */
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 1.6;
}

/* Button Styling */
.proceed-btn {
    background: linear-gradient(135deg, #1e90ff, #00bfff);  /* Cool blue gradient */
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Button Hover Effect */
.proceed-btn:hover {
    background: linear-gradient(135deg, #00bfff, #87cefa); /* Lighter blue */
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Animations */

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design: Mobile Adjustments */
@media (max-width: 600px) {
    .warning-box {
        padding: 30px 20px;
    }

    .warning-icon {
        width: 90px;
    }

    .warning-title {
        font-size: 24px;
    }

    .warning-message {
        font-size: 16px;
    }

    .proceed-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}
