
   
/* کارت بازیگر */
.actor-card {
  background: var(--darker-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  height: 100%;
  border: 0px solid rgba(233, 69, 132, 0.1);
  position: relative;
}

.actor-card:hover {
  transform: translateY(-10px);
  
  border-color: rgba(233, 69, 132, 0.3);
}

.actor-image-wrapper {
  position: relative;
  padding-top: 140%;
  overflow: hidden;
}

.actor-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.actor-card:hover .actor-image {
  transform: scale(1.05);
}

.actor-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(22, 33, 62, 0.9) 0%, transparent 100%);
}

.movie-count-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--pink-accent);
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}

.actor-info {
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, var(--pink-accent) 0%, transparent 100%);
}

.actor-name {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

 
/* واکنش‌گرایی */
@media (max-width: 768px) {
  .search-header {
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .search-form .form-control,
  .search-form .btn {
    height: 45px;
  }
}

.no-results {
  color: var(--text-light);
}

.empty-state img {
  filter: grayscale(80%) brightness(0.8);
}

/* هدر پروفایل */
.profile-header {
    position: relative;
    margin-bottom: 80px;
}

.profile-banner {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.profile-content {
    display: flex;
    align-items: flex-end;
    position: relative;
    margin-top: -100px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.profile-avatar {
    position: relative;
    margin-right: 30px;
}

.avatar-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--dark-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.profile-badges {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.actor-badge {
    background-color: var(--pink-accent);
    color: white;
}

.director-badge {
    background-color: #4e73df;
    color: white;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.profile-name-en {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 400;
}

.profile-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pink-accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* بخش‌های مختلف */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* بیوگرافی */
.profile-bio-section {
    padding: 40px 0;
    background-color: var(--dark-secondary);
    margin-bottom: 40px;
}

.bio-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.no-bio {
    padding: 20px;
    text-align: center;
    background-color: var(--card-bg);
    border-radius: 8px;
    color: var(--text-secondary);
}

/* آثار */
.profile-works-section {
    padding-bottom: 60px;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.sort-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sort-btn.active {
    background-color: var(--pink-accent);
    color: white;
}

.sort-btn:hover {
    color: var(--text-primary);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.work-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233, 69, 132, 0.2);
}

.work-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.work-poster {
    position: relative;
    padding-top: 150%;
    overflow: hidden;
}

.work-poster img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover .work-poster img {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-type-badge {
    background-color: var(--pink-accent);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    align-self: flex-start;
    margin-bottom: 10px;
}

.work-rating {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.work-year {
    color: white;
    font-size: 0.8rem;
}

.work-info {
    padding: 15px;
}

.work-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.work-title-en {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.work-summary {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.no-works {
    padding: 40px;
    text-align: center;
    background-color: var(--card-bg);
    border-radius: 8px;
    color: var(--text-secondary);
}

/* واکنش‌گرایی */
@media (max-width: 992px) {
    .profile-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: -150px;
    }
    
    .profile-avatar {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .profile-stats {
        justify-content: center;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .sort-options {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .profile-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-item {
        flex: 1 0 calc(50% - 15px);
    }
    
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



.login-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.login-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.login-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.login-header h4 {
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 2;
}

.login-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
}

.login-body {
  padding: 2.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.form-control {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.btn-login {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  padding: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.alert-danger {
  border-radius: 8px;
  background-color: #fff5f5;
  color: #e53e3e;
  border-left: 4px solid #e53e3e;
}

.divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: var(--gray-color);
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.divider::before {
  margin-right: 1rem;
}

.divider::after {
  margin-left: 1rem;
}

.social-login {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
}

.google-btn {
  background: #DB4437;
}

.facebook-btn {
  background: #4267B2;
}

.twitter-btn {
  background: #1DA1F2;
}

.login-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--gray-color);
}

.login-footer a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.login-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .login-body {
    padding: 1.5rem;
  }
  
  .login-header {
    padding: 1.2rem;
  }
}
 
@media (max-width: 768px) {
  .torrent-guide h1 { font-size: 2rem; }
  .torrent-guide .lead { font-size: 1.1rem; }
  .torrent-guide .app-buttons { flex-direction: column; }
  .torrent-guide .app-buttons a { width: 100%; justify-content: center; }
}
     :root {
            --primary-color: #6366f1;
            --primary-hover: #4f46e5;
            --dark-bg: #0f172a;
            --dark-card: #1e293b;
            --dark-text: #f8fafc;
            --dark-border: #334155;
            --dark-input-bg: #334155;
            --error-color: #ef4444;
            --success-color: #10b981;
        }
        
     
        .login-container {
            width: 100%;
            max-width: 420px;
            margin: auto;
            margin-top:50px;
            min-height:60vh;
        }
        
        .login-card {
            background-color: var(--dark-card);
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            border: 1px solid var(--dark-border);
            transition: transform 0.3s ease;
        }
        
        .login-card:hover {
            transform: translateY(-5px);
        }
        
        .login-header {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
            color: white;
            padding: 25px;
            text-align: center;
            position: relative;
        }
        
        .login-header h4 {
            margin: 0;
            font-weight: 600;
            font-size: 1.5rem;
        }
        
        .login-body {
            padding: 30px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-text);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background-color: var(--dark-input-bg);
            border: 1px solid var(--dark-border);
            border-radius: 0px;
            color: var(--dark-text);
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
        }
        
        .input-group {
            display: flex;
            margin-bottom: 20px;
        }
        
        .input-group-text {
            background-color: var(--dark-input-bg);
            border: 1px solid var(--dark-border);
            border-right: none;
            border-radius: 0px 0 0 0px;
            padding: 12px 15px;
            color: var(--dark-text);
        }
        
        .input-group input {
            border-radius: 0 0px 0px 0;
            border-left: none;
        }
        
        .btn-login {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            font-size: 1rem;
        }
        
        .btn-login:hover {
            background-color: var(--primary-hover);
        }
        
        .toggle-password {
            background-color: var(--dark-input-bg);
            border: 1px solid var(--dark-border);
            border-left: none;
            border-radius: 0 8px 8px 0;
            color: var(--dark-text);
            cursor: pointer;
        }
        
        .form-check {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .form-check-input {
            width: 18px;
            height: 18px;
            accent-color: var(--primary-color);
            cursor: pointer;
        }
        
        .forgot-password {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        .forgot-password:hover {
            color: var(--primary-hover);
            text-decoration: underline;
        }
        
        .alert {
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .alert-danger {
            background-color: rgba(239, 68, 68, 0.15);
            border: 1px solid var(--error-color);
            color: var(--error-color);
        }
        
        .extra-options {
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        
        .extra-options a {
            color: var(--primary-color);
            text-decoration: none;
            margin: 0 5px;
        }
        
        .extra-options a:hover {
            text-decoration: underline;
        }
            :root {
            --primary-color: #6366f1;
            --primary-hover: #4f46e5;
            --secondary-color: #8b5cf6;
            --dark-bg: #0f172a;
            --dark-card: #1e293b;
            --dark-border: #334155;
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
        }
        
 
        
        .dashboard-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }
        
    
        
        .sidebar-item {
            padding: 12px 20px;
            margin: 4px 0;
            color: var(--text-secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .sidebar-item:hover {
            background-color: rgba(99, 102, 241, 0.1);
            color: var(--text-primary);
            border-left: 3px solid var(--primary-color);
        }
        
        .sidebar-item.active {
            background-color: rgba(99, 102, 241, 0.2);
            color: var(--primary-color);
            border-left: 3px solid var(--primary-color);
            font-weight: 500;
        }
        
        .sidebar-item i {
            margin-left: 10px;
            font-size: 1.1rem;
        }
        
        .main-content {
            background: var(--dark-card);
            border-radius: 12px;
            border: 1px solid var(--dark-border);
            padding: 25px;
        }
        
        .card-film {
            transition: transform 0.3s ease;
            margin-bottom: 20px;
        }
        
        .card-film:hover {
            transform: translateY(-5px);
        }
        
        .card-film img {
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .card-film:hover img {
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
        }
        
        .balance-card {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            border: none;
        }
        
        .table-responsive {
            border-radius: 8px;
            overflow: hidden;
        }
        
        .table {
            color: var(--text-primary);
            border-color: var(--dark-border);
        }
        
        .table-dark {
            --bs-table-bg: var(--dark-card);
            --bs-table-striped-bg: rgba(255,255,255,0.05);
            --bs-table-hover-bg: rgba(99, 102, 241, 0.1);
            border-color: var(--dark-border);
        }
        
        .table thead {
            background-color: var(--primary-color);
            color: white;
        }
        
        .badge {
            padding: 6px 10px;
            font-weight: 500;
            font-size: 0.8rem;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-hover);
            border-color: var(--primary-hover);
        }
        
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .page-title {
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--dark-border);
        }
        
        .empty-state {
            text-align: center;
            padding: 40px 20px;
            background-color: rgba(30, 41, 59, 0.5);
            border-radius: 12px;
            border: 1px dashed var(--dark-border);
        }
        
        .empty-state i {
            font-size: 3rem;
            color: var(--dark-border);
            margin-bottom: 15px;
        }
        
        .form-control, .form-select {
            background-color: var(--dark-card);
            border-color: var(--dark-border);
            color: var(--text-primary);
        }
        
        .form-control:focus, .form-select:focus {
            background-color: var(--dark-card);
            border-color: var(--primary-color);
            color: var(--text-primary);
            box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
        }
        
        .dropdown-menu {
            background-color: var(--dark-card);
            border-color: var(--dark-border);
        }
        
        .dropdown-item {
            color: var(--text-primary);
        }
        
        .dropdown-item:hover {
            background-color: rgba(99, 102, 241, 0.2);
            color: var(--primary-color);
        }
        
        .alert {
            border: 1px solid transparent;
        }
        
        .text-muted {
            color: var(--text-secondary) !important;
        }
          :root {
            --dark-bg: #0f0f1a;
            --dark-card: #1a1a2e;
            --dark-border: #2d2d4d;
            --dark-text: #e0e0ff;
            --plan-1: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            --plan-2: linear-gradient(135deg, #4e54c8, #8f94fb);
            --plan-3: linear-gradient(135deg, #00b09b, #96c93d);
            --plan-4: linear-gradient(135deg, #ff8c00, #ffb347);
            --accent-glow: 0 0 15px rgba(255, 255, 255, 0.2);
        }
        
     
       
        .page-title {
            text-align: center;
            margin: 2rem 0 3rem;
            font-weight: 800;
            font-size: 2.5rem;
            background: linear-gradient(90deg, #ff6b6b, #4e54c8, #00b09b, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            padding-bottom: 15px;
        }
        
        .page-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #4e54c8, #00b09b, #ff8c00);
            border-radius: 4px;
        }
        
        .plans-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .plan-card {
            background: var(--dark-card);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            border: 1px solid var(--dark-border);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }
        
        .plan-card:nth-child(1):hover {
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.25);
        }
        
        .plan-card:nth-child(2):hover {
            box-shadow: 0 15px 35px rgba(78, 84, 200, 0.25);
        }
        
        .plan-card:nth-child(3):hover {
            box-shadow: 0 15px 35px rgba(0, 176, 155, 0.25);
        }
        
        .plan-card:nth-child(4):hover {
            box-shadow: 0 15px 35px rgba(255, 140, 0, 0.25);
        }
        
        .plan-card:hover {
            transform: translateY(-12px);
        }
        
        .plan-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            z-index: -1;
            border-radius: 18px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .plan-card:nth-child(1)::before {
            background: var(--plan-1);
        }
        
        .plan-card:nth-child(2)::before {
            background: var(--plan-2);
        }
        
        .plan-card:nth-child(3)::before {
            background: var(--plan-3);
        }
        
        .plan-card:nth-child(4)::before {
            background: var(--plan-4);
        }
        
        .plan-card:hover::before {
            opacity: 1;
        }
        
        .plan-header {
            padding: 30px 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .plan-card:nth-child(1) .plan-header {
            background: var(--plan-1);
        }
        
        .plan-card:nth-child(2) .plan-header {
            background: var(--plan-2);
        }
        
        .plan-card:nth-child(3) .plan-header {
            background: var(--plan-3);
        }
        
        .plan-card:nth-child(4) .plan-header {
            background: var(--plan-4);
        }
        
        .plan-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
        }
        
        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 10px;
            position: relative;
            z-index: 1;
        }
        
        .plan-price {
            font-size: 2.8rem;
            font-weight: 800;
            margin: 0;
            position: relative;
            z-index: 1;
        }
        
        .plan-price span {
            font-size: 1.2rem;
            font-weight: 400;
            opacity: 0.9;
        }
        
        .plan-duration {
            font-size: 1rem;
            opacity: 0.9;
            margin-top: 5px;
            position: relative;
            z-index: 1;
        }
        
        .plan-features {
            padding: 30px 25px;
            flex-grow: 1;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .feature-list li:before {
            content: "✓";
            font-weight: bold;
            margin-right: 12px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .plan-card:nth-child(1) .feature-list li:before {
            background: rgba(255, 107, 107, 0.2);
            color: #ff6b6b;
        }
        
        .plan-card:nth-child(2) .feature-list li:before {
            background: rgba(78, 84, 200, 0.2);
            color: #4e54c8;
        }
        
        .plan-card:nth-child(3) .feature-list li:before {
            background: rgba(0, 176, 155, 0.2);
            color: #00b09b;
        }
        
        .plan-card:nth-child(4) .feature-list li:before {
            background: rgba(255, 140, 0, 0.2);
            color: #ff8c00;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .plan-actions {
            padding: 25px;
            text-align: center;
            border-top: 1px solid var(--dark-border);
        }
        
        .btn-subscribe {
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }
        
        .plan-card:nth-child(1) .btn-subscribe {
            background: var(--plan-1);
        }
        
        .plan-card:nth-child(2) .btn-subscribe {
            background: var(--plan-2);
        }
        
        .plan-card:nth-child(3) .btn-subscribe {
            background: var(--plan-3);
        }
        
        .plan-card:nth-child(4) .btn-subscribe {
            background: var(--plan-4);
        }
        
        .btn-subscribe: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: 0.5s;
        }
        
        .btn-subscribe:hover:before {
            left: 100%;
        }
        
        .btn-subscribe:hover {
            transform: scale(1.05);
            box-shadow: var(--accent-glow);
        }
        
        .btn-secondary {
            background: #333;
            color: #ccc;
            border: 1px solid #444;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            font-size: 1.1rem;
        }
        
        .btn-secondary:hover {
            background: #444;
            color: #fff;
            transform: scale(1.05);
        }
        
        .recommended {
            position: relative;
            transform: scale(1.05);
            z-index: 10;
        }
        
        .recommended-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #fff;
            color: #000;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 800;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Modal Styles */
        .modal-content {
            background: var(--dark-card);
            color: var(--dark-text);
            border: 1px solid var(--dark-border);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .modal-header {
            border-bottom: 1px solid var(--dark-border);
            background: linear-gradient(90deg, #1a1a2e, #16213e);
            color: white;
        }
        
        .modal-footer {
            border-top: 1px solid var(--dark-border);
        }
        
        .btn-close {
            filter: invert(1);
        }
        
        .form-control, .form-select {
            background-color: #2a2a2a;
            border: 1px solid #444;
            color: var(--dark-text);
            border-radius: 10px;
            padding: 12px 16px;
        }
        
        .form-control:focus, .form-select:focus {
            background-color: #2a2a2a;
            border-color: #8f94fb;
            box-shadow: 0 0 0 0.25rem rgba(143, 148, 251, 0.25);
            color: var(--dark-text);
        }
        
        .form-label {
            font-weight: 600;
            color: #8f94fb;
            margin-bottom: 8px;
        }
        
        .alert {
            background-color: #2a2a2a;
            color: var(--dark-text);
            border: 1px solid #444;
            border-radius: 10px;
        }
        
        .alert-info {
            border-left: 4px solid #4e54c8;
        }
        
        .alert-warning {
            border-left: 4px solid #ff8c00;
        }
        
        @media (max-width: 1200px) {
            .plans-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .plans-container {
                grid-template-columns: 1fr;
            }
            
            .recommended {
                transform: scale(1);
            }
            
            .page-title {
                font-size: 2rem;
            }
        }
        
 