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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1a1a1a;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* .top-right removed */

.container {
    max-width: 500px;
    width: 100%;
}

.status-card {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #3a3a3a;
    background: #3a3a3a;
}

.profile-link {
    text-decoration: none;
    display: block;
    margin-bottom: 25px;
}

.profile-link:hover h1 {
    color: #66c0f4;
}

h1 {
    font-size: 2em;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.3s;
}

.status-text {
    font-size: 1.5em;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 8px;
    transition: all 0.3s;
}

.status-text.online {
    background: #2ecc71;
    color: #ffffff;
}

.status-text.offline {
    background: #e74c3c;
    color: #ffffff;
}

.bottom-bar {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    z-index: 100;
}

.made-by {
    color: #ffffff;
    font-size: 0.95em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
}

.test-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 600;
    transition: all 0.2s;
    position: absolute;
    left: 40px;
    
    /* Button Style */
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.test-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.test-link:hover {
    color: #ffffff;
}

@media (max-width: 600px) {
    .status-card {
        padding: 30px 20px;
    }
    
    .avatar {
        width: 120px;
        height: 120px;
    }
    
    h1 {
        font-size: 1.5em;
    }
    
    .status-text {
        font-size: 1.2em;
    }
    
    .bottom-bar {
        flex-direction: column;
        gap: 10px;
    }
}
