.shahkar-toast {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999999 !important;
  max-width: 260px;
  line-height: 1.7;
}

.shahkar-toast.show {
  opacity: 1;
  transform: translateY(0);
}










.expert-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.expert-modal.hidden {
  display: none;
}

.expert-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 30px 35px;
  width: 85%;
  max-width: 360px;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
  animation: expertShow 0.35s ease-out;
}

@keyframes expertShow {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

.expert-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.expert-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.expert-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.expert-btn {
  background: gold;
  color: #000;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  width: 100%;
}






.status.expert {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 15px;
    animation: fadeIn 0.4s ease-out;
}


.status.success {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 15px;
    animation: fadeIn 0.4s ease-out;
}

.status.error {
    background: linear-gradient(135deg, #e53935, #b71c1c);
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 15px;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}








.vpn-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  backdrop-filter: blur(4px);
}

.vpn-modal.hidden {
  display: none;
}

.vpn-card {
  width: 85%;
  max-width: 380px;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  animation: vpnPop 0.35s ease;
}

@keyframes vpnPop {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.vpn-icon {
  font-size: 60px;
  color: #fff;
  margin-bottom: 15px;
}

.vpn-title {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
}

.vpn-text {
  color: #f1f1f1;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.vpn-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff4444, #ff2222);
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255,0,0,0.35);
  transition: transform 0.15s ease;
}

.vpn-btn:active {
  transform: scale(0.95);
}




















:root {
    --bg: #0f172a;
    --card-bg: #0b1120;
    --text: #e5e7eb;
    --muted: #94a3b8;
    --border: #1e293b;
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --danger: #ef4444;
    --input-bg: #020617;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: IRANSans, system-ui, sans-serif;
}

body {
    background: radial-gradient(circle at top, #1e293b 0%, #020617 60%, #000 100%);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 20px 12px;
}

/* Container */
.app-container {
    width: 100%;
    max-width: 420px;
}

/* Logo Section */
.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.logo-box img {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    border: 1px solid rgba(148,163,184,0.4);
    box-shadow: 0 0 18px rgba(56,189,248,0.35);
}

.logo-text h1 {
    font-size: 1rem;
    font-weight: 600;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--muted);
}

/* Card */
.login-card {
    background: linear-gradient(145deg, rgba(15,23,42,0.96), rgba(15,23,42,0.98));
    padding: 20px 16px;
    border-radius: 18px;
    border: 1px solid rgba(148,163,184,0.25);
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}

/* Fields */
.field {
    margin-bottom: 16px;
}

label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 6px;
    display: block;
}

.input-wrapper {
    position: relative;
}

.prefix {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 0.8rem;
}

input[type="text"],
input[type="tel"] {
    width: 100%;
    padding: 12px 14px;
    padding-left: 48px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.9rem;
    outline: none;
    transition: 0.2s;
}

input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 1px rgba(56,189,248,0.4);
}

/* Captcha */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-img {
    width: 120px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    cursor: pointer;
    background: #fff;
}

/* Errors */
.error {
    display: none;
    font-size: 0.75rem;
    color: var(--danger);
    margin-top: 4px;
}

/* Button */
.btn-primary {
    width: 100%;
    padding: 12px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ecfdf5;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 12px 24px rgba(22,163,74,0.35);
    transition: 0.15s;
}

.btn-primary:active {
    transform: translateY(1px);
    filter: brightness(0.95);
}

/* Status Message */
.status {
    margin-top: 12px;
    text-align: center;
    font-size: 0.8rem;
    display: none;
}

.status.error {
    color: var(--danger);
}

.status.success {
    color: var(--primary);
}

/* Mobile Optimization */
@media (max-width: 480px) {
    .login-card {
        padding: 18px 14px;
    }
}
