
body {
    font-family: 'Shabnam', sans-serif;
    background: #f8f9fa;
    color: #1e293b;
}

.text-gradient {
    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gradient {
    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    padding: 0.8rem 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    max-width: 240px;

}
.btn-gradient:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
    color: #fff;
}

.badge-custom {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.telegram-text {
    color: #229ED9;
}
.bale-text {
    color: #21a366;
}
.website-text {
    color: #555;
}

.hero-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(34, 158, 217, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(0, 168, 132, 0.12) 0%, transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(34, 158, 217, 0.05) 0%, transparent 35%),
        #f8fafc !important;
    background-attachment: fixed;
}

.hero-inner {
    width: 100%;
    padding: 2rem 1rem;
}

.video-box {
    max-width: 512px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 80vh;
}

.video-box video {
    border-radius: 24px;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .hero-inner .row {
        flex-direction: column-reverse;
    }
    .hero-inner .col-md-5,
    .hero-inner .col-md-7 {
        width: 100%;
    }
    .hero-inner {
        text-align: center;
    }

    .video-box {
        max-width: 380px;
        max-height: 70vh;
    }

    .hero-inner .display-3 {
        font-size: 2.6rem;
    }
    .hero-inner .display-4 {
        font-size: 1.8rem;
    }
    .hero-inner .fs-1 {
        font-size: 1.5rem !important;
    }

    .btn-gradient {
        margin: auto;
    }
    
}

@media (max-width: 480px) 
{
    .video-box {
        max-width: 300px;
        max-height: 60vh;
    }
}
        