.home-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    padding: 60px 20px 20px 20px;
    background: linear-gradient(135deg, #0D0D0D 0%, #1a0f2e 50%, #2d0a4a 100%);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.home-container::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.home-box {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 520px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out;
    text-align: center;
    margin-top: 40px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-box h1 {
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.home-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.home-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-button {
    padding: 16px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(74, 222, 128, 0.2);
    text-decoration: none;
    display: block;
}

.home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(74, 222, 128, 0.3);
}

.home-button:active {
    transform: translateY(0);
}

.home-button.secondary {
    background: rgba(139, 92, 246, 0.3);
    color: #8B5CF6;
    border: 1px solid rgba(139, 92, 246, 0.5);
}

.home-button.secondary:hover {
    background: rgba(139, 92, 246, 0.5);
}
