/*
============================================================
    AR SOCIAL LINKS TRACKER - STYLES
    Organized and extracted from inline styles
============================================================
*/

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    background: #000;
}

/* Loading Screen */
#loading {
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    z-index: 999;
    gap: 20px;
}

#loading.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: #00ff88;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

#loading p {
    font-size: 14px;
    opacity: 0.7;
    letter-spacing: 1px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Status Bar */
#status {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    color: #888;
    padding: 10px 20px;
    border-radius: 20px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 11px;
    z-index: 100;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

#status.tracking {
    color: #00ff88;
    border-color: rgba(0,255,136,0.3);
    box-shadow: 0 0 20px rgba(0,255,136,0.1);
}

#status.locked {
    color: #ffaa00;
    border-color: rgba(255,170,0,0.3);
    box-shadow: 0 0 20px rgba(255,170,0,0.1);
}

/* Scan Hint Overlay */
#scan-hint {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: rgba(255,255,255,0.6);
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    z-index: 100;
    transition: opacity 0.5s ease;
    text-align: center;
}

#scan-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

#scan-hint .icon {
    font-size: 18px;
    margin-bottom: 4px;
    display: block;
}
