button.undefined.s-button-element.s-button-btn.s-button-outline.s-button-wide.s-button-primary-outline.s-button-loader-center {
    background: linear-gradient(145deg, #FFC107, #FFC107);
    color: #2B2B2B; /* Text Color Switcher */
    border: none;
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    white-space: normal; /* allow text to wrap */
    word-break: break-word;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 6px 20px rgba(255, 193, 7, 0.3),
        inset 0 -3px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    transform: translateY(0);
    text-align: center;
}

/* Hover */
button.undefined.s-button-element.s-button-btn.s-button-outline.s-button-wide.s-button-primary-outline.s-button-loader-center:hover {
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(255, 193, 7, 0.35),
        inset 0 -2px 0 rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Active */
button.undefined.s-button-element.s-button-btn.s-button-outline.s-button-wide.s-button-primary-outline.s-button-loader-center:active {
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
}

/* Extra mobile tweak */
@media (max-width: 480px) {
    button.undefined.s-button-element.s-button-btn.s-button-outline.s-button-wide.s-button-primary-outline.s-button-loader-center {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Fullscreen Intro Overlay */
#intro-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.6); /* Transparent white */
    backdrop-filter: blur(10px); /* Glass effect */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

/* Logo Styling */
#intro-screen img {
    width: 120px;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

/* Show Logo with Glow */
#intro-screen.show-logo img {
    opacity: 1;
    transform: scale(1);
    animation: pulseGlow 2s infinite alternate;
    filter: dr op-shadow(0 0 10px #FFC107) drop-shadow(0 0 20px #FFC107);
}

/* Glow Animation */
@keyframes pulseGlow {
    from {
        filter: drop-shadow(0 0 8px #FFC107) drop-shadow(0 0 16px #FFC107);
    }
    to {
        filter: drop-shadow(0 0 16px #FFC107) drop-shadow(0 0 32px #FFC107);
    }
}

/* Hide Screen After Load */
#intro-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Trust Badge Styling */
#trust-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #333;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.8s ease;
    direction: rtl;
    text-align: right;
}

#trust-badge img {
    width: 28px;
    height: auto;
    opacity: 0.8;
}

/* Show Trust Badge */
#intro-screen.show-logo #trust-badge {
    opacity: 1;
    transform: translateY(0);
}

#trust-badge {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: #333;
}

#trust-badge img {
    width: 24px;
    height: auto;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    #trust-badge {
        font-size: 0.6rem;
        gap: 0.4rem;
        bottom: 1rem;
        right: 1rem;
    }

    #trust-badge img {
        width: 20px;
    }
}

@media (max-width: 600px) {
  div[style*="position: fixed"][style*="top: 100px"] {
    left: 5px !important;
    right: 5px !important;
    top: 70px !important;
    padding: 8px 10px !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    text-align: center !important;
    animation: moveLeftRightSmall 1.2s infinite alternate;
  }
}

/* تحريك أخف للجوال */
@keyframes moveLeftRightSmall {
  0% { transform: translateX(0); }
  100% { transform: translateX(6px); }
}