@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&display=swap');

:root {
    --primary: #ff8c00;
    --primary-dark: #e67e00;
    --secondary: #222;
    --text-light: #f4f4f4;
    --text-muted: #bbb;
    --bg-dark: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #111;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Header & Logo */
header {
    padding: 20px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo img {
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.3));
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 10%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 140, 0, 0.15) 0%, transparent 50%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to left, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 80px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 140, 0, 0.05);
    border-color: var(--primary);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Instructions Section */
.instructions {
    padding: 80px 10%;
    background-color: #0f0f0f;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    position: relative;
    padding: 30px;
    background: var(--glass);
    border-radius: 15px;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Video Section */
.video-section {
    padding: 80px 10%;
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 2px solid var(--glass);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Gift Section */
.gift-banner {
    margin: 50px 10%;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff4500 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #000;
}

.gift-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

/* Footer */
footer {
    padding: 50px 10%;
    text-align: center;
    border-top: 1px solid var(--glass);
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    .hero-content {
        margin-bottom: 50px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .gift-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
