:root {
    --primary: #ffba00;
    --gree: #6d6d6d;
    --yellow: #ffd13c;
    --primary-dark: #977003;
    --secondary: #00B894;
    --accent: #FD79A8;
    --dark: #0F0F15;
    --darker: #0A0A0E;
    --light: #E2E2E2;
    --lighter: #FFFFFF;
    --gray: #2D2D3A;
    --online: #2ecc71;
    --offline: #e74c3c;
        --unknown: #e7cd3c;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Yekan Bakh', sans-serif;
}



/* تعریف فونت‌ها با fallback مناسب */
@font-face {
    font-family: 'Yekan Bakh';
    src: url('fonts/woff/YekanBakhNoEn-SemiBold.woff') format('woff'),
         url('fonts/ttf/YekanBakhNoEn-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap; /* نمایش متن با فونت fallback تا بارگذاری فونت اصلی */
}

@font-face {
    font-family: 'Yekan Bakh';
    src: url('fonts/woff/YekanBakhNoEn-Black.woff') format('woff'),
         url('fonts/ttf/YekanBakhNoEn-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* تعریف fallback فونت */
* {
    font-family: 'Yekan Bakh', 'Segoe UI', Tahoma, sans-serif;
}

/* بهینه‌سازی رندر متن */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
body {
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 186, 0, 0.1);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

/* For Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 186, 0, 0.1);
}

/* Base Styles */
a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Status Bar */
.status-bar {
    background-color: var(--darker);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.server-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.online {
    background-color: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.divider {
    opacity: 0.3;
}

.server-ip {
    background-color: rgba(255, 186, 0, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.server-ip:hover {
    background-color: rgba(255, 186, 0, 0.2);
}

.server-ip i {
    font-size: 12px;
}

/* Main Header */
.main-header {
    background-color: rgba(15, 15, 21, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 0 15px 15px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.main-header.scrolled {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 40px;
    transform: scale(1.2);
    transform-origin: center;
    display: block;
}

.main-nav {
    display: flex;
    gap: 5px;
}

.main-nav a {
    color: var(--light);
    opacity: 0.8;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    opacity: 1;
    background-color: rgba(255, 186, 0, 0.1);
    color: var(--primary);
}

.main-nav a i {
    font-size: 16px;
}

.btn-login {
    background-color: var(--primary);
    color: #000;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    font-weight: 700;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-login:hover {
    background-color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 186, 0, 0.3);
}

.btn-login:hover::before {
    left: 100%;
}

/* ... (کدهای قبلی بدون تغییر) ... */

/* استایل فوتر */
.auth-page-footer {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.auth-page-footer .terms-text {
    color: var(--light);
    font-size: 0.85rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.auth-page-footer .terms-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.auth-page-footer .terms-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* استایل جدید برای متن بازیابی رمز عبور */
.forgot-password-text {
    font-size: 0.7rem;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.5);
}

.forgot-password-link {
    display: block;
    font-size: 0.7rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 4px 0;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 15px;
}

.forgot-password-link:hover {
    background-color: rgba(255, 186, 0, 0.15);
    color: var(--primary);
}
/* ... (بقیه کدهای CSS بدون تغییر باقی می‌مانند) ... */

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
     background-size: cover;
    text-align: center;
}

.hero-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.58;
    z-index: 0;
  }

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-icon img {
    height: 80px;
    filter: drop-shadow(0 0 15px rgba(255, 186, 0, 0.5));
    margin-bottom: 20px;
}

.title-container {
    perspective: 1000px;
    margin-bottom: 10px;
}

.main-title {
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    gap: 10px;
    perspective: 1000px;
}

.top-line, .bottom-line {
    font-family: 'Yekan Bakh', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffba00;
    line-height: 1;
    margin: 0;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 
        0 1px 0 #000000, 
        0 2px 0 #000000,
        0 3px 0 #000000,
        0 7px 5px rgba(0,0,0,0.6),
        0 0 20px rgba(255,215,0,0.8);
    transform: translateZ(20px);
}

.top-line {
    font-size: 5rem;
    z-index: 3;
}

.bottom-line {
    font-size: 6rem;
    z-index: 2;
    margin-top: -15px;
}

.top-line::after, .bottom-line::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(255,215,0,0.3);
    z-index: -1;
    transform: translate(5px, 5px) skew(15deg);
    filter: blur(2px);
}

.text-outline {
    -webkit-text-stroke: 2px rgba(0,0,0,0.7);
    paint-order: stroke fill;
}

.hero-subtitle-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    padding: 15px 30px;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-play, .btn-discord {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-play {
    background-color: #ffba00;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 186, 0, 0.3);
}

.btn-play:hover {
    background-color: #ffd13c;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 186, 0, 0.4);
}

.btn-discord {
    background-color: #2D2D3A;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-discord:hover {
    background-color: #3A3A4A;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-signature img {
    height: 60px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.hero-signature img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Tutorial Section */
.tutorial-section {
    padding: 80px 0;
    background-color: var(--darker);
    position: relative;
    overflow: hidden;
}

.tutorial-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://i.imgur.com/7BjxfxL.png');
    background-size: cover;
    opacity: 0.08;
    z-index: 0;
}

.tutorial-container {
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tutorial-content {
    flex: 1;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.icon-title {
    font-size: 1.8rem;
    color: var(--primary);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(45, 45, 58, 0.3);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 186, 0, 0.1) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    background: rgba(45, 45, 58, 0.5);
    box-shadow: 0 5px 15px rgba(255, 186, 0, 0.2);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--lighter);
}

.step-content p {
    color: var(--light);
    opacity: 0.8;
    line-height: 1.6;
}

.tutorial-buttons {
    display: flex;
    gap: 15px;
}

.btn-tutorial {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-tutorial {
    background-color: var(--primary);
    color: #000;
}

.btn-tutorial.secondary {
    background-color: transparent;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-tutorial:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 186, 0, 0.3);
}

.btn-tutorial.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.tutorial-video {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tutorial-video iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.video-description {
    background: rgba(45, 45, 58, 0.5);
    padding: 20px;
    border-radius: 8px;
}

.video-description p {
    color: var(--light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.video-description p:last-child {
    margin-bottom: 0;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: var(--dark);
}

.blog-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.blog-section .section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.blog-section .section-header p {
    color: var(--light);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.view-all {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: var(--lighter);
    transform: translateX(-5px);
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-post {
    background-color: var(--darker);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.post-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: #000;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    line-height: 1;
}

.post-date .day {
    font-size: 1.5rem;
    display: block;
}

.post-date .month {
    font-size: 0.9rem;
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--lighter);
}

.post-content p {
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--lighter);
    transform: translateX(-5px);
}
@font-face {
  font-family: 'Minecraft';
  src: url('Minecraftia.ttf') format('truetype');
}

/* ساختار کلی steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px; /* فاصله بین استپ‌ها */
}

/* استایل هر استپ */
.step {
  background: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* شماره مرحله */
.step-number {
  background: #ff9800;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* متن داخل استپ */
.step-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #fff;
}

.step-content p {
  margin: 0;
  line-height: 1.6;
  color: #ddd;
}

/* استایل آی‌پی (با باکس) */
.mc-ip {
  font-family: 'Minecraft', monospace;
  background: #111;
  color: #ffba00;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  transition: transform 0.2s, color 0.2s;
}
.mc-ip:hover {
  transform: scale(1.05);
  color: #ff9800;
}

/* استایل متون انگلیسی و اعداد (بدون باکس) */
.mc-text {
  font-family: 'Minecraft', monospace;
  color: rgb(255, 255, 255);
  font-size: 14px;
}

/* Game Servers Section */
.game-servers-section {
    padding: 80px 0;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.game-servers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://media.discordapp.net/attachments/1189499491355734016/1387920725796720680/Artboard_1.png?ex=685f1967&is=685dc7e7&hm=d4c7df1526e70c25b282a83be8d62f83de2b1e8d0035b0c0608f2bb74eea9be9&=&format=webp&quality=lossless&width=1522&height=856') no-repeat center center;
    background-size: cover;
    opacity: 0.02;
    z-index: 1;
}

.game-servers-container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header img {
    height: 170px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(211, 211, 211, 0.5));
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(255, 186, 0, 0.3);
}

.section-header p {
    color: var(--light);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.game-modes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.game-mode {
    align-items: center;
    background: rgba(45, 45, 58, 0.048);
    display: flex;
    gap: 14px;
    padding: 14px;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid rgba(255, 186, 0, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(.175,.885,.32,1.275);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 5px rgba(255, 200, 0, 0.5);
    animation: glow 1.5s infinite alternate;
}

.game-mode:hover {
    transform: translateY(-5px);
    background: rgba(86, 87, 80, 0.158);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(255, 200, 0, 0.8), 0 10px 20px rgba(0, 0, 0, 0.3);
}

@keyframes glow {
    0% {
        box-shadow: 0 0 1px rgba(255, 200, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 200, 0, 0.7);
    }
}

.game-mode-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.192);
}

.game-mode-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-mode-info {
    flex: 1;
}

.game-mode-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lighter);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.game-mode-version {
    font-size: 0.7rem;
    background-color: var(--gree);
    color: var(--lighter);
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
    transform: translateY(30px);
}

.game-mode-players {
    font-size: 0.9rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 9px;
}

.game-mode-players i {
    color: var(--secondary);
}

.game-mode-status {
    position: absolute;
    top: 14px;
    left: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--online);
    box-shadow: 0 0 10px var(--online);
    animation: pulse 1.5s infinite;
}
.game-mode-unknown {
    position: absolute;
    top: 14px;
    left: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--unknown);
    box-shadow: 0 0 10px var(--unknown);
    animation: pulse 1.5s infinite;
}
.game-mode.offline .game-mode-status {
    background-color: var(--offline);
    box-shadow: 0 0 10px var(--offline);
}

/* Footer */
.main-footer {
    background-color: var(--darker);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px 15px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    padding: 0 15px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--light);
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--lighter);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateX(-5px);
}

.footer-col ul li a i {
    font-size: 14px;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a.discord {
    background-color: rgba(255 186 0);
    color: #f3f3f3;
}

.social-icons a.telegram {
    background-color: rgba(255 186 0);
    color: #f3f3f3;
}

.social-icons a.instagram {
    background: rgba(255 186 0);
    color: #f3f3f3;
}

.social-icons a.youtube {
    background-color: rgba(255 186 0);
    color: #f3f3f3;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: rgba(151 112 3);
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    overflow: hidden;
}

.trust-badges img {
    height: 70px;
    opacity: 0.8;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.trust-badges img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Fade Effects */
.fade-section {
    position: relative;
    overflow: hidden;
}

.fade-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--section-bg, #0F0F15), transparent);
    z-index: 1;
    pointer-events: none;
}

.tion {
    --section-bg: #0F0F15;
}

.game-servers-section {
    --section-bg: #0c0d0f;
}

.tutorial-section {
    --section-bg: #0f0f15;
}

.fade-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-content.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-content:nth-child(1) { transition-delay: 0.1s; }
.fade-content:nth-child(2) { transition-delay: 0.2s; }
.fade-content:nth-child(3) { transition-delay: 0.3s; }
.fade-content:nth-child(4) { transition-delay: 0.4s; }
.fade-content:nth-child(5) { transition-delay: 0.5s; }

 

 

/* فعال کردن سخت‌افزار شتاب‌دهی */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* ارتفاع هدر شما */
}

.section-pr {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

