/**
 * Mobile Account Buttons - Modern Design
 * 
 * Improved account buttons for mobile navbar with gold accents
 * and dark grey semi-transparent styling
 */

/* Mobile action group for account buttons */
.navbar__mobile-action-group--account {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .navbar__mobile-action-group--account,
.dark-mode .navbar__mobile-action-group--account {
    background: rgba(31, 41, 55, 0.3);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* Compact action group (minimal spacing) */
.navbar__mobile-action-group--compact {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}

/* Account button base styles */
.navbar__mobile-account-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid;
    position: relative;
    overflow: hidden;
}

/* Sign In button - Secondary style */
.navbar__mobile-account-btn--signin {
    background: transparent;
    color: #1f2937;
    border-color: rgba(31, 41, 55, 0.2);
}

.navbar__mobile-account-btn--signin:hover {
    background: rgba(31, 41, 55, 0.05);
    border-color: rgba(31, 41, 55, 0.3);
}

[data-theme="dark"] .navbar__mobile-account-btn--signin,
.dark-mode .navbar__mobile-account-btn--signin {
    color: #f9fafb;
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .navbar__mobile-account-btn--signin:hover,
.dark-mode .navbar__mobile-account-btn--signin:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Register button - Gold primary style */
.navbar__mobile-account-btn--register {
    background: linear-gradient(135deg, #d4af37 0%, #b49225 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.navbar__mobile-account-btn--register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.navbar__mobile-account-btn--register:hover {
    background: linear-gradient(135deg, #e5c85a 0%, #d4af37 100%);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.navbar__mobile-account-btn--register:hover::before {
    left: 100%;
}

[data-theme="dark"] .navbar__mobile-account-btn--register,
.dark-mode .navbar__mobile-account-btn--register {
    background: linear-gradient(135deg, #d4af37 0%, #b49225 100%);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

[data-theme="dark"] .navbar__mobile-account-btn--register:hover,
.dark-mode .navbar__mobile-account-btn--register:hover {
    background: linear-gradient(135deg, #e5c85a 0%, #d4af37 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

/* Icon inside buttons */
.navbar__mobile-account-btn i {
    font-size: 1rem;
}

/* Compact layout for buttons */
.navbar__mobile-action-group--compact .navbar__mobile-account-btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.8125rem;
}

/* Account section title */
.navbar__mobile-section-title--account {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(31, 41, 55, 0.6);
    margin-bottom: 12px;
}

[data-theme="dark"] .navbar__mobile-section-title--account,
.dark-mode .navbar__mobile-section-title--account {
    color: rgba(255, 255, 255, 0.5);
}

.navbar__mobile-section-title--account i {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 360px) {
    .navbar__mobile-account-btn {
        padding: 10px 16px;
        font-size: 0.8125rem;
    }
    
    .navbar__mobile-action-group--compact {
        gap: 6px;
    }
}

