 :root {
  --primary-dark: #0a0a0a;
  --secondary-dark: #141414;
  --accent-gold: #ffd700;
  --accent-gold-dark: #daa520;
  --accent-gold-light: #ffdf4d;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-dark: #334155;
  --zia-dark: rgba(0,0,0,0.5);
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffdf4d 100%);
  --gradient-gold-dark: linear-gradient(135deg, #daa520 0%, #ffd700 100%);
  --gradient-dark: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0f0f0f 100%);
}

body {
background-color: #141414;
background-image: url("/inc/images/crissxcross.png");
 
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh; 
}

 


a {
    color: var(--accent-gold);
  text-decoration: none !important;
}

/* استایل جدید هدر با رنگ‌بندی طلایی */
.upmovi-navbar {
  background: var(--zia-dark);
 
  padding: 0.5rem 0;
  min-height: 60px;
  transition: all 0.3s ease;
  z-index:999;
}

.upmovi-navbar.nav-solid {
  background: rgba(12, 12, 12, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
  transition: all 0.3s ease;
  height: 25px;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
  color: var(--text-primary) !important;
  background: rgba(255, 215, 0, 0.1);
}

.navbar-nav .nav-link:hover::before {
  width: 80%;
}

.navbar-nav .dropdown-menu {
  background: var(--secondary-dark);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.dropdown-item {
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin: 0.1rem 0;
}

.dropdown-item:hover {
  background: var(--gradient-gold);
  color: var(--primary-dark) !important;
}

.dropdown-item.active {
  background: var(--gradient-gold);
  color: var(--primary-dark) !important;
}

.btn-success {
  background: var(--gradient-gold);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  transition: all 0.3s ease;
  color: var(--primary-dark);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  background: var(--accent-gold-dark);
  color: var(--primary-dark);
}

.btn-danger {
  background: var(--gradient-gold);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  transition: all 0.3s ease;
  color: var(--primary-dark);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  color: var(--primary-dark);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline-light:hover {
  border-color: var(--accent-gold);
  background: rgba(255, 215, 0, 0.1);
  color: var(--text-primary);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  border-color: var(--accent-gold);
  color: var(--text-primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-content.bg-dark {
  background: rgba(12, 12, 12, 0.98) !important;
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.form-control.bg-dark {
  background: rgba(20, 20, 20, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

.form-control.bg-dark:focus {
  background: rgba(20, 20, 20, 0.9) !important;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
  color: var(--text-primary);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--secondary-dark);
    border-radius: 12px;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
  }
  
  .navbar-nav .nav-link {
    margin: 0.2rem 0;
    text-align: center;
  }
  
  .navbar-actions {
    margin-top: 1rem;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .navbar-actions {
    gap: 0.3rem;
  }
  
  .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .navbar-brand {
    margin-right: 0;
  }
}

.text-label {
  font-size: 0.875rem;
}


 
.upfilm-footer {
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #e0e0e0;
  position: relative;
  margin-top: 80px;
  padding: 60px 0 20px;
  border-top: 1px solid #333;
  overflow: hidden;
}

/* موج دکوراتیو */
.footer-wave {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.footer-wave svg {
  width: calc(100% + 1.3px);
  height: 60px;
  display: block;
}

.footer-wave .shape-fill {
  fill: #1a1a1a;
}

/* برند و لوگو */
.footer-brand-section {
  padding-right: 20px;
}

.footer-logo {
  max-height: 35px;
  transition: all 0.3s ease;
}

.footer-brand:hover .footer-logo {
  transform: scale(1.05);
}

.footer-description {
  line-height: 1.8;
  margin-top: 20px;
  font-size: 0.95rem;
  color: #b0b0b0;
  max-width: 300px;
}

/* عناوین */
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* لینک‌ها */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-link::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  padding-left: 20px;
}

.footer-link:hover::before {
  transform: translateX(5px);
}

/* شبکه‌های اجتماعی */
.footer-social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.social-icon:hover::before {
  left: 100%;
}

.social-icon:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-icon.youtube:hover {
  background: #ff0000;
  color: white;
}

.social-icon.tiktok:hover {
  background: #000000;
  color: white;
}

.social-icon.aparat:hover {
  background: #ffffff;
}

.social-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0.7);
  transition: all 0.3s ease;
}

.social-icon.aparat:hover img {
  filter: brightness(0);
}

/* اطلاعات تماس */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  color: var(--accent-gold);
  width: 20px;
  font-size: 0.9rem;
}

.contact-text {
  font-size: 0.95rem;
  color: #b0b0b0;
}

/* جداکننده */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 40px 0 20px;
}

/* بخش پایینی */
.footer-bottom {
  padding-top: 20px;
}

.copyright {
  color: #888;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
}

.footer-bottom-link {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: var(--accent-gold);
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .upfilm-footer {
    padding: 20px;
    margin-top: 60px;
  }
  
  .footer-brand-section {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-description {
    max-width: none;
    margin: 15px auto 0;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }
  
  .footer-bottom .row {
    text-align: center;
  }
  
  .footer-title {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .footer-social {
    gap: 10px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}


 
/* ***** CSS کامل برای بخش فیلتر ***** */
.upfilm-search-card {
    background: var(--zia-dark);
 border-radius:25px;
    padding: 20px;
    margin-top:10px;
     margin-bottom:10px;}

 
.upfilm-search-select {
    padding: 12px 30px;
    border: 2px solid var(--accent-gold);
    background: transparent;
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
width:130px;
}

.upfilm-search-select:focus {
    outline: none;
}

.upfilm-search-select:hover {
 
    transform: translateY(-2px);
}

.upfilm-search-select option {
    background: #1a202c;
    color: #e2e8f0;
    padding: 12px;
}

.btn-upfilm-pink {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

.btn-upfilm-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
    background: linear-gradient(135deg, #c53030 0%, #e53e3e 100%);
}

.btn-upfilm-pink:active {
    transform: translateY(0);
}

.btn-upfilm-pink:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.genre-section {
 
    padding: 10px;
    border-radius:25px;
      margin-top:10px;
     margin-bottom:10px;
    background: var(--zia-dark);
    }
@media (max-width: 768px) {
   .genre-section {
      padding: 2px;
    } }
    
.genre-header {
        text-align:left;
    margin-bottom: 10px;
    padding-top: 0px;
    padding-bottom: 10px;
  }

 
.see-all-btn {
    background: var(--genre-color, #e53e3e);
    color: white;
    border: 1px solid var(--genre-color, #e53e3e);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    
}

.see-all-btn:hover {
   
    color: var(--genre-color, #e53e3e);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.upfilm-results-info {
    background: rgba(0,0,0,0.05);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 10px;

    flex-wrap: wrap;
  
    align-items: center;
    
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid var(--accent-gold);
    background: transparent;
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
 max-width:170px;
}

.tab-btn.active {
    background: var(--accent-gold);
    color: #000;
}

.tab-btn:hover:not(.active) {
    background: rgba(229, 62, 62, 0.1);
}

.btn-upfilm-gray {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-left: 10px;
    transition: background 0.3s;
}

.btn-upfilm-gray:hover {
    background: #5a6268;
    color: white;
}

/* استایل‌های جدید */
.upfilm-type-badge {
    position: absolute;
    top: 8px;
    right: 45%;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
}

.film-badge {
    background: rgba(255,215,0,0.9);
    color: var(--primary-dark);
}

.series-badge {
    background: rgba(0,123,255,0.9);
    color: white;
}

.nav-tabs .nav-link {
    color: var(--text-secondary);
    border: none;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
    color: var(--accent-gold);
    background: rgba(255,255,255,0.1);
    border-bottom: 3px solid var(--accent-gold);
    border-radius: 0px!important;
}

.btn-upfilm-pink {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

.btn-upfilm-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #eee;
    background: transparent;
    border-radius: 8px;
}

/* ***** Movie Grid ***** */
.upfilm-movie-grid {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

/* موبایل کوچک */
@media (max-width: 479px) {
    .upfilm-movie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* موبایل بزرگ */
@media (min-width: 480px) and (max-width: 767px) {
    .upfilm-movie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* تبلت کوچک */
@media (min-width: 768px) and (max-width: 1023px) {
    .upfilm-movie-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* لپ‌تاپ متوسط */
@media (min-width: 1024px) and (max-width: 1365px) {
    .upfilm-movie-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* لپ‌تاپ بزرگ */
@media (min-width: 1366px) and (max-width: 1599px) {
    .upfilm-movie-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* مانیتور بزرگ */
@media (min-width: 1600px) and (max-width: 1999px) {
    .upfilm-movie-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* مانیتور خیلی بزرگ */
@media (min-width: 2000px) and (max-width: 2499px) {
    .upfilm-movie-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

@media (min-width: 2500px) and (max-width: 2999px) {
    .upfilm-movie-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (min-width: 3000px) and (max-width: 3499px) {
    .upfilm-movie-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (min-width: 3500px) and (max-width: 3999px) {
    .upfilm-movie-grid {
        grid-template-columns: repeat(9, 1fr);
    }
}

@media (min-width: 4000px) {
    .upfilm-movie-grid {
        grid-template-columns: repeat(10, 1fr);
    }
}

.upfilm-movie-card { 
    position: relative; 
    overflow: hidden; 
    border-radius: 5px; 
 
    transition: transform 0.3s ease; 
}

.upfilm-card-img-wrapper { 
    position: relative; 
    overflow: hidden; 
    height: auto; 
}

.upfilm-card-img-wrapper img { 
    width: 100%; 
    object-fit: cover; 
   height:390px;
 
    
}
 
 
.upfilm-card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.upfilm-card-img-wrapper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
       background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.0));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 5px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.upfilm-card-img-wrapper-overlay > * {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease-in-out;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    pointer-events: none;
}

.stretched-link {
    z-index: 3;
}

.upfilm-card-img-wrapper-overlay::before {
    content: '';
    position: absolute;
    bottom: -1.8rem;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 11%;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.1),
    border-radius: 0px;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideInFromTop 0.8s ease-out;
    pointer-events: none;
}

.upfilm-card-img-wrapper-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5), transparent);
    transition: left 0.7s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

/* هاور روی parent element */
.upfilm-card-img-wrapper:hover .upfilm-card-img-wrapper-overlay {
    filter: brightness(1.2);
    background: linear-gradient(135deg, rgba(229, 62, 62, 0), rgba(147, 51, 234, 0));
    transform: scale(1.02);
}

.upfilm-card-img-wrapper:hover .upfilm-card-img-wrapper-overlay::before {
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0;
    animation: pulseGlow 2s infinite alternate;
}

.upfilm-card-img-wrapper:hover .upfilm-card-img-wrapper-overlay::after {
    left: 100%;
}

.upfilm-card-img-wrapper:hover .upfilm-card-img-wrapper-overlay > * {
    transform: scale(1.05) translateY(-5px);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* انیمیشن‌های کلیدی */
@keyframes slideInFromTop {
    0% {
        transform: translate(-50%, -80%);
        opacity: 0;
        height: 0;
    }
    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
        height: 10%;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 20px rgba(229, 62, 62, 0.3);
        background: rgba(255, 255, 255, 0.15);
    }
    100% {
        box-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
        background: rgba(255, 255, 255, 0.2);
    }
}

/* انیمیشن برای المان‌های فرزند */
.upfilm-card-img-wrapper-overlay h3 {
    animation-delay: 0.3s;
}

.upfilm-card-img-wrapper-overlay p {
    animation-delay: 0.4s;
}

.upfilm-card-img-wrapper-overlay .btn {
    animation-delay: 0.5s;
}

.upfilm-rating, .upfilm-year { 
   
    position: absolute; 
    top: 8px; 
    padding: 4px 6px; 
    font-size: 0.8rem; 
    font-weight: bold; 
    border-radius: 6px; 
    color: #fff; 
    z-index: 5; 
    display: flex; 
    align-items: center; 
}

.upfilm-rating { 
    right: 8px;
    color: #FFD700!important;
    text-decoration: none; 
} 

.upfilm-year { 
    left: 8px; 
    color: var(--accent-gold);
}

.upfilm-movie-title-overlay {
 
    padding: 6px 4px;
    position: absolute; 
    bottom: 6px; 
     color: #fff;
    text-align: center;
    font-size: 0.95rem;
    font-weight: bold;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.3em;
}

 
.btn-outline-secondary {
    background: rgba(20, 20, 20, 0.8)!important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* هرو با بکگراند متغیر */
.hero-background-container {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 300px;
    overflow: hidden;
    border-radius: 25px;
    margin-top:15px;
  
    
}

.hero-background-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    
}

.hero-background-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
          backdrop-filter: blur(4px); 
    -webkit-backdrop-filter: blur(4px); 
 
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-movie-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.hero-site-info {
    position: absolute;
    top: 20px;
    right: 0px;
    width: 100%;
    height: 100%;
 
    
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.hero-movie-info.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-movie-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.hero-movie-year {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-movie-link {
    margin-top: 10px;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background: #e53e3e;
    border-color: white;
    transform: scale(1.2);
}

.hero-indicator:hover {
    background: rgba(229, 62, 62, 0.7);
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .hero-background-container {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-movie-title {
        font-size: 2.5rem;
    }
    
    .hero-movie-year {
        font-size: 1.2rem;
    }
    .upfilm-card-img-wrapper img {
     height:290px;}
     
     
     .upfilm-card-img-wrapper-overlay::before {
        bottom: -2rem;
       height: 20%;
}
}
/* استایل برای بخش فیلتر در موبایل */
.mobile-filter-content {
    display: flex;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: center;
 
}
 

.upfilm-results-info {
    background: rgba(0,0,0,0.05);
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
}

.upfilm-movie-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.upfilm-year-badge,
.upfilm-votes-badge,
.upfilm-rated-badge {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.upfilm-votes-badge {
    background: rgba(76, 175, 80, 0.8);
}

.upfilm-rated-badge {
    background: rgba(156, 39, 176, 0.8);
}

.upfilm-movie-grid.list-view {
    display: block;
}

.upfilm-movie-grid.list-view .upfilm-movie-card {
    width: 100%;
    margin-bottom: 15px;
}
 .load-more-container{margin-top:50px;}
 .ziafilter{height:35px;padding:6px;border:1px;}
  
 

.top250-tabs {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    padding: 20px 0;
}

.top250-header {
    text-align: center;
    margin-bottom: 20px;
}

.top250-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f59e0b;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.top250-rank {
    position: absolute;
    top: 8px;
    left: 45%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
}

.top250-rank.top10 {
    background: linear-gradient(135deg, #f59e0b, #b45309);
    font-size: 12px;
}

.top250-rank.top3 {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    font-size: 11px;
}

.top250-rank.top1 {
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    font-size: 10px;
}

.btn-upfilm-amber {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-upfilm-amber:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: white;
}

/* نمایش اطلاعات تب فعلی */
.current-tab-info {
    text-align: center;
    margin-bottom: 15px;
    color: #f59e0b;
    font-weight: 600;
    font-size: 1.1rem;
}
.znbtn{min-width:80px;border:0px;}.container-fluid{max-width:2200px}
    
    :root {
    --gold-primary: #FFD700;
    --gold-dark: #D4AF37;
    --gold-light: #FFEC8B;
    --gold-glow: rgba(255, 215, 0, 0.3);
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(0, 0, 0, 0.7);
    --card-border: rgba(255, 215, 0, 0);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
 
}

 
.hero-backdrop {
    position: relative;
        background-size: 100% auto; /*I want to limit to 200px*/
    background-position: top;
    background-repeat: no-repeat;
    min-height: 85vh;
   
    align-items: center;
    padding:0px;
    margin-top:10px;
    border-radius:12px;
}

.hero-backdrop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
   border-radius:12px;
        padding: 0.5rem;
        position: relative;
    overflow: hidden;
}

 

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-top:10px;
}

 
 
.badge.meta-badge {
    background: rgba(255, 255, 255, 0.07);
    color: var(--gold-light);
  
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-weight: 600;

}


.img-fluid{border-radius:10px;width:auto;margin-bottom:10px;}
.nav-tabs {
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    margin-top: 2rem;
}

.nav-tabs .nav-link {
    color: var(--text-secondary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}



.nav-tabs .nav-link:hover, .nav-tabs .nav-link.active {
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.05);
}

.nav-tabs .nav-link.active::before {
    width: 100%;
}

.nav-tabs .nav-link:hover::before {
    width: 80%;
}

.tab-content {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0 0 12px 12px;
    padding: 5px;
    
    border-top: none;
 
}

.similar-wrap {
    background: rgba(0, 0, 0, 0.4) !important;
    border-radius: 16px;
    padding: 0.5rem;
    margin-top: 1rem;
    
}

.similar-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 16px 16px 0 0;
}

.film-card-pro {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.film-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow), var(--shadow-gold);
}

.poster-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.poster-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.film-card-pro:hover .poster-img {
    transform: scale(1.05);
}

.hover-dim {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.film-card-pro:hover .hover-dim {
    opacity: 1;
}

.title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    padding: 1rem 0.8rem 0.8rem;
    backdrop-filter: blur(5px);
}

.title-main {
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--gold-light);
}

.title-sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

 

.modal-footer {
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.02);
    border-radius: 0 0 16px 16px;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    border-radius: 10px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.form-control {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 215, 0, 0.08);
    border-color: var(--gold-primary);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 215, 0, 0.5);
}

.ziamb {
  background: rgba(255, 255, 255, 0);
    border-radius: 5px;
    padding: 0.5rem;
    margin: 1rem 0;
  
}

/* ریسپانسیو: اندازه عکس‌ها روی موبایل کوچکتر شود */
@media (max-width: 767px) {
    .position-relative img {
        width: 70px !important;
        height: 70px !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255, 215, 0, 0.3) !important;
    }
    
    .position-relative div {
        font-size: 0.6rem !important;
    }
    
    .hero-content {
        padding: 0.5rem;
        
    }
    
    
    
    .nav-tabs .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
     
}
  
@media (min-width: 768px) and (max-width: 1024px) {
    .position-relative img {
        width: 90px !important;
        height: 90px !important;
        border-radius: 10px !important;
        border: 1px solid rgba(255, 215, 0, 0.3) !important;
    }
    
    .position-relative div {
        font-size: 0.7rem !important;
    }
    
    .hero-content {
        padding: 0.5rem;
    }

}

/* افکت‌های اضافی برای لوکس‌تر شدن */
.glow-effect {
    text-shadow: 0 0 10px var(--gold-glow), 0 0 20px var(--gold-glow);
}

.border-gold {
    border: 1px solid var(--card-border) !important;
}

.bg-gold-dark {
    background: rgba(255, 215, 0, 0.1) !important;
}

.text-gold {
    color: var(--gold-primary) !important;
}

/* انیمیشن‌های ظریف */
@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.pulse-gold {
    animation: goldPulse 2s infinite;
}
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#load-trailer-btn {
  background: linear-gradient(45deg, var(--primary-color), #ff2d75);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
  color:#fff;
}

#load-trailer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 45, 117, 0.3);
}
.download-box {
   
 
    border-radius: 5px;
    padding: 0rem;
    margin: 0rem;
   
    position: relative;
    overflow: hidden;
   
}

.download-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
  
}

.download-box .alert-warning {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    color: #FFEC8B;
    margin-bottom: 1.5rem;
 
    position: relative;
    overflow: hidden;
}

.download-box .alert-warning::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    
    border-radius: 4px 0 0 4px;
}

.download-box .alert-warning i {
    color: #FFD700;
    margin-left: 0.5rem;
   
}

.download-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.download-item {
   background: rgba(23, 23, 23, 0.95);
  
    border-radius: 5px;
    padding: 0.5rem;
    margin-bottom: 0.8rem;
   
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  
}



.quality, .size {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.quality i, .size i {
    color: #FFD700;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.quality span, .size span {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 10px;
  
    font-size: 0.9rem;
    color: #FFEC8B;
    font-weight: 600;

}

.badge.bg-dark {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%) !important;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    color: #0a0a0a !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.action {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.btn {
    border-radius: 10px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-success {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    color: #0a0a0a !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #FFEC8B, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: #FFD700;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    color: #0a0a0a;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFEC8B, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline-info {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    font-weight: 600;
}

.btn-outline-info:hover {
    background: #D4AF37;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-warning {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    font-weight: 600;
}

.btn-outline-warning:hover {
    background: #FFD700;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.btn-dark {
    background: linear-gradient(135deg, #343a40, #495057) !important;
    color: white;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.btn-dark:hover {
    background: linear-gradient(135deg, #23272b, #343a40) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
}

.btn-warning {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    color: #0a0a0a;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #FFEC8B, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.online-premiere-box {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.25rem;
    margin-top: 0.8rem;
    backdrop-filter: blur(5px);
    position: relative;
}

.online-premiere-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #FFD700, #D4AF37);
    border-radius: 3px 0 0 3px;
}

.online-premiere-box small {
    color: #FFEC8B;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 500;
}

.instagram-btn {
    background: linear-gradient(135deg, #E1306C, #C13584) !important;
    color: white !important;
    border: none;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #C13584, #833AB4) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #005580) !important;
    color: white !important;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #005580, #00334d) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.help-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.help-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

/* ریسپانسیو */
@media (max-width: 768px) {
   
    
    .download-item {
        padding: 0.5rem;
    }
    
    .action {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .action .btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .help-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    
    .help-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .quality, .size {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}

/* انیمیشن‌های ظریف */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.download-item:nth-child(1) { animation-delay: 0.1s; }
.download-item:nth-child(2) { animation-delay: 0.2s; }
.download-item:nth-child(3) { animation-delay: 0.3s; }
.download-item:nth-child(4) { animation-delay: 0.4s; }
.download-item:nth-child(5) { animation-delay: 0.5s; }

/* استایل برای دکمه‌های خاص */
.btn-gold {
    background: linear-gradient(135deg, #FFD700, #D4AF37) !important;
    color: #0a0a0a !important;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #FFEC8B, #FFD700) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* استایل برای متن‌های هشدار */
.text-warning {
    color: #FFD700 !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.text-muted {
    color: #b0b0b0 !important;
}

.text-gold {
    color: #FFD700 !important;
}

/* افکت‌های اضافی برای المان‌های طلایی */
.gold-glow {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
}

.border-gold {
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
}

/* پالس برای المان‌های مهم */
@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.pulse-gold {
    animation: goldPulse 2s infinite;
}

/* استایل برای آیکون‌ها */
.download-icon {
    color: #FFD700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.download-item:hover .download-icon {
    color: #FFEC8B;
    transform: scale(1.1);
}
/* استایل برای سطرهای لینک */
.link-row {
    background: rgba(35, 35, 35, 0.8) !important;
    border-left: 3px solid #FFD700;
    margin-left: 1rem;
    margin-bottom: 0.5rem !important;
    padding: 0.8rem 1rem !important;
}

.link-row:hover {
    background: rgba(45, 45, 45, 0.9) !important;
    border-left-color: #FFEC8B;
}

.divider-row {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* استایل برای آیکون‌های لینک */
.download-icon {
    color: #FFD700;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* استایل برای متن لینک‌ها */
.link-row .text-gold {
    color: #FFEC8B !important;
    font-weight: 600;
    font-size: 0.95rem;
}

/* استایل ریسپانسیو برای لینک‌ها */
@media (max-width: 768px) {
    .link-row {
        margin-left: 0.5rem;
        padding: 0.6rem 0.8rem !important;
    }
    
    .link-row .d-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    
    .link-row .btn {
        width: 100%;
        justify-content: center;
    }
}

/* انیمیشن برای سطرهای لینک */
.link-row {
    animation: slideInRight 0.4s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.link-row:nth-child(1) { animation-delay: 0.1s; }
.link-row:nth-child(2) { animation-delay: 0.2s; }
.link-row:nth-child(3) { animation-delay: 0.3s; }
.link-row:nth-child(4) { animation-delay: 0.4s; }
.link-row:nth-child(5) { animation-delay: 0.5s; }