body {
  background-color: #0d1117;
  color: #f0f0f0;
  font-family: "Vazir", sans-serif;
  padding-bottom: 70px;
}

.navbar-dark {
  background-color: #161b22 !important;
  border-bottom: 1px solid #222;
}

.server-card {
  background-color: #161b22;
  border: 1px solid #2c313a;
  border-radius: 15px;
  padding: 15px;
  margin: 10px;
  transition: 0.3s;
}
.server-card:hover {
  background-color: #1c2128;
}
.server-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #0d1117;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #222;
  padding: 8px 0;
  z-index: 1000;
}

.bottom-nav .nav-item {
  color: #888;
  text-decoration: none;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.2s ease;
}

.bottom-nav .nav-item i {
  font-size: 20px;
  margin-bottom: 3px;
}

.bottom-nav .nav-item.active {
  color: #0d6efd;
  font-weight: 600;
}

.bottom-nav .nav-item:hover {
  color: #0d6efd;
}

@media (min-width: 768px) {
  .bottom-nav .nav-item i {
    font-size: 22px;
  }
  .bottom-nav .nav-item span {
    font-size: 14px;
  }
}
.app-header {
  background-color: #0d1117;
  border-bottom: 1px solid #222;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 18px;
  color: #fff !important;
  letter-spacing: 0.3px;
}

.lang-switch {
  gap: 8px;
}

.lang-flag img {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0.75;
}

.lang-flag.active img,
.lang-flag img:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 0 4px rgba(13,110,253,0.6);
}
.text-gradient {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.server-card-animated {
  background: linear-gradient(145deg, #1a1f29, #11151d);
  border: 1px solid #1e2738;
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.server-card-animated:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
  border-color: #007bff;
}

.icon-wrapper {
  background: radial-gradient(circle at 30% 30%, #0d6efd33, transparent 60%);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.server-card-animated:hover .icon-wrapper img {
  transform: scale(1.1) rotate(5deg);
}

.server-title {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}

.server-desc {
  color: #aaa;
  font-size: 13px;
  min-height: 36px;
}
.home-section {
  min-height: 80vh;
  background: radial-gradient(circle at center top, #0d6efd10, #0d1117 80%);
  animation: fadeIn 1s ease-in-out;
}

.home-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 1s ease-in-out;
}

.home-subtitle {
  font-size: 1.1rem;
  color: #aaa;
  animation: fadeInUp 1.2s ease-in-out;
}

.btn-buy {
  display: inline-block;
  padding: 12px 35px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(90deg, #007bff, #00b4d8);
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
  transition: all 0.3s ease-in-out;
}

.btn-buy:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 174, 255, 0.7);
  background: linear-gradient(90deg, #00b4d8, #007bff);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.text-gradient {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plan-card {
  border-radius: 18px;
  padding: 25px 20px;
  background: #161b22;
  color: #fff;
  text-align: center;
  border: 1px solid #2c3038;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: all 0.35s ease-in-out;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 25px rgba(0,123,255,0.25);
  border-color: #0d6efd;
}

.plan-header h5 {
  font-weight: 600;
  font-size: 18px;
}

.plan-header .price {
  font-size: 20px;
  font-weight: 700;
  color: #0d6efd;
  margin-top: 8px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-size: 14px;
  color: #ccc;
  line-height: 1.9;
}

.btn-buy-plan {
  display: inline-block;
  background: linear-gradient(90deg, #007bff, #00b4d8);
  color: white;
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(0,174,255,0.4);
}

.btn-buy-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0,174,255,0.7);
}

/* رنگ‌بندی پلن‌ها */
.plan-basic {
  border-top: 3px solid #00b4d8;
}
.plan-standard {
  border-top: 3px solid #ffc107;
}
.plan-premium {
  border-top: 3px solid #dc3545;
}
.text-glow {
  color: #00b4d8;
  text-shadow: 0 0 8px rgba(0,180,255,0.4);
}

.profile-card {
  background: #151a24;
  border-radius: 16px;
  border: 1px solid #243043;
  transition: all 0.3s ease-in-out;
}
.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0,150,255,0.15);
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00b4d8;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0,180,255,0.3);
}
.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-gradient {
  background: linear-gradient(90deg, #007bff, #00b4d8);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  box-shadow: 0 0 15px rgba(0,174,255,0.7);
  transform: translateY(-2px);
}

.stat-card {
  padding: 18px 10px;
  border-radius: 12px;
  color: white;
  border: 1px solid #2c3444;
  transition: transform 0.2s;
}
.stat-card:hover {
  transform: translateY(-4px);
}

.bg-dark-blue { background: linear-gradient(145deg, #0d1b2a, #1b263b); }
.bg-dark-green { background: linear-gradient(145deg, #082c20, #134e4a); }
.bg-dark-purple { background: linear-gradient(145deg, #1e1b3a, #3a2c6a); }

.table-header {
  background: #0d6efd;
  color: #fff;
}
.user-info {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px 12px;
  transition: all 0.3s ease-in-out;
}

.user-info:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 180, 255, 0.2);
}

.info-row span:first-child {
  font-size: 0.9rem;
}

.info-row span:last-child {
  font-size: 0.95rem;
  color: #00b4d8;
}
.profile-card {
  background: radial-gradient(circle at top, #141922, #0b0e13);
  border-radius: 22px;
  padding: 1.5rem;
  transition: all 0.4s ease;
}

.profile-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.15);
}

.profile-avatar {
  position: relative;
  width: 120px;
  height: 120px;
}

.avatar-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #00b4d8;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.4);
}

.avatar-glow {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,255,0.25), transparent 70%);
  z-index: 1;
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.user-info {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 8px;
  font-size: 0.9rem;
  color: #aaa;
}

.info-item .value {
  color: #00b4d8;
  font-weight: 600;
}

.btn-main {
  background: linear-gradient(90deg, #0066ff, #00c3ff);
  color: white;
  border: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-main:hover {
  background: linear-gradient(90deg, #00c3ff, #0066ff);
  transform: translateY(-2px);
}

.btn-outline-telegram {
  border: 1px solid #00b4d8;
  color: #00b4d8;
  transition: all 0.3s ease;
}

.btn-outline-telegram:hover {
  background: #00b4d8;
  color: white;
}
/* کارت‌های آماری */
.stat-card {
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}
.stat-card h6 {
  font-size: 0.9rem;
  opacity: 0.8;
}
.stat-card h3, .stat-card h5 {
  margin: 5px 0 0;
  font-weight: 700;
}

/* رنگ‌های گرادینت */
.gradient-blue {
  background: linear-gradient(135deg, #007bff, #00b4d8);
}
.gradient-green {
  background: linear-gradient(135deg, #0c9, #007b55);
}
.gradient-purple {
  background: linear-gradient(135deg, #6a00f4, #9b2eff);
}

/* افکت hover کارت‌ها */
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.2);
}

/* جدول تراکنش‌ها */
.transaction-card {
  background: #0f141b;
  border-radius: 18px;
  overflow: hidden;
}
.transaction-card table {
  border-collapse: collapse;
}
.transaction-card thead {
  background: rgba(255, 255, 255, 0.02);
}
.transaction-card tbody tr {
  transition: all 0.3s ease;
}
.transaction-card tbody tr:hover {
  background: rgba(0, 180, 255, 0.05);
}
.transaction-card .text-info {
  color: #00b4d8 !important;
}
/* کارت‌ها */
.stat-card {
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.2);
}

/* رنگ‌های گرادینت کارت‌ها */
.gradient-blue {
  background: linear-gradient(135deg, #007bff, #00b4d8);
}

.gradient-purple {
  background: linear-gradient(135deg, #6a00f4, #9b2eff);
}

/* کارت وضعیت حساب */
.status-card {
  border: 2px solid transparent;
  font-weight: 600;
}

.status-card.active {
  background: linear-gradient(135deg, #00c851, #007e33);
  border-color: rgba(0, 255, 140, 0.4);
  box-shadow: 0 0 15px rgba(0, 255, 140, 0.2);
}

.status-card.blocked {
  background: linear-gradient(135deg, #ff4444, #cc0000);
  border-color: rgba(255, 50, 50, 0.4);
  box-shadow: 0 0 15px rgba(255, 80, 80, 0.2);
}

.stat-card h6 {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 6px;
}

.stat-card h3 {
  font-weight: 700;
  margin: 0;
  font-size: 1.6rem;
}

.stat-card small {
  font-size: 0.8rem;
  opacity: 0.8;
}
.orders-section {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

/* کارت سفارش */
.order-card {
  background: linear-gradient(145deg, #0f141b, #101820);
  border: 1px solid rgba(0, 180, 255, 0.15);
  border-radius: 14px;
  padding: 18px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.order-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 255, 0.35);
  box-shadow: 0 0 25px rgba(0, 180, 255, 0.25);
}

/* آیکون سرویس */
.order-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px;
  box-shadow: 0 0 8px rgba(0, 180, 255, 0.1);
}

/* متن و وضعیت */
.order-card h6 {
  font-weight: 600;
}

.badge {
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 8px;
}

/* footer */
.order-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 8px;
}
.order-modal {
  background: rgba(20, 25, 32, 0.97);
  backdrop-filter: blur(18px);
  border-radius: 16px;
  border: 1px solid rgba(0, 180, 255, 0.25);
  color: white;
  direction: rtl;
  text-align: right;
  box-shadow: 0 0 25px rgba(0, 180, 255, 0.15);
}

.order-modal .modal-header {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: none;
}

.order-modal .modal-body p {
  margin-bottom: 6px;
  font-size: 0.93rem;
  color: #ddd;
}

.order-modal strong {
  color: #00b4d8;
}

.input-group {
  border-radius: 12px;
  overflow: hidden;
}

.input-group .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: white;
}

.input-group .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 10px rgba(0, 180, 255, 0.3);
}

.input-group button {
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: #00b4d8;
  transition: 0.2s;
}

.input-group button:hover {
  background: #00b4d8;
  color: white;
}

/* هشدار کپی */
.copy-alert {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: #008f3a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 9999;
}

.copy-alert.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* موبایل */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 0 auto;
    max-width: 90%;
  }
  .order-modal {
    border-radius: 12px;
    height: auto;
  }
}
.order-card {
  background: rgba(25, 30, 40, 0.85);
  border: 1px solid rgba(0, 180, 255, 0.1);
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  cursor: default;
}

.order-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 255, 0.35);
  box-shadow: 0 0 18px rgba(0, 180, 255, 0.15);
  background: rgba(30, 35, 45, 0.95);
}

.order-card .order-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 180, 255, 0.2);
  transition: all 0.25s ease;
}

.order-card:hover .order-icon {
  transform: scale(1.06);
  box-shadow: 0 0 18px rgba(0, 180, 255, 0.35);
}

.order-card h6 {
  font-size: 0.95rem;
}

.order-card .btn-outline-info {
  border-color: rgba(0, 180, 255, 0.4);
  color: #00b4d8;
  font-weight: 500;
  transition: all 0.25s ease;
}

.order-card .btn-outline-info:hover {
  background: #00b4d8;
  color: #fff;
  border-color: #00b4d8;
  box-shadow: 0 0 10px rgba(0, 180, 255, 0.3);
}

.order-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 6px;
}

/* موبایل */
@media (max-width: 768px) {
  .order-card {
    text-align: center;
  }

  .order-card .d-flex {
    flex-direction: column;
  }

  .order-card .order-icon {
    margin-bottom: 10px;
  }

  .order-card .btn-outline-info {
    width: 100%;
  }
}
.checkout-card {
  background: rgba(25, 30, 40, 0.95);
  border: 1px solid rgba(0, 180, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 180, 255, 0.08);
  transition: all 0.3s ease;
}

.checkout-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 180, 255, 0.3);
}

.btn-gradient {
  background: linear-gradient(90deg, #007bff, #00d4ff);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 180, 255, 0.2);
  transition: 0.3s;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 180, 255, 0.4);
}

/* موبایل */
@media (max-width: 768px) {
  .checkout-card {
    padding: 1.5rem;
  }
  .checkout-container h3 {
    font-size: 1.3rem;
  }
}
.alert-warning {
  background: rgba(255, 200, 0, 0.1);
  color: #ffcc00;
  border: 1px solid rgba(255, 200, 0, 0.3);
}

.btn-gradient {
  background: linear-gradient(90deg, #007bff, #00d4ff);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 180, 255, 0.25);
  transition: 0.3s;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 180, 255, 0.4);
}

.modal-content {
  background: rgba(25, 30, 40, 0.95);
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(0, 180, 255, 0.2);
}
.alert-warning {
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 200, 0, 0.3);
  color: #ffdd57;
  font-weight: 500;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 rgba(255, 215, 0, 0.1); }
  50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
  100% { box-shadow: 0 0 0 rgba(255, 215, 0, 0.1); }
}

.vpn-logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
  transition: 0.3s ease;
}
.vpn-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.btn-gradient {
  background: linear-gradient(90deg, #0066ff, #00d4ff);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.25);
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.4);
}

.btn-outline-light {
  color: #ddd;
  border: 1px solid rgba(255,255,255,0.3);
  font-weight: 500;
  border-radius: 10px;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}




.confirm-box {
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}
.confirm-box:hover {
  border-color: rgba(0,180,255,0.4);
  box-shadow: 0 0 20px rgba(0,180,255,0.1);
}

.form-check-input {
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.4);
}
.form-check-input:checked {
  background-color: #00bfff;
  border-color: #00bfff;
}
.form-check-label {
  cursor: pointer;
}

.btn-gradient.disabled {
  pointer-events: none;
  filter: grayscale(0.7);
}
.status-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 85vh;
}

.status-card {
  background: #15191f;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.05);
  width: 95%;
  max-width: 500px;
  text-align: center;
}

.status-icon i {
  font-size: 4rem;
  background: rgba(0, 255, 170, 0.1);
  padding: 20px;
  border-radius: 50%;
}

.info-box {
  text-align: right;
  direction: rtl;
  font-size: 0.95rem;
  line-height: 2;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}
.payment-status-card {
  background: radial-gradient(circle at top, rgba(25, 25, 30, 0.95), rgba(10, 10, 15, 0.96));
  border-radius: 20px;
  padding: 45px 30px;
  max-width: 550px;
  animation: slide-up 0.7s ease;
  box-shadow: 0 0 40px rgba(0, 200, 255, 0.05);
  transition: 0.4s ease;
}
.payment-status-card:hover {
  box-shadow: 0 0 60px rgba(0, 255, 255, 0.12);
}

.status-icon i {
  font-size: 5rem;
  text-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
  animation: pulse 1.8s infinite ease-in-out;
}

.factor-details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 0.95rem;
  max-width: 360px;
  text-align: right;
  direction: rtl;
  animation: fade-in-delayed 1s ease;
}

.btn-gradient {
  background: linear-gradient(90deg, #0078ff, #00e5ff);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.25);
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}
.btn-outline-light {
  border-radius: 10px;
  font-weight: 500;
  border-color: rgba(255,255,255,0.25);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes fade-in-delayed {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.server-desc li {
    font-size: 0.88rem;
    color: #b0c4de;
    margin-bottom: 0.4rem;
    align-items: center;
    line-height: 1.5;
}

.server-desc i {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.server-card-animated {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.server-card-animated::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.server-card-animated:hover::before {
    opacity: 1;
}

.server-card-animated:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 172, 193, 0.4);
}

.icon-wrapper {
    padding: 1.8rem 1rem 1rem;
    text-align: center;
    flex-shrink: 0;
}

.icon-wrapper img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.server-card-animated:hover .icon-wrapper img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 172, 193, 0.3);
}

.server-content {
    padding: 0 1.2rem 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.server-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0.5rem 0 0.4rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.server-desc {
    font-size: 0.88rem;
    color: #b0c4de;
    margin: 0 0 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.btn-view-plans {
    background: linear-gradient(135deg, #00acc1, #00838f);
    color: white;
    border: none;
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 172, 193, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-view-plans::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-view-plans:hover::before {
    width: 300px;
    height: 300px;
}

.btn-view-plans:hover {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 172, 193, 0.4);
}

@media (max-width: 576px) {
    .icon-wrapper img { width: 60px; height: 60px; }
    .server-title { font-size: 1rem; }
}


/* Smaller menu */
.small-menu-btn {
    font-size: 0.9rem;
    transition: 0.25s ease;
}
.small-menu-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* Items */
.small-item {
    font-size: 0.92rem;
    padding: 8px 12px !important;
    transition: 0.25s ease;
}
.small-item:hover {
    background: rgba(255,255,255,0.05);
}

/* Slide + Fade animation */
.menu-animate {
    background: #0f0f11 !important;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}

.dropdown.show .menu-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Languages */
.lang-btn {
    padding: 4px 10px;
    font-size: 0.85rem;
    border-radius: 6px;
    color: #ddd;
    text-decoration: none;
    transition: 0.25s;
}
.lang-btn:hover {
    background: rgba(255,255,255,0.1);
}
.active-lang {
    background: #1f6feb;
    color: white;
    font-weight: bold;
}
/* همبرگری */
.menu-btn {
    transition: .25s ease;
}
.menu-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* آیتم‌های منو */
.menu-item {
    color: #ddd !important;
    font-size: 0.9rem;
    padding: 8px 12px !important;
    transition: .25s ease;
}
.menu-item:hover {
    background: rgba(255,255,255,0.07) !important;
}

/* زبان‌ها */
.lang-flag {
    padding: 4px;
    border-radius: 6px;
    transition: .25s;
}
.lang-flag:hover {
    background: rgba(255,255,255,0.08);
}
.active-lang {
    background: #1f6feb;
}

/* انیمیشن باز شدن */
.menu-animate {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}
.dropdown.show .menu-animate {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu {
    right: 0 !important;
    left: auto !important;
}

.ring-2 { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.6) !important; }
.ring-offset-dark { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.6), 0 0 0 6px #121214 !important; }
.dropdown-item:hover { background: rgba(80, 80, 100, 0.3) !important; }