: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;
  --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: var(--primary-dark);
  color: var(--text-primary);
  overflow-x: hidden;
}
a {
  text-decoration: none !important;
}

/* استایل جدید هدر با رنگ‌بندی طلایی */
.upmovi-navbar {
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  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;
  }
}


 