 
.slide-1 {
    background: #050608;  
    background-image: radial-gradient(circle at 50% 0%, #161205 0%, #050608 70%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

 
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    z-index: 0;
    animation: floatAmbient 8s infinite alternate ease-in-out;
    pointer-events: none;
}

.glow-1 {
    top: -15%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: rgba(201,168,76,0.2);
}

.glow-2 {
    bottom: -15%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: rgba(14,165,233,0.1);
    animation-delay: -4s;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 950px;
    width: 100%;
}

 .brand-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, rgba(201,168,76,0.3) 0%, rgba(201,168,76,0.05) 100%);
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    animation: floatBrandIcon 4s infinite ease-in-out;
}

.icon-scale {
    font-size: 2.8rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

 .hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

    .hero-title .white {
        color: #ffffff;
        text-shadow: 0 4px 25px rgba(255,255,255,0.15);
    }
     .hero-title .gold-gradient {
        background: linear-gradient(to left, #e2c06a, #c9a84c, #e2c06a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% auto;
        animation: shineGold 5s linear infinite;
    }

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.75);
    max-width: 750px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 28px;
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

    .hero-badge .star {
        color: var(--gold);
        font-size: 1.2rem;
    }

 .scroll-indicator {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 13px;
    position: relative;
}

    .mouse::before {
        content: '';
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 8px;
        background: var(--gold);
        border-radius: 2px;
        animation: scrollWheel 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
    }

/* الحركات (Keyframes) */
@keyframes floatAmbient {
    0% {
        transform: translateY(0px) scale(1);
    }

    100% {
        transform: translateY(-40px) scale(1.05);
    }
}

@keyframes floatBrandIcon {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
        box-shadow: 0 25px 45px rgba(0,0,0,0.6), inset 0 0 20px rgba(255,255,255,0.05);
    }
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

@keyframes shineGold {
    to {
        background-position: 200% center;
    }
}

/* التجاوب مع الشاشات الصغيرة (Responsive) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
}
