/* ============================================
   REGISTER MODAL
   ============================================ */
.register-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.register-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.register-modal-content h2 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.register-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.register-modal-close:hover {
    color: #d4af37;
    transform: rotate(90deg);
}

.register-modal-body {
    color: #e0e0e0;
}

.register-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
}

.register-step:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4af37, #f1d77e);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.step-content h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    line-height: 1.6;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.step-content ul {
    margin-left: 20px;
    line-height: 1.8;
}

.step-content ul li {
    margin-bottom: 8px;
    color: #e0e0e0;
}

.step-content strong {
    color: #f1d77e;
    font-weight: 600;
}

.register-note {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    color: #f1d77e;
    line-height: 1.6;
}

.register-note strong {
    color: #d4af37;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .register-modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .register-modal-content h2 {
        font-size: 1.5rem;
    }
    
    .register-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .register-modal-content {
        padding: 25px 15px;
    }
    
    .register-modal-content h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
}
