body { 
    background: #000; 
    color: #fff; 
    font-family: sans-serif; 
    margin: 0; 
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recovery-container {
    max-width: 500px;
    width: 100%;
    padding: 2rem;
    background: #111;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
}

.recovery-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.recovery-subtitle {
    font-size: 1rem;
    color: #888;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.2s;
    margin-bottom: 2rem;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-1px);
}

.discord-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.divider {
    margin: 2rem 0;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

.home-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s;
}

.home-link:hover {
    background: #555;
}

.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-align: left;
}

.alert-error {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid #e74c3c;
    color: #ff6b6b;
}

.help-text {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 2rem;
}

.disabled-message {
    background: rgba(136, 136, 136, 0.2);
    border: 1px solid #666;
    color: #aaa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}