/* ---- Theme tokens ---- */
:root {
  --bg-0: #010814; /* primary deep background */
  --bg-1: #0a2239; /* brand navy */
  --fg-0: #e6f1ff; /* light text */
  --muted: #8fa5c1; /* muted text */
  --brand: #f7c04a; /* Arya gold */
  --brand-2: #8cf0ff; /* cyan accent */
  --border: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.04);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --font-heading: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;  
  --arya-bg: #050406;
  --neon1: #5b00ff; /* purple */
  --neon2: #00d0ff; /* cyan */
  --accent: #ffb86b; /* warm */
  --glass: rgba(255,255,255,0.03);
  --bg: #050406;
  --text: #ffb347; /* warm logo color for links */
  --neon-purple: #5b00ff;
  --neon-cyan: #00d0ff; 
}


html,
body {
  background: radial-gradient(1200px 800px at 75% -10%, rgba(247, 192, 74, 0.15), transparent 45%), radial-gradient(900px 600px at -10% 20%, rgba(140, 240, 255, 0.12), transparent 40%), var(--bg-0);
  color: var(--fg-0);
  
}
h1,h2,h3,h4,h5{ font-family: var(--font-heading); letter-spacing: 0.2px; }
body{ font-family: var(--font-body); }

input[type="number"],input[type="email"],input[type="text"],input[type="password"]{
    background:#0f172a;
    border:1px solid #334155;
    color:#e2e8f0;
    border-radius:10px;
    padding:12px 14px;
    font-size:15px;
    outline:none
}
.summary{background:#0f172a;border:1px dashed #334155;border-radius:10px;padding:12px 14px;font-size:14px;color:#cbd5e1}
.summary strong{color:#ffffff}
.error{color:#ff6b6b;font-size:13px;margin-top:6px;display:none}
.hint{font-size:12px;color:#9fb0c7}

.digits{
font-variant-numeric: tabular-nums lining-nums;
font-feature-settings: "tnum","lnum";
letter-spacing: 0.04em;
}
a {
  color: var(--brand);
}
.copy-btn{color: var(--brand);}
.copy-btn:hover{cursor: pointer;}
.glow-gold {
  text-shadow: 0 0 14px rgba(247, 192, 74, 0.35), 0 0 40px rgba(247, 192, 74, 0.2);
}
.img-brand {
    width: 20px;
    height: 20px;
}
.select2-selection__rendered {
    line-height: 31px !important;
}
.select2-container .select2-selection--single {
    height: 35px !important;
}
.select2-selection__arrow {
    height: 34px !important;
}

.btn-arya {
  background: linear-gradient(135deg, #f7c04a, #f9d476);
  color: #0b1020;
  border: none;
  box-shadow: 0 8px 18px rgba(247, 192, 74, 0.35);
}
.btn-arya:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1px solid var(--brand);
  color: var(--fg-0);
}
.btn-ghost:hover {
  background: rgba(247, 192, 74, 0.1);
}
.navglass {
  background: rgba(1, 8, 20, 0.6);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.badge-chip {
  background: rgba(247, 192, 74, 0.12);
  border: 1px solid rgba(247, 192, 74, 0.35);
  color: var(--brand);
}
.card-neo {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}
.hero-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg:before,
.hero-bg:after {
    content: "";
    position: absolute;
    background-image: url("../img/banner-gradient.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: -1;
}


.hero-bg2 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg2:before,
.hero-bg2:after {
    content: "";
    position: absolute;
    background-image: url("../img/bg-header2.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
}


.story-bg{ 
   background-image: url("../img/aryachain2.png");   
   background-repeat: no-repeat;
   background-size: 100% 100%;
   background-position: center;
   height: 350px;
}

.referral-btn {
  background: linear-gradient(135deg, #ff9500, #ff2d55);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 10px 28px;
  box-shadow: 0 0 20px rgba(255, 87, 34, 0.6), 0 0 40px rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.referral-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 25px rgba(255, 100, 0, 0.8), 0 0 60px rgba(255, 0, 0, 0.4);
  background: linear-gradient(135deg, #ff5f00, #ff3b30);
}


.referral-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,200,0,0.4) 0%, rgba(255,0,0,0) 70%);
  animation: flameMove 3s infinite ease-in-out;
  mix-blend-mode: screen;
}

@keyframes flameMove {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(10%, -10%) scale(1.2); opacity: 1; }
}


.card-bg{
   background-image: url("../img/card2.png");   
   background-repeat: no-repeat;
   background-size: 100% 100%;
   background-position: center;
   height: 263px;
}
.hero-bg:before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(247, 192, 74, 0.28), transparent 60%);
  bottom: -120px;
  right: -120px;
}

.bc-green{border-color: #1a7145 !important;}
.bc-orange{border-color: #cc6627 !important;}
.bc-mor{border-color: #65307c !important;}
.bc-red{border-color: #871630 !important;}

.section {
  padding: 80px 0;
}
.muted {
  color: var(--muted);
}

.text-justify{text-align:justify !important;}

 .team-card{
    background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border:1px solid var(--border); border-radius:18px; box-shadow: var(--shadow);
    padding:22px; height:100%;
  }
  .avatar-wrap{ position:relative; width:120px; height:120px; margin:0 auto; }
  .avatar-team{
    width:120px; height:120px; object-fit:cover; border-radius:50%;
    border:2px solid rgba(247,192,74,.65); box-shadow:0 8px 22px rgba(247,192,74,.18); background:#0b1020;
  }
  .social a{
    width:36px; height:36px; border-radius:50%; display:grid; place-items:center;
    border:1px solid var(--border); background:rgba(255,255,255,.04);
    transition:transform .15s ease, box-shadow .15s ease;
  }
  .social a:hover{ transform:translateY(-2px); box-shadow:0 8px 20px rgba(247,192,74,.25); border-color:rgba(247,192,74,.55); }
  .social svg{ width:18px; height:18px; }

.brand-grad {
  background: linear-gradient(90deg, #f7c04a, #ffe39b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Section layout */
.arya-change-pass {
  display:flex;
  align-items:center;
  justify-content:center;
  padding:48px 20px;
  background: radial-gradient(900px 200px at 10% 10%, rgba(107,0,255,0.03), transparent),
              radial-gradient(700px 180px at 90% 90%, rgba(0,217,255,0.02), transparent),
              var(--bg);
  color:var(--text);
}

/* Card */
.arya-card {
  width:100%;
  max-width: var(--card-width);
  background: var(--card-bg);
  border-radius: var(--radius);
  padding:28px;
  box-shadow: var(--shadow), 0 0 28px rgba(107,0,255,0.06);
  border: 1px solid rgba(107,0,255,0.12);
  position:relative;
  overflow:hidden;
}

/* Subtle neon rim */
.arya-card::before {
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: calc(var(--radius) + 2px);
  pointer-events:none;
  box-shadow: 0 0 30px rgba(107,0,255,0.06), inset 0 1px 0 rgba(255,255,255,0.02);
}

/* Title and subtitle */
.arya-card h2 {
  margin:0 0 6px 0;
  font-size:20px;
  letter-spacing:0.2px;
  color:#fff;
  text-shadow: 0 0 8px rgba(107,0,255,0.12);
}
.arya-sub {
  margin:0 0 18px 0;
  color:var(--muted);
  font-size:13px;
}

.payment-card {    
    border-radius: 16px;
    border: 1px solid #1b2b4a;    
    background: radial-gradient(circle at top left, #07142b, #020818 55%, #00040a 100%);
    color: #e5f0ff;
    box-shadow: 0 0 24px rgba(0, 255, 200, 0.12), 0 0 40px rgba(0, 0, 0, 0.9);
}

#payment-widget {
    max-width: 460px;
    margin: 24px auto;
    padding: 22px 20px;
    border-radius: 16px;
    border: 1px solid #1b2b4a;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
   
    background: radial-gradient(circle at top left, #07142b, #020818 55%, #00040a 100%);
    color: #e5f0ff;
    box-shadow: 0 0 24px rgba(0, 255, 200, 0.12), 0 0 40px rgba(0, 0, 0, 0.9);
}

#payment-widget h3 {
    margin: 0 0 14px 0;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f7f9ff;
}

#payment-widget h3 span {
    color: #ffd86b;
}

/* Timer */
.timer-box {
    text-align: center;
    margin-bottom: 18px;
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(5, 18, 40, 0.95), rgba(8, 26, 64, 0.95));
    border: 1px solid #223964;
    box-shadow: 0 0 16px rgba(0, 224, 255, 0.1);
}

.timer-label {
    font-size: 12px;
    color: #9fb3d9;
    margin-bottom: 4px;
}

.timer-value {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #00e0ff;
    text-shadow: 0 0 8px rgba(0, 224, 255, 0.8);
}

/* Status list */
.status-steps {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.status-step {
    display: flex;
    align-items: center;
    padding: 10px 11px;
    border-radius: 12px;
    margin-bottom: 8px;
    background: radial-gradient(circle at top left, rgba(10, 26, 56, 0.85), rgba(2, 8, 24, 0.96));
    border: 1px solid #1b2b4a;
    font-size: 13px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.status-step:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(0, 224, 255, 0.13);
}

.status-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 9px;
    flex-shrink: 0;
    border: 2px solid #3a4863;
    background: radial-gradient(circle, #101829, #050a14);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

.status-text-main {
    font-weight: 600;
    color: #f2f5ff;
}

.status-text-sub {
    font-size: 11px;
    color: #9aa9c9;
}

.status-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* Active & done states */
.status-step.active {
    border-color: #00e0ff;
    background: radial-gradient(circle at top left,
        rgba(0, 224, 255, 0.22),
        rgba(2, 10, 32, 0.98));
    box-shadow: 0 0 18px rgba(0, 224, 255, 0.25);
}

.status-step.active .status-icon {
    border-color: #00e0ff;
    background: radial-gradient(circle, #00e0ff, #007bff);
    box-shadow: 0 0 10px rgba(0, 224, 255, 0.85);
    animation: pulseActive 1.4s infinite ease-in-out;
}

.status-step.done {
    border-color: #21d074;
    background: radial-gradient(circle at top left,
        rgba(21, 208, 116, 0.18),
        rgba(3, 14, 30, 0.98));
    box-shadow: 0 0 14px rgba(21, 208, 116, 0.22);
}

.status-step.done .status-icon {
    border-color: #21d074;
    background: radial-gradient(circle, #21d074, #0b8a4a);
    box-shadow: 0 0 9px rgba(21, 208, 116, 0.8);
}

.expired-message {
    margin-top: 12px;
    text-align: center;
    font-size: 12px;
    color: #ff7075;
}

/* Small note under title (optional) */
.payment-note {
    text-align: center;
    font-size: 11px;
    color: #8694b8;
    margin-bottom: 10px;
}

/* Keyframes */
@keyframes pulseActive {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 224, 255, 0.75);
    }
    50% {
        transform: scale(1.07);
        box-shadow: 0 0 16px rgba(0, 224, 255, 1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 224, 255, 0.75);
    }
}

@media (max-width: 480px) {
    #payment-widget {
        margin: 16px;
        padding: 18px 14px;
    }
}

/* ******************************* */
.support-container {
    background: rgba(20, 20, 30, 0.9);
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
  }

  .support-container h2 {
    text-align: center;
    color: #00eaff;
    text-shadow: 0 0 8px #00eaff;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  label {
    display: block;
    color: #aaa;
    margin-bottom: 6px;
    font-size: 0.9em;
  }

  input, textarea {
    width: 100%;
    background-color: #151520;
    border: 1px solid #00eaff55;
    border-radius: 8px;
    color: #fff;
    padding: 10px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  input:focus, textarea:focus {
    border-color: #00eaff;
    box-shadow: 0 0 10px #00eaff88;
  }

  textarea {
    height: 120px;
    resize: none;
  }

  .submit-btn {
    background: linear-gradient(90deg, #00eaff, #ff00ff);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;    
    transition: transform 0.2s, box-shadow 0.2s;    
    letter-spacing: 1px;
  }

  .submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00eaffaa;
  }

  .success-message {
    display: block;
    margin-top: 15px;
    color: #00ffcc;
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

/* ********************************* */

.arya-claim {    
    padding: 36px;
    color: #eaeef8;    
  }

  .claim-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 22px;
    align-items: start;
  }

  /* Claim card */
  .claim-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid rgba(107,0,255,0.12);
    box-shadow: 0 12px 40px rgba(11,8,20,0.7), 0 0 30px rgba(107,0,255,0.04);
  }

  .claim-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 0 10px rgba(107,0,255,0.08);
  }

  .claim-note { color: var(--muted); margin: 0 0 16px 0; line-height: 1.45; }

  .claim-form .label { display:block; font-size:13px; color:var(--muted); margin-bottom:8px; }
  .claim-form input[type="text"] {
    width:100%;
    padding:12px 14px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.03);
    background: rgba(10,10,12,0.7);
    color:#fff;
    font-size:14px;
    outline:none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
  }
  .claim-form input[disabled] { opacity:0.6; cursor:not-allowed; }

  .claim-actions {
    display:flex;
    gap:12px;
    margin-top:12px;
    align-items:center;
  }

  .btn {
    padding:10px 14px;
    border-radius:10px;
    border:0;
    cursor:pointer;
    font-weight:700;
    font-size:14px;
  }

  .btn-claim {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    color:#040406;
    box-shadow: 0 12px 36px rgba(0,0,0,0.6), 0 0 18px rgba(107,0,255,0.12);
    transition: transform .16s ease, box-shadow .16s ease;
  }
  .btn-claim[disabled] {
    filter: grayscale(20%) opacity(0.9);
    transform: none;
    box-shadow:none;
  }
  .btn-claim:hover:not([disabled]){ transform: translateY(-3px); }

  .btn-ghost {
    background: transparent;
    color: var(--neon-cyan);
    border:1px solid rgba(0,217,255,0.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  }

  .small-info { color: #b8b9bf; font-size:13px; margin-top:12px; }

  /* Updates card */
  .updates-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
    border-radius: var(--radius);
    padding: 18px;
    border: 1px solid rgba(0,217,255,0.06);
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    height: 420px;
    display:flex;
    flex-direction:column;
  }

  .updates-title { margin:0 0 12px 0; color:#fff; font-size:16px; text-shadow: 0 0 8px rgba(0,217,255,0.06); }

  .updates-list {
    flex:1;
    overflow:auto;
    padding-right:8px;
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  .updates-empty { color:var(--muted); font-size:14px; margin-top:8px; }

  /* single update item */
  .update-item {
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:12px;
    border-radius:10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
    border:1px solid rgba(255,255,255,0.02);
    transition: background .12s;
  }

  .update-index {
    min-width:44px;
    height:44px;
    border-radius:10px;
    background: linear-gradient(180deg, var(--neon-purple), rgba(107,0,255,0.18));
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:700;
    box-shadow: 0 4px 18px rgba(107,0,255,0.10);
  }

  .update-body { flex:1; }
  .update-date { color:var(--muted); font-size:12px; margin-bottom:6px; }
  .update-text { color:#e9eef8; font-size:14px; line-height:1.35; }

  /* scrollbar styling */
  .updates-list::-webkit-scrollbar { width:10px; }
  .updates-list::-webkit-scrollbar-track { background: transparent; }
  .updates-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(107,0,255,0.18), rgba(0,217,255,0.18));
    border-radius:10px;
  }

  /* responsive */
  @media (max-width: 980px) {
    .claim-inner { grid-template-columns: 1fr; }
    .updates-card { height: 340px; margin-top:12px; }
  }

/* progress bar */
.progress-wrap{background:var(--glass); border-radius:12px; padding:12px}
.bar{height:16px; background:linear-gradient(90deg,var(--neon1),var(--neon2),var(--accent)); border-radius:12px; width:0%; transition:width 700ms ease}
.progress-meta{display:flex; justify-content:space-between; font-size:13px; color:#cfcfcf; margin-top:8px}

 /* donate cards */
.cards{display:flex; flex-direction:column; gap:14px}
.card{background:linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005)); padding:14px; border-radius:12px; display:flex; gap:12px; align-items:center;}
.icon{width:56px; height:56px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:20px; box-shadow:0 4px 18px rgba(0,0,0,0.6);}
.card h3{margin:0; font-size:16px}
.card p{margin:0; color:#a9a9a9; font-size:13px}
.btn{background:linear-gradient(90deg,var(--neon1),var(--neon2)); color:#050406; border:none; padding:10px 12px; border-radius:8px; font-weight:600; cursor:pointer}

/* crypto list */
.crypto-list{display:flex; flex-direction:column; gap:8px}
.crypto-item{display:flex; gap:12px; align-items:center}
.addr{font-family:monospace; font-size:13px; color:#cfcfcf; background:rgba(255,255,255,0.02); padding:8px 10px; border-radius:8px}

/* supporters wall */
.wall{max-height:260px; overflow:auto; margin-top:12px; padding-right:8px}
.supporter{display:flex; gap:12px; align-items:center; padding:8px 6px; border-bottom:1px solid rgba(255,255,255,0.02)}
.dot{width:10px; height:10px; border-radius:50%; background:var(--neon2); box-shadow:0 0 8px var(--neon2)}


/* Form layout */
.pass-form {
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* Form group */
.form-group {
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* Label text */
.label-text {
  font-size:13px;
  color:var(--muted);
  font-weight:600;
}

/* Inputs */
.pass-form input[type="password"]{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.03);
  color:var(--text);
  font-size:15px;
  outline: none;
  transition: box-shadow .2s ease, border-color .18s ease, transform .12s ease;
}

/* Native browser invalid style is kept; add stronger visual */
.pass-form input:invalid {
  border-color: rgba(255,107,107,0.9);
  box-shadow: 0 0 8px rgba(255,107,107,0.06);
}

/* Focus state — neon glow */
.pass-form input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 6px 24px rgba(0,217,255,0.06), 0 0 12px rgba(107,0,255,0.06);
  transform: translateY(-1px);
}

/* Placeholder color */
.pass-form input::placeholder { color: rgba(255,255,255,0.18); }

/* Actions */
.form-actions {
  display:flex;
  justify-content:space-between;
  margin-top:6px;
}

/* Change button — neon style */
.btn-change {
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
  border: none;
  color: #050406;
  font-weight:800;
  padding:10px 18px;
  border-radius:10px;
  cursor:pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.55), 0 0 18px rgba(107,0,255,0.18);
  transition: transform .16s ease, box-shadow .18s ease;
}

/* Hover/focus for accessibility */
.btn-change:hover,
.btn-change:focus {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.6), 0 0 34px rgba(0,217,255,0.22);
}

/* Disabled style (if browser disables on invalid) */
.btn-change:disabled {
  opacity:0.5;
  cursor:not-allowed;
  transform:none;
  box-shadow:none;
}

/* Responsive tweaks */
@media (max-width: 560px) {
  .arya-card { padding:18px; border-radius:10px; }
  .btn-change { width:100%; justify-self:stretch; }
  .form-actions { justify-content:stretch; }
}

/* === AryaChain Neon Modal Theme + Cards + Table === */
.arya-modal {
  background: var(--bg-0);
  border: 1px solid rgba(91,0,255,0.35);
  border-radius: 14px;
  color: #e8e8e8;
  box-shadow: 0 12px 40px rgba(11,8,20,0.7), 0 0 36px rgba(91,0,255,0.06);
}

/* title glow */
.text-glow { color:#fff; text-shadow: 0 0 10px #5b00ff, 0 0 18px #00d9ff; }

/* Buttons */
.btn-neon {
  background: linear-gradient(90deg, #5b00ff, #00d9ff);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 8px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 14px rgba(91,0,255,0.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-neon:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(0,217,255,0.25); }

.btn-outline-neon {
  border:1px solid rgba(0,217,255,0.7);
  color: #00d9ff;
  background: transparent;
  font-weight:600;
  border-radius:10px;
  padding:7px 14px;
}
.btn-close-white { filter: invert(1) drop-shadow(0 0 6px #00d9ff); }

/* Summary cards */
.order-card{
  min-width: 180px;
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 10px 12px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
.order-card.accent{
  border:1px solid rgba(91,0,255,0.28);
  background: linear-gradient(90deg, rgba(91,0,255,0.06), rgba(0,217,255,0.03));
  box-shadow: 0 8px 26px rgba(91,0,255,0.06);
}
.card-top{display:flex; justify-content:space-between; align-items:center;}
.card-title{font-size:13px; color:#cfcfcf; font-weight:600;}
.card-value{font-size:20px; font-weight:800; color:#fff; text-shadow: 0 0 8px rgba(91,0,255,0.12); }
.card-bottom{font-size:12px; color:#a9a9a9; margin-top:8px;}

/* Neon table */
.neon-table-wrap{ background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005)); border-radius:10px; padding:6px; }
.neon-table thead th{ color:#cbd5ff; font-weight:700; border-bottom:1px solid rgba(255,255,255,0.03); }
.neon-table tbody tr { border-bottom: 1px dashed rgba(255,255,255,0.03); }
.neon-table tbody td { color:#dcdcdc; vertical-align: middle; }

/* status badges */
.status-badge {
  padding:6px 10px; border-radius:999px; font-weight:700; font-size:13px;
  display:inline-block;
}
.status-pending { background: rgba(255,200,60,0.08); color:#ffb86b; border:1px solid rgba(255,200,60,0.12); }
.status-done { background: rgba(0,200,120,0.06); color:#7ef6c8; border:1px solid rgba(0,200,120,0.1); }
.status-failed { background: rgba(255,60,60,0.06); color:#ff7b7b; border:1px solid rgba(255,60,60,0.1); }

/* action button small */
.action-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.04);
  color: #fff;
  padding:6px 8px;
  border-radius:8px;
  font-weight:600;
  transition: all .16s ease;
}
.action-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.6); }

/* responsive tweaks */
@media (max-width: 700px) {
  .order-card{ min-width: 140px; }
  .card-value{ font-size:18px; }
  .neon-table thead th:nth-child(6), .neon-table td:nth-child(6) { display:none; } /* hide actions on very small */
}

/* Generic loader container (relative parent) */
.loader-container {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));;
  border-radius: 12px;
  overflow: hidden;
}

/* Loader overlay */
.arya-inline-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 4, 10, 0.7);
  backdrop-filter: blur(6px);
  z-index: 50;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

/* When visible */
.arya-inline-loader.active {
  opacity: 1;
  pointer-events: auto;
}

/* Logo wrapper */
.arya-inline-loader .logo {
  width: 64px;
  height: 64px;
  animation: spin 4s linear infinite, pulse 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arya-inline-loader img {
  width: 60%;
  height: auto;
  filter: drop-shadow(0 0 8px var(--neon-purple))
          drop-shadow(0 0 12px var(--neon-cyan));
}

/* Animations */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* base navbar */
.arya-nav{background: linear-gradient(180deg, rgba(6,8,12,0.98), rgba(3,4,6,0.95)); border-bottom: 1px solid rgba(255,255,255,0.03); position:relative; z-index:40;}
.nav-inner{max-width:1300px; margin:0 auto; display:flex; align-items:center; gap:18px; padding:12px 20px;}
.logo img{height:34px; display:block;}

/* main links */
.nav-links{display:flex; gap:18px; list-style:none; margin:0; padding:0; flex:1; align-items:center;}
.nav-links a{color: var(--text); text-decoration:none; font-weight:600; padding:8px 6px; border-radius:6px; transition: color .18s, background .18s; font-size:15px;}
.nav-links a:hover{ color: #fff; background: rgba(255,255,255,0.02); }

/* CTA group */
.nav-ctas{display:flex; gap:12px; align-items:center;}

/* shared nav btn */
.nav-btn{display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:10px; text-decoration:none; color:#fff; font-weight:700; font-size:14px; background:transparent; border:1px solid transparent; transition: all .2s ease;}

/* icon */
.icon{width:18px; height:18px; fill: currentColor; opacity:0.95; filter: drop-shadow(0 0 6px rgba(0,0,0,0.4));}

/* label - hide on tight screens */
.nav-btn .lbl{display:inline-block;}

/* Presale style */
.nav-presale{ color: var(--neon-cyan); border-color: rgba(0,208,255,0.12); }
.nav-presale:hover{ color: var(--neon-cyan); box-shadow: 0 6px 18px rgba(0,208,255,0.08); transform: translateY(-2px); }

/* Support style */
.nav-support{ background: linear-gradient(90deg, rgba(91,0,255,0.12), rgba(0,208,255,0.06)); color:#fff; border:1px solid rgba(91,0,255,0.14); padding:8px 14px; }
.nav-support:hover{ box-shadow: 0 0 14px rgba(91,0,255,0.18); transform: translateY(-2px); }

/* Signin style */
.nav-signin{ color: #fff; border:1px solid rgba(255,255,255,0.06); }
.nav-signin:hover{ box-shadow: 0 6px 18px rgba(255,255,255,0.04); transform: translateY(-2px); }

/* hamburger (mobile) */
.nav-toggle{display:none; background:transparent; border:0; cursor:pointer; padding:8px; margin-left:auto;}
.hamb{display:block; width:22px; height:2px; background:var(--muted); position:relative; transition: all .25s ease;}
.hamb::before, .hamb::after{ content:""; position:absolute; left:0; width:22px; height:2px; background:var(--muted); transition: all .25s ease;}
.hamb::before{ top:-7px;} .hamb::after{ top:7px;}

/* when open - transform hamburger */
.nav-toggle[aria-expanded="true"] .hamb{ background: transparent;}
.nav-toggle[aria-expanded="true"] .hamb::before{ transform: translateY(7px) rotate(45deg); top:0;}
.nav-toggle[aria-expanded="true"] .hamb::after{ transform: translateY(-7px) rotate(-45deg); top:0;}

/* Responsive rules */
@media (max-width: 900px){
  .nav-links{ display:none; position:absolute; left:0; right:0; top:64px; background: linear-gradient(180deg, rgba(6,8,12,0.98), rgba(3,4,6,0.96)); flex-direction:column; gap:0; padding:10px 12px; border-top: 1px solid rgba(255,255,255,0.02);}
  .nav-links.show{ display:flex; }
  .nav-links a{ padding:12px 10px; border-radius:8px; color:#cfcfcf; }
  .nav-ctas{ gap:8px; }
  .nav-btn .lbl{ display:none; } /* hide text label on mobile to save space */
  .nav-toggle{ display:block; }
  .nav-inner{ padding:10px 14px; }
  .logo img{ height:30px; }
}

/* extra small screens - make buttons icon-only circles */
@media (max-width:420px){
  .nav-btn{ padding:8px; border-radius:50%; width:40px; height:40px; justify-content:center; }
  .nav-ctas{ gap:8px; }
  .nav-presale .icon, .nav-support .icon, .nav-signin .icon{ width:18px; height:18px; }
  .nav-btn .lbl{ display:none; }
}

.support-btn-animated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: radial-gradient(circle at 30% 30%, #5b00ff, #0a0a0f);
  border: 2px solid #5b00ff;
  border-radius: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(91, 0, 255, 0.6);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: pulseGlow 2.5s infinite alternate;
}

/* Neon pulse for button */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(91, 0, 255, 0.5),
                0 0 20px rgba(0, 208, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 25px rgba(91, 0, 255, 0.8),
                0 0 45px rgba(0, 208, 255, 0.5);
  }
}

/* Hover: light sweep */
.support-btn-animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(0, 208, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.support-btn-animated:hover::before {
  left: 125%;
}

.support-btn-animated:hover {
  background: linear-gradient(90deg, #5b00ff, #00d0ff);
  transform: translateY(-2px) scale(1.05);
}

/* SVG heart styling */
.heart-svg {
  width: 20px;
  height: 20px;
  fill: #ff2e91;
  filter: drop-shadow(0 0 6px rgba(255, 46, 145, 0.8));
  animation: heartBeat 1.5s infinite ease-in-out;
}

/* Neon heartbeat animation */
@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 6px rgba(255, 46, 145, 0.8));
  }
  50% {
    transform: scale(1.25);
    filter: drop-shadow(0 0 14px rgba(255, 46, 145, 1));
  }
}

/* Navigation button styles - clean and aligned */
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: transparent;
  transition: all .25s ease;
  text-decoration: none;
  position: relative;
}

.nav-btn:hover {
  transform: translateY(-1px);
}

/* Pre-Sale button */
.nav-presale {
  border-color: rgba(0, 208, 255, 0.4);
}
.nav-presale:hover {
  border-color: rgba(0, 208, 255, 1);
  box-shadow: 0 0 10px rgba(0, 208, 255, 0.5);
  color: #00d0ff;
}

/* Support button */
.nav-support {
  background: linear-gradient(90deg, rgba(91, 0, 255, 0.25), rgba(0, 208, 255, 0.25));
  border-color: rgba(91, 0, 255, 0.5);
}
.nav-support:hover {
  background: linear-gradient(90deg, rgba(91, 0, 255, 0.5), rgba(0, 208, 255, 0.5));
  box-shadow: 0 0 14px rgba(91, 0, 255, 0.5);
}

/* Heart icon */
.heart-icon {
  width: 14px;
  height: 14px;
  fill: #ff4d9b;
  transition: transform 0.25s ease;
}
.nav-support:hover .heart-icon {
  transform: scale(1.2);
}

/* Sign In button */
.nav-signin {
  border-color: rgba(136, 66, 255, 0.4);
}
.nav-signin:hover {
  border-color: rgba(136, 66, 255, 1);
  box-shadow: 0 0 10px rgba(136, 66, 255, 0.5);
  color: #b98cff;
}


/* Login */
.login-wrap{ display:grid; grid-template-columns: 1fr 420px; gap:28px; align-items:center; min-height:72vh; }
.hero-spot{ padding:28px; border-radius:12px; background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)); }
.hero-spot h1{ margin:0 0 8px 0; font-size:1.6rem; color:var(--brand); }
.login-card{ padding:22px; }
.small-muted{ color:var(--muted); font-size:.88rem; }
.p-18{padding: 18px;}
.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap:16px; margin-bottom:16px; }
.grid-2{ display:grid; grid-template-columns: 1fr 380px; gap:16px; }
.balance{ font-size:1.6rem; color:var(--brand); font-weight:700; }


/* small helpers */
.right{ text-align:right }
.left{ text-align:left }
.gap{ height:12px }
.note{ font-size:.87rem; color:var(--muted) }
.linkish{ color:var(--accent); cursor:pointer; text-decoration:underline; font-weight:600; }
.danger{ color:#ff7a7a }
.success{ color:#7ef29a }
.footer-note{ margin-top:18px; color:var(--muted); font-size:.85rem; }
.w-100{width: 100%}
.img-size-prs{width: 4rem;height: 4rem;}

/* Dashboard */
.topbar{ display:flex; gap:12px; align-items:center; margin-bottom:18px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand h2{ margin:0; font-size:1.05rem; color:var(--brand); }
.ref-block{ display:flex; gap:12px; align-items:center; }
.ref-code{ background:linear-gradient(90deg, rgba(247,192,74,.08), rgba(140,240,255,.04)); padding:8px 12px; border-radius:10px; color:var(--brand); font-weight:700; border:1px solid rgba(247,192,74,.12); }

.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap:16px; margin-bottom:16px; }
.grid-2{ display:grid; grid-template-columns: 1fr 380px; gap:16px; }

.small-muted{ color:var(--muted); font-size:.88rem; }

.click-me:hover{cursor:pointer;}

table{ width:100%; border-collapse:collapse; font-size:0.95rem; }
th,td{ padding:10px 8px; text-align:left; border-bottom:1px dashed rgba(255,255,255,.03); color:var(--fg); }
th{ color:var(--muted); font-weight:600; font-size:.88rem; text-transform:none; }

.profile-row{ display:flex; gap:12px; align-items:center; }
.avatar{ width:62px; height:62px; border-radius:50%; background:linear-gradient(90deg,#0b1020,#09202e); border:2px solid rgba(247,192,74,.18); display:grid; place-items:center; font-weight:700; color:var(--brand); }
.active{border-color: var(--brand)}
.profile-avat{width:48px;height:48px;border-radius:10px;background:linear-gradient(90deg,#061122,#092133);display:grid;place-items:center;border:1px solid var(--border);}

.mb-05{margin-bottom: 1.1rem;}
.card-btn-pt1{text-align: center; padding-top: 1rem;}
.card-btn-pt43{text-align: center; padding-top: 4.3rem;}
.card-btn-pt103{text-align: center; padding-top: 10.3rem;}

.aryacoin{color: darkorange;}

.arya-img3{width: 60%;border: 6px solid #efaf39;border-radius: 40px;}

.ap-note-warn {    
    background: rgb(255 142 0) !important;
}

.ap-note-white{background: rgb(255 255 255) !important;}
.ap-note-blue{background: rgb(25 45 189) !important;}
.ap-note {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 10px;
    border: 1px dashed var(--ap-border);
    border-radius: 12px;
    padding: 12px;
    background: #0f172a;
}

.ap-note-white .ap-note_icon {
    color: var(--brand);
}

.ap-note-blue .ap-note_icon {
    color: var(--brand);
}

.ap-note-warn .ap-note_icon {
    color: rgb(255,255,255);
}

.ap-note_icon {
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qrcode img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  background: conic-gradient(from 0deg, #f7c04a, #02c5ff, #f7c04a);  
}
.foot {
  border-top: 1px solid var(--border);
}
.label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.checklist li {
  margin-bottom: 0.5rem;
}
.lang {
  font-size: 0.9rem;
  color: var(--muted);
}

/* RTL helpers */
html[dir="rtl"],
body.rtl {
  direction: rtl;
}
body.rtl {
  font-family: "Vazirmatn", "IRANSansX", Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
}
.rtl .carousel {
  direction: rtl;
}
.rtl .form-select,
.rtl .select2-container {
  direction: rtl;
}
.select2-container--default .select2-selection--single {
  background: transparent;
  color: var(--fg-0);
  border: 1px solid var(--border);
}
.select2-dropdown {
  color: #111;
}

.table-custom { --bs-table-bg: transparent !important; }

.brand-color{color: var(--brand) !important;}

.pt-1-5{padding-top: 1.5rem;}



#litepaper .table-arya thead tr th{
    color: var(--muted);
    text-transform: uppercase; letter-spacing: .08em; font-size: .8rem;
    border-bottom: 1px solid var(--border);
  }
  #litepaper .table-arya tbody tr{
    border-top: 1px solid rgba(255,255,255,.06);
    transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  }
  #litepaper .table-arya tbody tr:hover{
    background: linear-gradient(90deg, rgba(247,192,74,.08), transparent);
    box-shadow: 0 8px 18px rgba(0,0,0,.25);
    transform: translateY(-1px);
  }
  #litepaper .flag{ font-size: 1.15rem; filter: saturate(110%); }
  #litepaper .btn-icon{
    display:inline-grid; place-items:center; width:38px; height:38px; border-radius:10px;
    border:1px solid var(--border); background:rgba(255,255,255,.04);
    color: var(--brand); transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
    margin-left: .25rem;
  }
  #litepaper .btn-icon:hover{ transform: translateY(-2px); box-shadow:0 8px 18px rgba(247,192,74,.25); border-color: rgba(247,192,74,.55); }
  #litepaper .btn-icon svg{ width:18px; height:18px; }
  #litepaper .badge-chip{ border-radius: 999px; padding: .15rem .5rem; }
  /* Mobile: stack language below title; hide version */
  @media (max-width: 575.98px){
    #litepaper .table-arya td:nth-child(3){ opacity:.9; }
  }

/* Card Explainer */
.arya-card {
  position: relative;
  background: radial-gradient(900px 500px at 20% -10%, rgba(247, 192, 74, 0.18), transparent 40%), radial-gradient(700px 400px at 110% 120%, rgba(140, 240, 255, 0.16), transparent 50%), #081120;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.arya-card .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-0);
  opacity: 0.9;
  font-weight: 600;
}
.arya-card .digits {
  margin: 24px 0 10px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f7c04a;
  text-shadow: 0 0 12px rgba(247, 192, 74, 0.38);
  font-variant-numeric: tabular-nums lining-nums;
}
.arya-card .holder {
  color: var(--fg-0);
  opacity: 0.9;
  font-weight: 600;
}
.seg {
  border-bottom: 2px solid rgba(247, 192, 74, 0.65);
  padding-bottom: 4px;
  margin-right: 0.25ch;
}
.seg-unique {
  margin: 0 0.25ch;
}

#cardExplainer {
  position: relative;
}
#cardExplainer .note {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
#cardExplainer .note .label {
  font-size: 0.8rem;
  color: var(--muted);
}
#cardExplainer .note h6 {
  margin: 4px 0 0;
  font-weight: 600;
}
#cardSvg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.connector {
  stroke: rgba(247, 192, 74, 0.7);
  stroke-width: 2;
  fill: none;
}
.connector-arrow {
  fill: rgba(247, 192, 74, 0.7);
}

.logo-header {
  height: 64px;
  width: auto;
}

.nav-link {
  color: #FF8E00;
  font-weight: 700;

}

.nav-link:hover {
  color: rgb(200 235 199 / 80%);
}

.h2-font-size {
  font-size: 1.7rem !important;
}

.date{
    font-size: 12px;
    font-style: italic;
}

@media (max-width: 991px) {
  /* stack: place notes under card */
  #cardExplainer .col-md-3 {
    order: 2;
  }
  #cardExplainer .col-md-6 {
    order: 1;
  }
}

/* Hero video wrapper */
.hero-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(247, 192, 74, 0.16), transparent 55%),
                radial-gradient(circle at bottom right, rgba(42, 157, 244, 0.18), transparent 55%),
                #020817;
    border: 1px solid rgba(247, 192, 74, 0.35);
    box-shadow: 0 0 32px rgba(247, 192, 74, 0.20), 0 0 60px rgba(10, 34, 57, 0.9);
    backdrop-filter: blur(10px);
}

/* Optional subtle glow on hover */
.hero-video-wrapper:hover {
    box-shadow: 0 0 40px rgba(247, 192, 74, 0.32), 0 0 80px rgba(10, 34, 57, 1);
    transform: translateY(-2px);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

/* Ensure iframe fits perfectly */
.hero-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: 16px;
}

/* Mobile tweak */
@media (max-width: 767.98px) {
    .hero-video-wrapper {
        border-radius: 16px;
        box-shadow: 0 0 22px rgba(247, 192, 74, 0.20), 0 0 40px rgba(10, 34, 57, 0.9);
    }
}

