@font-face {
    font-family: 'Vazir';
    src: url('Vazir.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('Gilroy-Regular.ttf') format('truetype');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --glass-bg: rgba(0, 0, 0, 0.4);
    --glass-bg-light: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent-gradient: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    --success-color: #00ff88;
    --error-color: #ff4757;
    --gold-color: #ffd700;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gilroy', 'Vazir', sans-serif;
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: #000000;
}

.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bbs.png') no-repeat center center;
    background-size: cover;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: -2;
}

.background-layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: loaderFadeOut 0.6s ease-in-out 2.5s forwards;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: 'Gilroy', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 12px;
    color: var(--text-primary);
    margin-bottom: 50px;
    animation: logoPulse 2s ease-in-out infinite;
}

.loader-spinner {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-top-color: var(--text-primary);
    border-radius: 50%;
    animation: spinnerRotate 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    border-top-color: rgba(255, 255, 255, 0.5);
    animation-duration: 1.2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-top-color: rgba(255, 255, 255, 0.25);
    animation-duration: 0.9s;
}

.loader-text {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 6px;
    color: var(--text-muted);
    text-transform: uppercase;
    animation: textBlink 1.2s ease-in-out infinite;
}

@keyframes loaderFadeOut {
    0% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

@keyframes logoPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes spinnerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes textBlink {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.3; }
}

.main-wrapper {
    opacity: 0;
    animation: contentFadeIn 0.8s ease-out 2.5s forwards;
}

@keyframes contentFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    animation: slideIn 0.6s ease-out 2.6s both;
}

@keyframes slideIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.logo-text {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--text-primary);
}

.logo-sub {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 8px;
    color: var(--text-muted);
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 8px;
    animation: slideIn 0.6s ease-out 2.7s both;
}

.nav-link {
    font-family: 'Gilroy', sans-serif;
    text-decoration: none;
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 30px;
}

.auth-section {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.6s ease-out 2.8s both;
}

.btn {
    font-family: 'Gilroy', sans-serif;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-steam {
    background: var(--text-primary);
    color: #000000;
}

.btn-steam:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
}

.btn-steam-fa {
    font-family: 'Vazir', sans-serif;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn-steam-fa:hover {
    background: var(--glass-bg-light);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-logout {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn-logout:hover {
    background: rgba(255, 80, 80, 0.1);
    border-color: rgba(255, 80, 80, 0.3);
    color: #ff6b6b;
}

.main-content {
    min-height: 100vh;
    padding-top: 100px;
}

.hero-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: calc(100vh - 200px);
}

.hero-left {
    flex: 1;
    max-width: 700px;
    animation: heroLeftIn 1s ease-out 2.9s both;
}

@keyframes heroLeftIn {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-block;
    font-family: 'Gilroy', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 10px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Gilroy', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 12px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.1);
}

.hero-subtitle {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 10px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-description {
    font-family: 'Gilroy', sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 550px;
}

.hero-description-fa {
    font-family: 'Vazir', sans-serif;
    font-size: 0.95rem;
    line-height: 2.2;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 550px;
    direction: rtl;
    text-align: right;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--text-primary);
    color: #000000;
    padding: 16px 40px;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    padding: 16px 40px;
}

.btn-secondary:hover {
    background: var(--glass-bg-light);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.btn-announcement {
    background: rgba(0, 0, 0, 0.1);
    color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.062);
    padding: 16px 30px;
}

.btn-announcement:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);

}

.trust-badge {
    max-width: 70px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: scale(1.05);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    letter-spacing: 2px;
}

.stat-label {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
    display: block;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.status-indicator .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-indicator.online .status-dot {
    background: var(--success-color);
    box-shadow: 0 0 15px var(--success-color);
}

.status-indicator.offline .status-dot {
    background: var(--error-color);
    box-shadow: 0 0 15px var(--error-color);
}

.status-indicator .status-text {
    font-family: 'Gilroy', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.status-indicator.online .status-text {
    color: var(--success-color);
}

.status-indicator.offline .status-text {
    color: var(--error-color);
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.connection-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.connection-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;

    border-radius: 12px;
    transition: all 0.3s ease;
}

.connection-item > i {
    font-size: 1.2rem;
    color: var(--text-muted);
    width: 24px;
    text-align: center;
}

.connection-text {
    display: flex;
    flex-direction: column;
}

.connection-label {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.connection-value {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.copy-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.014);
    border: 1px solid rgba(255, 255, 255, 0.027);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: heroRightIn 1s ease-out 3.1s both;
}

@keyframes heroRightIn {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}

.character-image {
    position: relative;
}

.character-image img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(0, 0, 0, 0.5));
}

.character-image::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 100px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    filter: blur(20px);
}

.about-server-section {
    max-width: 1600px;
    margin: 80px auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 0;
}

.about-left {
    flex: 1;
    padding-right: 60px;
}

.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-badge {
    display: inline-block;
    font-family: 'Gilroy', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--gold-color);
    text-transform: uppercase;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 4px;
    margin-bottom: 25px;
}

.about-title {
    font-family: 'Gilroy', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.about-subtitle {
    font-family: 'Vazir', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.about-content {
    margin-bottom: 40px;
}

.about-text-en {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-text-fa {
    font-family: 'Vazir', sans-serif;
    font-size: 0.9rem;
    line-height: 2.2;
    color: var(--text-muted);
    direction: rtl;
    text-align: right;
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.feature-item i {
    font-size: 1.1rem;
    color: var(--gold-color);
    width: 20px;
    text-align: center;
}

.feature-item span {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.platform-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.platform-text {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.btn-download {
    background: linear-gradient(135deg, var(--gold-color), #ffb700);
    color: #000000;
    padding: 14px 30px;
    font-weight: 600;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.about-divider {
    width: 1px;
    height: 400px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    flex-shrink: 0;
}

.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
    padding-left: 60px;
}

.map-image {
    max-width: 500px;
}

.map-image img {
    width: 100%;
    height: auto;
}

.dev-team-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 60px;
    text-align: center;
}

.dev-border-top {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 0 auto 50px;
}

.dev-content {
    margin-bottom: 50px;
}

.dev-title {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.dev-subtitle {
    font-family: 'Vazir', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.dev-text-en {
    font-family: 'Gilroy', sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dev-text-fa {
    font-family: 'Vazir', sans-serif;
    font-size: 0.9rem;
    line-height: 2.2;
    color: var(--text-muted);
    direction: rtl;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dev-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.dev-stat {
    text-align: center;
}

.dev-number {
    display: block;
    font-family: 'Gilroy', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.dev-label {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer {
    padding: 40px 60px;
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-link {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.footer-contact i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-contact a {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-trust-badges a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-trust-badges a:hover {
    transform: scale(1.05);
}

.footer-trust-badges .trust-badge {
    max-width: 80px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
}

.footer-content p {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero-description,
    .hero-description-fa {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-description-fa {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .connection-info {
        justify-content: center;
    }
    
    .hero-right {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 8px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 6px;
    }
    
    .about-server-section {
        flex-direction: column;
        text-align: center;
    }
    
    .about-left {
        padding-right: 0;
        padding-bottom: 40px;
    }
    
    .about-divider {
        width: 100px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    }
    
    .about-right {
        padding-left: 0;
        padding-top: 40px;
    }
    
    .about-text-fa {
        text-align: center;
    }
    
    .about-features {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-item:hover {
        transform: translateY(-3px);
    }
    
    .platform-info {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px 25px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 10px 16px;
        font-size: 0.75rem;
    }
    
    .auth-section {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-section {
        padding: 40px 25px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 4px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-announcement {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .connection-info {
        flex-direction: column;
        align-items: center;
    }
    
    .connection-item {
        width: 100%;
        max-width: 300px;
    }
    
    .character-image img {
        max-height: 50vh;
    }
    
    .about-server-section {
        padding: 0 25px;
        margin: 60px auto;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .map-image {
        max-width: 100%;
    }
    
    .dev-team-section {
        padding: 0 25px;
    }
    
    .dev-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer {
        padding: 30px 25px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 2px;
        padding: 8px 15px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .loader-logo {
        font-size: 2.5rem;
        letter-spacing: 8px;
    }
    
    .about-badge {
        font-size: 0.6rem;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .dev-title {
        font-size: 1.4rem;
    }
    
    .dev-number {
        font-size: 1.8rem;
    }
}


.trust-link {
    display: flex;
    align-items: center;
}

.hero-buttons .trust-badge {
    max-width: 60px;
    height: auto;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.hero-buttons .trust-badge:hover {
    transform: scale(1.08);
}

.about-server-section {
    max-width: 1600px;
    margin: 80px auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 0;
}

.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
    padding-right: 60px;
}

.about-divider-vertical {
    width: 1px;
    height: 450px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.about-left {
    flex: 1;
    padding-left: 60px;
}

.animate-left {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.animate-left.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-right {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out 0.2s;
}

.animate-right.visible {
    opacity: 1;
    transform: translateY(0);
}

.map-image {
    max-width: 480px;
}

.map-image img {
    width: 100%;
    height: auto;
}

.section-divider {
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 60px auto;
}

.dev-team-section {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 60px;
    text-align: center;
}

.dev-content {
    margin-bottom: 50px;
}

.dev-title {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.dev-subtitle {
    font-family: 'Vazir', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.dev-text-en {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dev-text-fa {
    font-family: 'Vazir', sans-serif;
    font-size: 0.85rem;
    line-height: 2.2;
    color: var(--text-muted);
    direction: rtl;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dev-stats {
    display: flex;
    justify-content: center;
    gap: 70px;
}

.dev-stat {
    text-align: center;
}

.dev-number {
    display: block;
    font-family: 'Gilroy', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.dev-label {
    font-family: 'Gilroy', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .about-server-section {
        flex-direction: column;
        text-align: center;
    }
    
    .about-right {
        padding-right: 0;
        padding-bottom: 40px;
        order: 1;
    }
    
    .about-divider-vertical {
        width: 80px;
        height: 1px;
        order: 2;
    }
    
    .about-left {
        padding-left: 0;
        padding-top: 40px;
        order: 3;
    }
    
    .about-text-fa {
        text-align: center;
    }
    
    .about-features {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .platform-info {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .trust-link {
        margin-top: 10px;
    }
    
    .about-server-section {
        padding: 0 25px;
        margin: 60px auto;
    }
    
    .map-image {
        max-width: 100%;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .dev-team-section {
        padding: 0 25px;
    }
    
    .dev-stats {
        flex-direction: column;
        gap: 25px;
    }
}

