body {
    background-color: #000000;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.alert-container {
    background: #000000;
    border: 2px solid #ffffff;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.android-icon {
    width: 100px;
    height: 100px;
    margin: 20px auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.alert-title {
    color: #ff0000;
    font-size: 24px;
    margin: 20px 0;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.alert-text {
    color: #ff0000;
    font-size: 16px;
    margin: 15px 0;
    line-height: 1.5;
}

.audit-notice {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8em;
}

#logCapture {
    display: none;
}
