/* ======== قسم الهيرو السينمائي ======== */
.hero-accounts {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-color) 0%, rgba(13, 13, 26, 0.5) 100%);
    z-index: -1;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-color-muted);
    max-width: 600px;
    margin: 1rem auto 0;
}


/* ======== قسم عرض الحسابات ======== */
.accounts-showcase {
    padding: 80px 0;
    margin-top: -80px; /* ليدخل قليلًا في قسم الهيرو */
    position: relative;
    z-index: 2;
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.account-card {
    position: relative;
    background: rgba(28, 28, 46, 0.6);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.account-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.account-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(138, 43, 226, 0.4),
        transparent 30%
    );
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
}

.account-card:hover .account-card-glow {
    opacity: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.account-card-banner {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}

.account-card-content {
    padding: 25px;
    position: relative; /* ليكون فوق الـ glow */
}

.account-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.account-card-tags {
    margin-bottom: 20px;
}

.account-card-tags .tag {
    background-color: var(--secondary-color);
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-left: 5px;
}

.account-card-price {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.account-card-price strong {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 900;
}

.account-card .btn {
    width: 100%;
}