/* Security & Privacy Mobile Warning Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #333;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}

.security-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #f5f5f5;
    min-height: 100vh;
}

/* Header Section */
.header-section {
    background-color: white;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.android-icon {
    margin-bottom: 15px;
}

.android-icon-img {
    font-size: 48px;
    color: #4caf50;
}

.header-title {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin: 0;
}

/* Risk Warning Section */
.risk-warning {
    display: flex;
    align-items: center;
    padding: 25px 20px;
    background-color: #fff3cd;
    border-bottom: 1px solid #e0e0e0;
}

.warning-icon {
    margin-right: 20px;
}

.alert-badge {
    width: 40px;
    height: 40px;
    background-color: #ff6b6b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.warning-content {
    flex: 1;
}

.warning-title {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin: 0 0 6px 0;
}

.alert-count {
    font-size: 16px;
    color: #666;
}

/* Install Protection Section */
.install-section {
    padding: 25px 20px;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

.install-title {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.install-description {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

.button-section {
    margin-bottom: 20px;
}

.protect-android-btn {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.protect-android-btn:hover {
    background-color: #ff5252;
    transform: translateY(-1px);
}

.protect-android-btn:active {
    background-color: #e53935;
    transform: translateY(0);
}

.protection-text {
    text-align: center;
    font-size: 16px;
    color: #666;
}

.protection-badge {
    margin-right: 8px;
    font-size: 18px;
    color: #4caf50;
}

/* Device Check Section */
.device-check-section {
    padding: 25px 20px;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

.device-check-title {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.status-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.status-item:last-child {
    margin-bottom: 0;
}

.status-icon {
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.status-warning {
    color: #ff6b6b;
}

.status-success {
    color: #4caf50;
}

.status-content {
    flex: 1;
}

.status-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.status-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Turn on Protection Section */
.turn-on-section {
    padding: 30px 20px;
    background-color: white;
    text-align: center;
}

.protection-icon {
    margin-bottom: 20px;
}

.chat-bubble {
    font-size: 48px;
    color: #17a2b8;
    display: inline-block;
}

.turn-on-title {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.turn-on-description {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
    text-align: left;
}

.protect-device-btn {
    background-color: transparent;
    color: #17a2b8;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.protect-device-btn:hover {
    background-color: rgba(23, 162, 184, 0.1);
    transform: translateY(-1px);
}

.protect-device-btn:active {
    background-color: rgba(23, 162, 184, 0.2);
    transform: translateY(0);
}

/* 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%;
    border: 1px solid #e0e0e0;
}

.popup-icon {
    text-align: center;
    margin-bottom: 20px;
}

.popup-icon i {
    font-size: 48px;
    color: #4caf50;
}

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

.popup-subheading {
    text-align: center;
    color: #666;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 25px;
    font-weight: 400;
}

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

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

.popup.form input:focus {
    border-color: #4caf50;
}

.popup.form input::placeholder {
    color: #999;
    font-weight: 400;
}

.popup.form button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.popup.form button:hover {
    background-color: #45a049;
    transform: translateY(-1px);
}

.popup.form button:active {
    background-color: #3e8e41;
    transform: translateY(0);
}

.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: 500px;
    margin: 0 auto;
    background-color: #f5f5f5;
    min-height: 100vh;
}

.thank-you-content {
    padding: 50px 20px;
    text-align: center;
    background-color: white;
    margin: 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 25px;
}

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

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

.features-list {
    text-align: left;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-item::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4caf50;
    font-size: 16px;
}

.security-note {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 4px;
    border-left: 4px solid #4caf50;
    max-width: 500px;
    margin: 0 auto;
}

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

#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) {
    .header-section {
        padding: 25px 15px;
    }

    .install-section,
    .device-check-section,
    .turn-on-section {
        padding: 20px 15px;
    }

    .risk-warning {
        padding: 20px 15px;
    }

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

    .popup-icon i {
        font-size: 42px;
    }

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

    .popup-subheading {
        font-size: 15px;
    }

    .thank-you-content {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 20px;
    }

    .android-icon-img {
        font-size: 40px;
    }

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

    .install-title,
    .turn-on-title {
        font-size: 20px;
    }

    .device-check-title {
        font-size: 18px;
    }

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

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

    .popup.form {
        width: 98%;
        padding: 20px;
    }

    .popup-icon i {
        font-size: 38px;
    }

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

    .popup-subheading {
        font-size: 14px;
    }

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

    .popup.form button {
        font-size: 16px;
        padding: 14px 28px;
    }
}

