:root {
    --primary-clr: #00f2ff;
    --accent-clr: #7000ff;
    --bg-dark: #0b0e1a;
    --card-bg: #161b33;
}
body { background: var(--bg-dark); color: #fff; font-family: system-ui, -apple-system, sans-serif; margin: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; }
.main-wrapper { display: flex; gap: 20px; width: 95%; max-width: 1100px; height: 620px; }
.left-panel { flex: 1.8; background: var(--card-bg); border: 1px solid rgba(0,242,255,0.3); border-radius: 20px; padding: 30px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
.right-panel { flex: 1.2; background: var(--card-bg); border-radius: 20px; border: 1px solid rgba(112,0,255,0.2); display: flex; flex-direction: column; overflow: hidden; }
.loader-ring { width: 80px; height: 80px; border-radius: 50%; border: 4px solid rgba(255,255,255,0.1); border-top: 4px solid var(--primary-clr); animation: spin 1s linear infinite; margin-bottom: 20px; }
.status-title { color: var(--primary-clr); font-size: 24px; margin-bottom: 10px; font-weight: bold; }
.status-sub { color: #8b92b7; font-size: 14px; margin-bottom: 30px; text-align: center; }
.progress-bar { width: 100%; height: 6px; background: #222; border-radius: 3px; overflow: hidden; }
.progress-fill { width: 0%; height: 100%; background: linear-gradient(90deg, var(--accent-clr), var(--primary-clr)); transition: width 0.5s; }
.site-ranking { display: flex; align-items: center; padding: 12px 15px; border-bottom: 1px solid rgba(255,255,255,0.05); text-decoration: none; color: #ccd0e0; font-size: 13px; }
.rank { width: 25px; font-weight: bold; color: #555; }
.icon img { width: 20px; height: 20px; margin: 0 10px; border-radius: 4px; vertical-align: middle; }
.name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.view { margin-left: 10px; color: #444; font-size: 11px; }

@media screen and (max-width: 768px) {
    body { overflow-y: auto; align-items: flex-start; padding: 20px 0; }
    .main-wrapper { flex-direction: column; height: auto; }
    .left-panel { padding: 40px 20px; flex: none; }
    .right-panel { height: 500px; flex: none; }
}
@keyframes spin { 100% { transform: rotate(360deg); } }