﻿/*main warning page css start*/
.company-name {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff; /* Bright white */
    text-align: center;
    margin-bottom: 16px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5); /* Soft glow */
    letter-spacing: 1px;
}

.restricted-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.restricted-container {
    width: 90%;
    max-width: 500px;
    background: linear-gradient(135deg, #000000 0%, #300 100%);
    border: 2px solid #ff3333;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

.warning-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.warning-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #ff5555;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.restricted-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(to right, #f5a742, #ff5555);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.restricted-subtitle {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(to right, #f5a742, #ff5555);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.restricted-message {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.highlight-date {
    font-weight: bold;
    color: #ff6666;
}

.restricted-button {
    background: linear-gradient(to right, #f5a742, #ff5555);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

    .restricted-button:hover {
        background: linear-gradient(to right, #ff5555, #f5a742);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(255, 85, 85, 0.4);
    }

/* Responsive adjustments */
@media (max-width: 640px) {
    .restricted-container {
        padding: 20px 15px;
    }

    .restricted-title {
        font-size: 24px;
    }

    .restricted-subtitle {
        font-size: 18px;
    }

    .restricted-message {
        font-size: 14px;
    }
}

/*main warning page css end*/

/*about dev page warning css start*/
.parent-body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.about-dev-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    text-align: center;
}

    .about-dev-container h1 {
        margin-bottom: 20px;
        font-size: 32px;
        font-weight: 600;
    }

    .about-dev-container p {
        font-size: 16px;
        margin: 10px 0;
        line-height: 1.6;
    }

    .about-dev-container ul {
        list-style: none;
        padding: 0;
        margin: 20px 0;
        text-align: left;
    }

        .about-dev-container ul li {
            margin: 12px 0;
            font-size: 16px;
            padding-left: 12px;
            display: flex;
            align-items: center;
        }

            .about-dev-container ul li i {
                margin-right: 10px;
                color: #00d2ff;
                min-width: 20px;
            }

a {
    color: #00d2ff;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

@media (max-width: 500px) {
    .about-dev-container {
        padding: 20px;
    }

        .about-dev-container h1 {
            font-size: 24px;
        }
}


/*about dev page css start*/