body {
    background-color: #0d1117; /* Deep Dark Space */
    color: #c9d1d9;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
    padding-top: 30px;
    padding-bottom: 30px;
}

/* --- THE SHOCK & AWE PROFILE --- */
.profile-container {
    position: relative;
    width: 100px;
    margin: 0 auto 15px;
}

.avatar-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #58a6ff;
    box-shadow: 0 0 25px rgba(88, 166, 255, 0.6);
    display: block;
}

/* --- THE GLOWING LIVE MAGIC --- */
.status-dot {
    position: absolute;
    bottom: 5px;
    right: 0px;
    width: 18px;
    height: 18px;
    background-color: #3fb950; 
    border-radius: 50%;
    border: 3px solid #0d1117;
    box-shadow: 0 0 10px #3fb950;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(63, 185, 80, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(63, 185, 80, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(63, 185, 80, 0); }
}

h1 { font-size: 1.6rem; margin-bottom: 5px; color: #ffffff; }

.status-text {
    font-size: 0.95rem;
    color: #3fb950;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
}

.subtitle { 
    color: #8b949e; 
    margin-bottom: 30px; 
    font-style: italic; 
    font-size: 0.85rem;
}

/* --- THE PORTAL LINKS --- */
.link-btn {
    display: block;
    background-color: #161b22;
    border: 1px solid #30363d;
    color: #58a6ff; 
    padding: 18px;
    margin-bottom: 12px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background-color: #21262d;
    color: #ffffff;
    border-color: #58a6ff;
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(88, 166, 255, 0.3);
}

.cash-link {
    border-color: #238636;
    color: #3fb950; 
}

footer { 
    margin-top: 40px; 
    font-size: 0.8rem; 
    color: #484f58; 
}