/* Google-style Virus Warning Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.4;
    padding: 20px;
}

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

/* Google Logo */
.google-logo {
    text-align: center;
    margin-bottom: 40px;
}

.google-logo-img {
    height: 80px;
    width: auto;
    max-width: 300px;
}

/* Warning Content */
.warning-content {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.warning-title {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.warning-details {
    margin-bottom: 30px;
}

.warning-text {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
}

.damage-text {
    color: #d93025;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 30px;
}

.countdown-title {
    margin-bottom: 15px;
}

.countdown-time {
    font-size: 18px;
    font-weight: 500;
    color: #d93025;
}

.countdown-minutes {
    font-size: 18px;
    font-weight: 500;
    color: #d93025;
}

.countdown-warning {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

/* Steps Section */
.steps-section {
    margin-bottom: 30px;
}

.step-item {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #333;
    border-radius: 50%;
}

/* Button Section */
.button-section {
    text-align: center;
    margin-top: 40px;
}

.repair-btn {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.repair-btn:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 133, 244, 0.4);
}

.repair-btn:active {
    background-color: #2a56c6;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

/* Popup Form Styles */
.popup.form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
}

.popup.form h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
}

.popup.form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup.form input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.popup.form input:focus {
    border-color: #4285f4;
}

.popup.form button {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup.form button:hover {
    background-color: #3367d6;
}

.over {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Thank You Page Styles */
.thank-you-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.thank-you-container .google-logo {
    margin-bottom: 50px;
}

.thank-you-content {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.success-icon {
    font-size: 48px;
    color: #34a853;
    margin-bottom: 20px;
}

.thank-you-title {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.features-list {
    text-align: left;
    margin-bottom: 30px;
}

.feature-item {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #34a853;
    font-weight: bold;
}

.security-note {
    background-color: #e8f0fe;
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid #4285f4;
    margin-top: 20px;
}

.security-note p {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

#popupboxbody_msg {
    text-align: center;
    font-size: 19px;
}
#popupboxbody_msg .c_msg span {
    font-size: 27px;
    display: inline-block;
    font-weight: bold;
    color: red;
    margin-top: 5px;
    margin-bottom: 5px;
}
.loading_img {
    width: 100%;
    text-align: center;
    display: inline-block;
}
.loading_img img {
    width: 70px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .google-logo-img {
        height: 60px;
    }

    .warning-title {
        font-size: 20px;
    }

    .warning-container {
        padding: 20px 10px;
    }

    .thank-you-content {
        padding: 30px 20px;
    }

    .thank-you-title {
        font-size: 24px;
    }

    .repair-btn {
        padding: 16px 32px;
        font-size: 18px;
        min-width: 180px;
    }

    .popup.form {
        padding: 20px;
    }

    .popup.form h1 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .google-logo-img {
        height: 45px;
    }

    .warning-title {
        font-size: 18px;
    }

    .repair-btn {
        padding: 14px 28px;
        font-size: 16px;
        min-width: 160px;
    }

    .thank-you-title {
        font-size: 20px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .popup.form {
        padding: 15px;
        width: 95%;
    }

    .popup.form h1 {
        font-size: 18px;
    }

    .popup.form input {
        padding: 10px;
        font-size: 14px;
    }
}

