body { margin: 0; background: #010101; color: white; font-family: 'Helvetica', sans-serif; height: 100vh; display: flex; align-items: center; justify-content: center; }
#lock-screen { position: fixed; inset: 0; background: #000; display: flex; align-items: center; justify-content: center; z-index: 999; }
.glass-card { background: #111; padding: 40px; border: 1px solid #fe2c55; border-radius: 20px; text-align: center; max-width: 350px; box-shadow: 0 0 20px rgba(254, 44, 85, 0.2); }
#main-content { display: none; text-align: center; }
.bot-container { background: #111; padding: 50px; border-radius: 20px; border: 1px solid #333; }
input { padding: 15px; width: 280px; border-radius: 8px; border: 1px solid #444; background: #222; color: white; margin-bottom: 15px; }
.btn { background: #fe2c55; color: white; border: none; padding: 12px 25px; border-radius: 8px; cursor: pointer; font-weight: bold; font-size: 16px; }
.btn:hover { background: #ef2950; }
/* Spinner Animation */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(254, 44, 85, 0.2);
    border-top: 4px solid #fe2c55;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Progress Bar */
.progress-container {
    width: 100%;
    background-color: #222;
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}

#progress-bar {
    width: 0%;
    height: 8px;
    background: linear-gradient(90deg, #fe2c55, #25f4ee);
    transition: width 0.4s ease;
}

#loading-text {
    font-size: 14px;
    color: #ccc;
    font-style: italic;
}
.secure-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.shield-icon {
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(0.95); }
}

.status-box {
    background: #252525;
    padding: 10px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: #aaa;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fe2c55;
    box-shadow: 0 0 10px #fe2c55;
}

.footer-note {
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 10px;
    opacity: 0.5;
}
/* The Main Verification Button */
.btn-verify {
    width: 100%;
    background: #fe2c55; /* TikTok Red */
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 44, 85, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Suble Glow/Hover Effect */
.btn-verify:hover {
    background: #ef2950;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 44, 85, 0.5);
}

.btn-verify:active {
    transform: translateY(0);
}

/* The Shimmer Effect (A light sweep across the button) */
.btn-verify::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: none;
}

.btn-verify:hover::after {
    left: 120%;
    transition: all 0.6s ease;
}

.btn-verify:disabled {
    background: #444;
    cursor: not-allowed;
    box-shadow: none;
}
/* Scanline / Grid Effect Background */
.tech-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 255, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 1;
}

/* Neon Top Line */
.neon-line {
    width: 100%;
    height: 2px;
    background: #fe2c55;
    box-shadow: 0 0 15px #fe2c55;
    margin-bottom: 20px;
}

/* Glowing Input Wrapper */
.input-wrapper {
    position: relative;
    display: inline-block;
}

.input-glow {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(37, 244, 238, 0.3);
    pointer-events: none;
}

/* Live Activity Feed Styling */
.live-feed {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    text-align: left;
}

.feed-header {
    color: #666;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #4CAF50;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.feed-item {
    color: #25f4ee;
    margin: 3px 0;
    animation: slideIn 0.3s ease-out;
}
/* Scanline/Grid Background */
.tech-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                linear-gradient(90deg, rgba(254, 44, 85, 0.05), rgba(37, 244, 238, 0.02));
    background-size: 100% 3px, 3px 100%;
    pointer-events: none;
    z-index: -1;
}

/* Container & Title */
.bot-container {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid #333;
    box-shadow: 0 0 30px rgba(0,0,0,1);
    padding: 40px;
    border-radius: 10px;
    position: relative;
}

.tech-title {
    color: #fe2c55;
    text-shadow: 0 0 10px rgba(254, 44, 85, 0.5);
    letter-spacing: 2px;
}

.neon-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: #fe2c55;
    box-shadow: 0 0 15px #fe2c55;
}

/* Live Feed Log */
.live-feed {
    margin-top: 30px;
    background: #000;
    border: 1px dashed #444;
    padding: 10px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    text-align: left;
}

.feed-item { color: #25f4ee; margin-bottom: 2px; }

/* RE-ADDING YOUR OLD LOADING BAR STYLES */
.spinner {
    width: 40px; height: 40px;
    border: 4px solid rgba(254, 44, 85, 0.2);
    border-top: 4px solid #fe2c55;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

.progress-container { width: 100%; background: #222; border-radius: 10px; overflow: hidden; }
#progress-bar { width: 0%; height: 8px; background: #fe2c55; transition: width 0.4s ease; }
@keyframes blink { 50% { opacity: 0; } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
.progress-container {
    width: 100%;
    background: #222;
    border-radius: 6px;
    margin-top: 10px;
}

#progress-bar {
    width: 0%;
    height: 10px;
    background: #25f4ee;
    border-radius: 6px;
    transition: width 0.8s ease;
}
