@font-face {
    font-family: 'Vazirmatn';
    src: url('fonts/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Vazirmatn';
    src: url('fonts/Vazirmatn-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Vazirmatn';
    src: url('fonts/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Vazirmatn';
    src: url('fonts/Vazirmatn-Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}

/* ====== RESET & BASE ====== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-bright:  #00d4ff;
    --blue-light:   #33e0ff;
    --blue-mid:     #0099cc;
    --blue-dark:    #003d5c;
    --blue-darker:  #001e30;
    --blue-deep:    #000d1a;
    --blue-glow:    rgba(0, 212, 255, 0.6);
    --blue-glow-sm: rgba(0, 212, 255, 0.25);
    --text-bright:  #e0f7ff;
    --text-mid:     #9be7ff;
    --text-muted:   #5ba8c4;
    --gold:         #ffd700;
    --green:        #00ff88;
    --discord:      #5865F2;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Vazirmatn', sans-serif;
    background: var(--blue-deep);
    color: var(--text-bright);
    overflow-x: hidden;
    direction: rtl;
}

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--blue-deep); }
::-webkit-scrollbar-thumb {
    background: var(--blue-mid);
    border-radius: 3px;
}

/* ====== NAVBAR ====== */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    height: 72px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0, 13, 26, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.3s;
}

nav.scrolled {
    background: rgba(0, 8, 18, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.nav-logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}
.logo-rise { color: var(--blue-bright); }
.logo-city { color: #fff; margin: 0 4px; }
.logo-mta  {
    color: var(--blue-dark);
    -webkit-text-stroke: 1px var(--blue-bright);
}

/* Desktop nav links - تغییر از nav-menu به nav-links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.25s;
    font-family: 'Vazirmatn', sans-serif;
}
.nav-links a:hover {
    color: var(--blue-bright);
    background: rgba(0, 212, 255, 0.08);
}

.nav-cta {
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright)) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 8px 20px !important;
    box-shadow: 0 0 15px var(--blue-glow-sm);
}
.nav-cta:hover {
    box-shadow: 0 0 25px var(--blue-glow) !important;
    transform: translateY(-1px);
}

.nav-login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 40px;
    font-size: 13px;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(0, 212, 255, 0.04);
    text-decoration: none;
    font-family: 'Vazirmatn', sans-serif;
}
.nav-login:hover {
    border-color: var(--blue-bright);
    color: var(--blue-bright);
    background: rgba(0, 212, 255, 0.1);
}

/* ====== HAMBURGER ====== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 1100;
    background: transparent;
    border: none;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--blue-bright);
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: #ff6666;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: #ff6666;
}

/* ====== NAV OVERLAY ====== */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ====== HERO ====== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 20px 60px;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
    0%   { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--blue-bright);
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}
.p1 { width:8px;  height:8px;  top:20%; left:10%; animation-delay:0s;  animation-duration:7s; }
.p2 { width:5px;  height:5px;  top:60%; left:85%; animation-delay:2s;  animation-duration:9s; }
.p3 { width:12px; height:12px; top:75%; left:20%; animation-delay:4s;  animation-duration:6s; }
.p4 { width:6px;  height:6px;  top:30%; left:70%; animation-delay:1s;  animation-duration:11s; }
.p5 { width:9px;  height:9px;  top:50%; left:50%; animation-delay:3s;  animation-duration:8s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1);      opacity: 0.15; }
    50%       { transform: translateY(-30px) scale(1.3); opacity: 0.35; }
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 40px;
    font-size: 13px;
    color: var(--blue-bright);
    background: rgba(0, 212, 255, 0.06);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-logo-ring {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.3);
    animation: spin 12s linear infinite;
}
.ring-outer  { width:180px; height:180px; animation-duration:20s; border-style:dashed; }
.ring-middle { width:148px; height:148px; animation-duration:15s; animation-direction:reverse; }
.ring-inner  { width:116px; height:116px; animation-duration:10s; border-color:rgba(0,212,255,0.5); }

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.hero-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,60,90,0.9), rgba(0,13,26,0.95));
    border: 2px solid var(--blue-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 30px var(--blue-glow),
        inset 0 0 20px rgba(0,212,255,0.1);
    z-index: 2;
    animation: pulse 3s ease-in-out infinite;
}
.hero-circle img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px var(--blue-glow-sm), inset 0 0 15px rgba(0,212,255,0.1); }
    50%       { box-shadow: 0 0 60px var(--blue-glow),    inset 0 0 25px rgba(0,212,255,0.2); }
}

.hero-welcome {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: 4px;
}
.title-rise {
    color: var(--blue-bright);
    text-shadow: 0 0 30px var(--blue-glow), 0 0 60px var(--blue-glow-sm);
}
.title-city {
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}
.title-mta {
    color: transparent;
    -webkit-text-stroke: 2px var(--blue-bright);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-mid);
    margin-bottom: 4px;
}
.hero-subtitle-2 {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 36px;
    letter-spacing: 1px;
}

.hero-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 14px;
    background: rgba(0, 212, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}
.stat-box:hover {
    border-color: var(--blue-bright);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--blue-glow-sm);
}
.stat-icon  { font-size: 22px; }
.stat-num   { display:block; font-size:22px; font-weight:900; color:var(--blue-bright); line-height:1; }
.stat-label { display:block; font-size:11px; color:var(--text-muted); margin-top:2px; }
.live-pulse { animation: livePulse 1.5s ease-in-out infinite; }

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

.hero-buttons { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-family: 'Vazirmatn', sans-serif;
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, #006a8a, var(--blue-bright));
    color: #000d1a;
    box-shadow: 0 0 20px var(--blue-glow-sm);
}
.btn-primary:hover {
    box-shadow: 0 0 40px var(--blue-glow);
    transform: translateY(-3px) scale(1.03);
}
.btn-discord {
    background: var(--discord);
    color: #fff;
    box-shadow: 0 0 20px rgba(88,101,242,0.3);
}
.btn-discord:hover {
    box-shadow: 0 0 35px rgba(88,101,242,0.6);
    transform: translateY(-3px);
}
.btn-secondary {
    background: transparent;
    color: var(--blue-bright);
    border: 1.5px solid var(--blue-bright);
}
.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px var(--blue-glow-sm);
    transform: translateY(-3px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--blue-mid);
    border-bottom: 2px solid var(--blue-mid);
    transform: rotate(45deg);
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ====== STATS BAR ====== */
.stats-bar {
    background: rgba(0, 30, 50, 0.9);
    border-top: 1px solid rgba(0,212,255,0.15);
    border-bottom: 1px solid rgba(0,212,255,0.15);
    padding: 14px 0;
    overflow: hidden;
}
.stats-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.sbar-item { padding:0 28px; font-size:13px; color:var(--text-mid); }
.sbar-item strong { color: var(--blue-bright); }
.sbar-divider { width:1px; height:18px; background:rgba(0,212,255,0.2); }
.sbar-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 6px;
}
.sbar-dot.green { background:var(--green); box-shadow:0 0 8px var(--green); animation:livePulse 1.5s infinite; }
.green-text { color: var(--green) !important; }

/* ====== SECTION COMMON ====== */
section {
    padding: 90px 60px;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    display: inline-block;
    padding: 4px 16px;
    border: 1px solid rgba(0,212,255,0.35);
    border-radius: 20px;
    font-size: 12px;
    color: var(--blue-bright);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: rgba(0,212,255,0.06);
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}
.section-title .highlight { color: var(--blue-bright); }
.section-desc { font-size:15px; color:var(--text-muted); }

/* ====== FEATURES ====== */
.features-section {
    background: linear-gradient(180deg, var(--blue-deep) 0%, rgba(0,20,35,0.8) 100%);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    padding: 32px 28px;
    border: 1px solid rgba(0,212,255,0.18);
    border-radius: 16px;
    background: rgba(0,20,35,0.6);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,212,255,0.45);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px var(--blue-glow-sm);
    background: rgba(0,30,50,0.8);
}
.feature-icon { font-size:40px; margin-bottom:16px; }
.feature-card h3 { font-size:18px; color:var(--blue-light); margin-bottom:10px; }
.feature-card p  { font-size:13px; color:var(--text-muted); line-height:1.7; }

/* ====== LEARNINGS ====== */
.learn-section {
    background: rgba(0,15,25,0.5);
    border-top: 1px solid rgba(0,212,255,0.1);
}
.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto 40px;
}
.step-card {
    flex: 1;
    min-width: 240px;
    max-width: 300px;
    text-align: center;
    padding: 36px 24px;
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 16px;
    background: rgba(0,25,42,0.7);
    transition: all 0.3s;
    position: relative;
}
.step-card:hover {
    border-color: var(--blue-bright);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--blue-glow-sm);
}
.step-number {
    position: absolute;
    top: -16px;
    right: 50%;
    transform: translateX(50%);
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: #000;
}
.step-icon { font-size:36px; margin-bottom:14px; margin-top:8px; }
.step-card h3 { font-size:18px; color:#fff; margin-bottom:10px; }
.step-card p  { font-size:13px; color:var(--text-muted); line-height:1.7; margin-bottom:20px; }
.step-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    border: 1px solid var(--blue-bright);
    border-radius: 8px;
    color: var(--blue-bright);
    font-size: 13px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.25s;
}
.step-btn:hover {
    background: var(--blue-bright);
    color: #000;
    box-shadow: 0 0 15px var(--blue-glow-sm);
}
.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,212,255,0.6), rgba(0,212,255,0.1));
    align-self: center;
    margin: 0 -10px;
    position: relative;
    top: -10px;
    flex-shrink: 0;
}
.learn-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px 24px;
    border: 1px solid rgba(0,212,255,0.15);
    border-radius: 12px;
    background: rgba(0,212,255,0.04);
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.note-icon { font-size:18px; flex-shrink:0; }

/* ====== STREAMERS ====== */
.streamers-section {
    background: linear-gradient(180deg, rgba(0,15,25,0.5) 0%, var(--blue-deep) 100%);
    border-top: 1px solid rgba(0,212,255,0.1);
}
.streamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}
.streamer-card {
    padding: 28px 20px;
    border: 1px solid rgba(0,212,255,0.18);
    border-radius: 16px;
    background: rgba(0,20,35,0.7);
    text-align: center;
    position: relative;
    transition: all 0.3s;
}
.streamer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    border-color: rgba(0,212,255,0.4);
}
.streamer-card.live {
    border-color: rgba(255,50,50,0.4);
    box-shadow: 0 0 20px rgba(255,50,50,0.1);
}
.live-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    padding: 3px 10px;
    background: rgba(255,50,50,0.15);
    border: 1px solid rgba(255,50,50,0.4);
    border-radius: 20px;
    color: #ff6666;
    letter-spacing: 1px;
}
.streamer-avatar   { font-size:48px; margin-bottom:14px; }
.streamer-name     { font-size:16px; font-weight:700; color:#fff; margin-bottom:4px; }
.streamer-platform { font-size:12px; color:var(--text-muted); margin-bottom:8px; }
.streamer-viewers  { font-size:13px; color:var(--text-mid); margin-bottom:16px; }
.streamer-btn {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}
.streamer-btn:hover {
    box-shadow: 0 0 15px var(--blue-glow-sm);
    transform: scale(1.05);
}

.streamer-btn.active {
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
    color: #000;
    border-color: var(--blue-bright);
    box-shadow: 0 0 18px var(--blue-glow-sm);
}


.streamer-cta {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.streamer-cta p { color:var(--text-muted); font-size:14px; }

/* ====== RULES ====== */
.rules-section {
    background: linear-gradient(180deg, rgba(0,10,20,0.8) 0%, rgba(0,5,15,0.9) 100%);
    border-top: 1px solid rgba(0,212,255,0.1);
}
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}
.rule-card {
    padding: 28px 24px;
    border: 1px solid rgba(0,212,255,0.18);
    border-radius: 14px;
    background: rgba(0,18,32,0.7);
    transition: all 0.3s;
    text-align: right;
    position: relative;
    overflow: hidden;
}
.rule-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,212,255,0.4);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}
.rule-card.highlight-card {
    border-color: rgba(0,212,255,0.35);
    background: rgba(0,40,65,0.5);
}
.rule-icon { font-size:32px; margin-bottom:10px; }
.rule-num  { font-size:11px; color:var(--blue-mid); letter-spacing:2px; margin-bottom:8px; text-transform:uppercase; }
.rule-card h3 { font-size:17px; color:#fff; font-weight:700; margin-bottom:10px; }
.rule-card p  { font-size:13px; color:var(--text-muted); line-height:1.7; margin-bottom:14px; }
.rule-punishment {
    font-size: 12px;
    color: #ff8888;
    padding: 6px 12px;
    background: rgba(255,100,100,0.07);
    border-radius: 8px;
    border: 1px solid rgba(255,100,100,0.2);
    display: inline-block;
}
.rule-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.3s;
}
.rule-link-btn:hover {
    box-shadow: 0 0 20px var(--blue-glow-sm);
    transform: translateX(-3px);
}

/* ====== SHOP ====== */
.shop-section {
    background: linear-gradient(180deg, rgba(0,5,15,0.9) 0%, var(--blue-deep) 100%);
    border-top: 1px solid rgba(0,212,255,0.1);
}
.shop-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}
.shop-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 32px 24px;
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 18px;
    background: rgba(0,18,32,0.8);
    text-align: center;
    position: relative;
    transition: all 0.3s;
}
.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.5);
}
.shop-card.featured {
    border-color: var(--gold);
    background: rgba(20,15,0,0.9);
    box-shadow: 0 0 30px rgba(255,215,0,0.1);
    transform: scale(1.04);
}
.shop-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.shop-badge {
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    padding: 4px 18px;
    background: var(--blue-mid);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}
.shop-badge.gold { background:var(--gold); color:#000; }
.shop-icon { font-size:44px; margin-bottom:14px; }
.shop-card h3 { font-size:20px; font-weight:800; color:#fff; margin-bottom:20px; }
.shop-features { list-style:none; margin-bottom:24px; }
.shop-features li { font-size:13px; color:var(--text-mid); padding:6px 0; border-bottom:1px solid rgba(255,255,255,0.05); }
.shop-price { margin-bottom:20px; }
.price    { font-size:32px; font-weight:900; color:var(--blue-bright); }
.currency { font-size:14px; color:var(--text-muted); margin-right:4px; }
.featured .price { color: var(--gold); }
.shop-btn {
    width: 100%;
    padding: 13px;
    border: 1.5px solid var(--blue-bright);
    border-radius: 10px;
    background: transparent;
    color: var(--blue-bright);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.3s;
}
.shop-btn:hover {
    background: var(--blue-bright);
    color: #000;
    box-shadow: 0 0 20px var(--blue-glow-sm);
}
.gold-btn { border-color:var(--gold) !important; color:var(--gold) !important; }
.gold-btn:hover {
    background: var(--gold) !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(255,215,0,0.3) !important;
}

/* ====== TICKET ====== */
.ticket-section {
    padding: 5rem 2rem;
    background: rgba(0, 100, 200, 0.03);
    max-width: 1200px;
    margin: 0 auto;
}
.section-sub { font-size:14px; color:var(--text-muted); margin-top:8px; }
.ticket-toggle-btn {
    display: block;
    margin: 0 auto 2rem;
    padding: 14px 36px;
    background: linear-gradient(135deg, #0066aa, #0096ff);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.05rem;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,150,255,0.2);
}
.ticket-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,150,255,0.4);
    background: linear-gradient(135deg, #0080cc, #00b4ff);
}
.ticket-form-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.ticket-form-wrapper.open { max-height: 1200px; }
.ticket-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background: rgba(0,20,40,0.6);
    border: 1px solid rgba(0,150,255,0.25);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}
.ticket-form .ticket-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}
.ticket-form .form-group { display:flex; flex-direction:column; }
.ticket-form label {
    color: var(--text-mid);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.ticket-form input,
.ticket-form select,
.ticket-form textarea {
    width: 100%;
    padding: 13px 18px;
    background: rgba(0,30,60,0.5);
    border: 1.5px solid rgba(0,150,255,0.3);
    border-radius: 10px;
    color: var(--text-bright);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
    direction: rtl;
}
.ticket-form input:focus,
.ticket-form select:focus,
.ticket-form textarea:focus {
    border-color: var(--blue-bright);
    background: rgba(0,40,80,0.6);
    box-shadow: 0 0 20px rgba(0,150,255,0.25);
}
.ticket-form select option { background:#0a1628; color:#fff; }
.ticket-form textarea { resize:vertical; min-height:120px; }
.ticket-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.3s;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0,150,255,0.3);
}
.ticket-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,150,255,0.5);
}

/* ====== FOOTER ====== */
footer {
    background: rgba(0, 5, 12, 0.98);
    border-top: 1px solid rgba(0,212,255,0.15);
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 80px 40px;
    max-width: 1300px;
    margin: 0 auto;
}
.footer-logo { font-size:22px; font-weight:900; color:var(--blue-bright); letter-spacing:2px; margin-bottom:14px; }
.footer-brand p { font-size:13px; color:var(--text-muted); line-height:1.8; margin-bottom:20px; }
.footer-socials { display:flex; gap:10px; flex-wrap:wrap; }
.social-btn {
    padding: 8px 16px;
    border: 1px solid rgba(0,212,255,0.25);
    border-radius: 8px;
    color: var(--text-mid);
    font-size: 12px;
    text-decoration: none;
    transition: all 0.25s;
}
.social-btn:hover {
    border-color: var(--blue-bright);
    color: var(--blue-bright);
    background: rgba(0,212,255,0.08);
}
.footer-links h4,
.footer-server h4 {
    font-size: 14px;
    color: var(--blue-bright);
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    padding: 6px 0;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue-bright); }
.server-info-item {
    font-size: 13px;
    color: var(--text-muted);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dot { display:inline-block; width:8px; height:8px; border-radius:50%; }
.dot.green { background:var(--green); box-shadow:0 0 6px var(--green); animation:livePulse 1.5s infinite; }
.footer-bottom {
    padding: 20px 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    max-width: 1300px;
    margin: 0 auto;
}

/* ════════════════════════════════════════
   RESPONSIVE - تبلت
════════════════════════════════════════ */
@media (max-width: 900px) {
    nav { padding: 0 20px; }
    section { padding: 70px 24px; }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        padding: 40px 24px 24px;
    }
    .footer-bottom { padding:20px 24px; flex-direction:column; gap:8px; text-align:center; }
    .step-connector { display: none; }
}

/* ════════════════════════════════════════
   RESPONSIVE - موبایل 768px
════════════════════════════════════════ */
@media (max-width: 768px) {

    /* نمایش همبرگر */
    .hamburger { display: flex; }

    /* منوی slide-in از راست - تغییر nav-menu به nav-links */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 10, 25, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        border-left: 2px solid rgba(0, 212, 255, 0.4);
        box-shadow: -10px 0 40px rgba(0,0,0,0.8);
        z-index: 999;
        padding: 2rem;
        display: flex !important;
    }

    .nav-links.open { right: 0; }

    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
        border-radius: 12px;
        color: var(--text-mid);
        text-decoration: none;
        font-family: 'Vazirmatn', sans-serif;
        border: 1px solid transparent;
        transition: all 0.25s;
    }

    .nav-links a:hover {
        color: var(--blue-bright);
        background: rgba(0, 212, 255, 0.08);
        border-color: rgba(0, 212, 255, 0.2);
    }

    .nav-cta {
        background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright)) !important;
        color: #000 !important;
        font-weight: 700 !important;
        border: none !important;
    }

    .nav-login {
        width: 100%;
        justify-content: center;
    }

    /* سایر تنظیمات موبایل */
    .hero-title { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; align-items: center; }

    .features-grid,
    .streamers-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .ticket-form .ticket-grid {
        grid-template-columns: 1fr;
    }

    .ticket-wrapper { padding: 1.5rem; }

    .footer-top { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   RESPONSIVE - موبایل کوچک 600px
════════════════════════════════════════ */
@media (max-width: 600px) {
    nav { padding: 0 16px; }

    .hero { padding: 80px 16px 40px; }
    .hero-title { font-size: 1.9rem; letter-spacing: 2px; }

    .shop-card.featured { transform: scale(1); }

    .ticket-section { padding: 3rem 1rem; }

    .footer-bottom { flex-direction: column; gap: 8px; }
}


/* ===== TOP PLAYERS ===== */

.top-section{
    background: rgba(0,10,20,0.8);
    border-top:1px solid rgba(0,212,255,0.1);
}

.top-tabs{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
    margin:0 auto 24px auto;
    max-width:900px;
}


button.top-tab {
    padding: 10px 26px;
    border-radius: 30px;
    border: 2px solid rgba(0,212,255,0.25) !important;
    background: rgba(0,212,255,0.05) !important;
    color: var(--text-muted) !important;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 600;
    transition: all .25s ease;
}


.top-tab{
    padding:10px 26px;
    border-radius:30px;
    border:2px solid rgba(0,212,255,0.25);
    background:rgba(0,212,255,0.05);
    color:var(--text-muted);
    cursor:pointer;
    font-family:'Vazirmatn',sans-serif;
    font-weight:600;
    transition:all .25s ease;
}

.top-tab:hover{
    color:var(--blue-bright);
    border-color:rgba(0,212,255,0.6);
    background:rgba(0,212,255,0.12);
}

.top-tab.active{
    background:linear-gradient(135deg,var(--blue-mid),var(--blue-bright));
    color:#000;
    border-color:var(--blue-bright);
    box-shadow:0 0 18px var(--blue-glow-sm);
}

.top-table-wrapper{
    max-width:900px;
    margin:auto;
    border-radius:16px;
    overflow:hidden;
    border:1px solid rgba(0,212,255,0.25);
    background:rgba(0,20,35,0.6);
}

.top-table{
    width:100%;
    border-collapse:collapse;
}

.top-table thead{
    background:rgba(0,212,255,0.08);
}

.top-table th{
    padding:16px;
    font-size:13px;
    color:var(--blue-bright);
    font-weight:700;
    letter-spacing:1px;
}

.top-table td{
    padding:15px;
    font-size:14px;
    color:var(--text-mid);
    border-top:1px solid rgba(0,212,255,0.08);
}

.top-table tbody tr:hover{
    background:rgba(0,212,255,0.05);
}

/* top ranks */

.rank-gold{
    background:linear-gradient(90deg,rgba(255, 217, 0, 0.08),transparent);
}

.rank-silver{
    background:linear-gradient(90deg,rgba(192,192,192,0.06),transparent);
}

.rank-bronze{
    background:linear-gradient(90deg,rgba(205,127,50,0.06),transparent);
}

.rank-badge{
    font-weight:800;
    color:var(--blue-bright);
}

.level-badge{
    padding:4px 12px;
    border-radius:20px;
    background:rgba(0,212,255,0.12);
    border:1px solid rgba(0,212,255,0.3);
    font-size:12px;
    color:var(--blue-bright);
    font-weight:700;
}
