/* ==================================================
   IRAN FORCE - GLOBAL
================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #050505;
    color: #fff;
    font-family: "Vazirmatn", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
}


/* ==================================================
   NAVBAR
================================================== */

.navbar {
    width: 100%;
    min-height: 75px;

    display: flex;
    align-items: center;

    position: fixed;
    top: 0;
    right: 0;

    z-index: 1000;

    padding: 0 40px;

    background: rgba(8, 8, 8, 0.96);

    backdrop-filter: blur(12px);

    border-bottom: 2px solid #e32626;

    transition: transform 0.35s ease;
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.logo {
    color: #e32626;

    font-size: 24px;
    font-weight: 900;

    letter-spacing: 1px;

    text-decoration: none;

    text-shadow:
        0 0 10px rgba(227, 38, 38, 0.8);
}

.nav-links {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 20px;

    direction: rtl;
}

.nav-links a {
    color: #d8d8d8;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    white-space: nowrap;

    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e32626;

    text-shadow:
        0 0 10px rgba(227, 38, 38, 0.7);
}

.nav-divider {
    width: 1px;
    height: 19px;

    background: #333;
}

.auth-buttons {
    margin-right: auto;

    display: flex;

    gap: 10px;
}

.login-btn,
.register-btn {
    text-decoration: none;

    padding: 9px 19px;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}

.login-btn {
    color: #ddd;

    border: 1px solid #444;

    background: transparent;
}

.login-btn:hover {
    border-color: #e32626;

    color: white;

    background: rgba(227, 38, 38, 0.08);
}

.register-btn {
    color: white;

    background: #e32626;

    border: 1px solid #e32626;
}

.register-btn:hover {
    background: #ff3b3b;

    transform: translateY(-2px);

    box-shadow:
        0 0 20px rgba(227, 38, 38, 0.4);
}


/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;

    overflow: hidden;

    min-height: 700px;

    padding: 145px 7% 75px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.68),
            rgba(0, 0, 0, 0.72)
        ),
        url("background.png");

    background-size: cover;

    background-position: center;

    display: flex;

    flex-direction: row-reverse;

    justify-content: space-around;

    align-items: center;

    gap: 70px;
}

.hero::before {
    content: "";

    position: absolute;

    left: var(--mouse-x, 50%);
    top: var(--mouse-y, 50%);

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(227, 38, 38, 0.34),
            rgba(227, 38, 38, 0.10) 32%,
            transparent 70%
        );

    filter: blur(20px);

    transform: translate(-50%, -50%);

    pointer-events: none;

    opacity: 0;

    transition: opacity 0.5s ease;
}

.hero.glow-active::before {
    opacity: 1;
}

.hero > * {
    position: relative;

    z-index: 1;
}


/* ==================================================
   HERO CONTENT
================================================== */

.hero-content {
    max-width: 600px;

    direction: rtl;

    text-align: right;
}

.hero-badge {
    display: inline-block;

    padding: 7px 14px;

    margin-bottom: 18px;

    color: #e32626;

    background: rgba(227, 38, 38, 0.08);

    border: 1px solid rgba(227, 38, 38, 0.5);

    border-radius: 5px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.hero h1 {
    margin: 0;

    color: #e32626;

    font-size: 65px;
    font-weight: 900;

    letter-spacing: 4px;

    text-shadow:
        0 0 20px rgba(227, 38, 38, 0.55);
}

.hero h2 {
    margin: 8px 0 15px;

    font-size: 25px;

    color: white;
}

.hero-content > p {
    color: #b8b8b8;

    font-size: 15px;

    line-height: 2;

    margin-bottom: 30px;
}


/* ==================================================
   HERO BUTTONS
================================================== */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.hero-main-btn,
.teamspeak-btn {
    padding: 13px 26px;

    border-radius: 7px;

    font-family: "Vazirmatn", sans-serif;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition: 0.3s;
}

.hero-main-btn {
    color: white;

    background: #e32626;

    border: 1px solid #e32626;
}

.hero-main-btn:hover {
    background: #ff3b3b;

    transform: translateY(-3px);

    box-shadow:
        0 0 25px rgba(227, 38, 38, 0.45);
}

.teamspeak-btn {
    color: white;

    background: #1677ff;

    border: 1px solid #1677ff;
}

.teamspeak-btn:hover {
    background: #3388ff;

    transform: translateY(-3px);

    box-shadow:
        0 0 25px rgba(22, 119, 255, 0.4);
}


/* ==================================================
   SERVER STATUS CARD
================================================== */

.server-card {
    width: 510px;

    min-height: 385px;

    padding: 32px;

    background:
        linear-gradient(
            145deg,
            rgba(25, 25, 25, 0.58),
            rgba(7, 7, 7, 0.48)
        );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 15px;

    direction: rtl;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.65);

    position: relative;

    overflow: hidden;
}

.server-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 100%;
    height: 3px;

    background: #e32626;

    box-shadow:
        0 0 18px #e32626;
}

.server-card-top {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #aaa;

    font-size: 13px;

    margin-bottom: 20px;
}

.server-status-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #27d34d;

    box-shadow:
        0 0 12px #27d34d;
}

.server-online {
    margin-right: auto;

    color: #27d34d;

    font-size: 12px;
    font-weight: 800;
}

.server-name {
    color: white;

    font-size: 31px;
    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 5px;
}

.server-address {
    color: #999;

    font-size: 12px;

    margin-bottom: 25px;

    direction: ltr;

    text-align: right;
}

.server-info {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 9px;

    margin-bottom: 18px;
}

.server-info div {
    padding: 14px 7px;

    background: rgba(10, 10, 10, 0.60);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 7px;

    text-align: center;

    transition: 0.25s;
}

.server-info div:hover {
    border-color: rgba(227, 38, 38, 0.6);

    transform: translateY(-2px);
}

.server-info span {
    display: block;

    color: #777;

    font-size: 10px;

    margin-bottom: 7px;
}

.server-info strong {
    color: #ddd;

    font-size: 12px;
}

.server-info .online-text {
    color: #27d34d;
}

.server-extra {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 13px 0;

    margin-bottom: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 12px;
}

.server-extra span {
    color: #777;
}

.server-extra strong {
    color: #bbb;
}

.server-connect {
    display: block;

    padding: 12px;

    text-align: center;

    text-decoration: none;

    color: white;

    background: rgba(22, 22, 22, 0.72);

    border: 1px solid #333;

    border-radius: 7px;

    font-size: 13px;

    transition: 0.3s;
}

.server-connect:hover {
    color: #e32626;

    border-color: #e32626;

    background: rgba(227, 38, 38, 0.05);
}


/* ==================================================
   TICKER
================================================== */

.server-ticker {
    width: 100%;

    height: 55px;

    overflow: hidden;

    background: #090909;

    border-top: 2px solid #e32626;

    border-bottom: 2px solid #e32626;

    display: flex;

    align-items: center;
}

.ticker-track {
    display: flex;

    width: max-content;

    flex-shrink: 0;

    animation:
        tickerMove 22s linear infinite;

    will-change: transform;
}

.server-ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-content {
    flex-shrink: 0;

    display: flex;

    align-items: center;

    gap: 32px;

    padding: 0 32px;

    direction: rtl;

    white-space: nowrap;
}

.ticker-content span {
    color: #999;

    font-size: 14px;
    font-weight: 600;
}

.ticker-content b {
    color: #e32626;

    font-size: 9px;
}

@keyframes tickerMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* ==================================================
   FEATURES
================================================== */

.features {
    position: relative;

    padding: 90px 8% 55px;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(227, 38, 38, 0.06),
            transparent 35%
        ),
        #070707;
}

.features-layout {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.4fr 1fr;

    gap: 30px;
}

.about-server {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    border: 1px solid #292929;

    border-radius: 14px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.90)
        ),
        url("background.png");

    background-size: cover;

    background-position: center;
}

.about-title {
    position: absolute;

    top: 23px;
    right: 30px;

    color: white;

    font-size: 21px;
    font-weight: 700;

    padding-right: 12px;

    border-right: 3px solid #e32626;

    direction: rtl;
}

.about-content {
    min-height: 430px;

    padding: 67px 55px 40px;

    display: flex;

    flex-direction: column;

    align-items: center;
}

.about-content h3 {
    color: #e32626;

    font-size: 35px;

    margin: 5px 0 10px;

    letter-spacing: 4px;

    text-shadow:
        0 0 15px #e32626;
}

.about-line {
    width: 72%;

    max-width: 560px;

    height: 1px;

    background: #666;

    margin-bottom: 19px;
}

.about-text {
    width: 88%;

    max-width: 700px;

    direction: rtl;

    text-align: right;
}

.about-text p {
    color: #c8c8c8;

    font-size: 13px;

    line-height: 1.95;

    margin: 0 0 11px;
}


/* ==================================================
   SMALL FEATURES
================================================== */

.small-features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.feature-card {
    position: relative;

    min-height: 205px;

    padding: 30px 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background: #101010;

    border: 1px solid #292929;

    border-radius: 10px;

    overflow: hidden;

    transition: 0.3s;
}

.feature-card:hover {
    border-color: #e32626;

    transform: translateY(-5px);

    box-shadow:
        0 0 25px rgba(227, 38, 38, 0.2);
}

.glow-card::before {
    content: "";

    position: absolute;

    left: var(--card-mouse-x, 50%);
    top: var(--card-mouse-y, 50%);

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(227, 38, 38, 0.28),
            transparent 70%
        );

    filter: blur(15px);

    transform: translate(-50%, -50%);

    pointer-events: none;

    opacity: 0;

    transition: opacity 0.35s ease;
}

.glow-card.glow-active::before {
    opacity: 1;
}

.glow-card > * {
    position: relative;

    z-index: 1;
}

.feature-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    color: #e32626;

    font-size: 25px;

    background: rgba(227, 38, 38, 0.08);

    border: 1px solid rgba(227, 38, 38, 0.4);

    border-radius: 50%;
}

.feature-card h3 {
    color: #e32626;

    font-size: 19px;

    margin: 0 0 12px;
}

.feature-card p {
    color: #999;

    font-size: 13px;

    text-align: center;

    line-height: 1.8;

    margin: 0;
}


/* ==================================================
   SECTION DIVIDER
================================================== */

.section-divider {
    width: 82%;

    max-width: 1050px;

    height: 2px;

    margin: 60px auto 0;

    background: #e32626;

    box-shadow:
        0 0 12px rgba(227, 38, 38, 0.45);
}


/* ==================================================
   NEWS
================================================== */

.news-section {
    position: relative;

    padding: 100px 8%;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(227, 38, 38, 0.10),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #080808,
            #0d0d0d,
            #050505
        );
}

.section-heading {
    max-width: 1200px;

    margin: 0 auto 50px;

    text-align: right;

    direction: rtl;
}

.section-heading span {
    color: #e32626;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;
}

.section-heading h2 {
    margin: 8px 0 12px;

    font-size: 32px;
}

.section-heading p {
    color: #777;

    font-size: 14px;
}

.news-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.news-card {
    min-height: 290px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #151515,
            #0a0a0a
        );

    border: 1px solid #292929;

    border-radius: 12px;

    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-6px);

    border-color: #e32626;
}

.news-number {
    position: absolute;

    top: 18px;
    left: 20px;

    color: rgba(227, 38, 38, 0.18);

    font-size: 55px;

    font-weight: 900;
}

.news-content {
    position: relative;

    z-index: 1;

    padding: 35px 30px;

    direction: rtl;

    text-align: right;
}

.news-tag {
    color: #e32626;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.news-content h3 {
    font-size: 20px;

    margin: 15px 0;
}

.news-content p {
    color: #888;

    font-size: 13px;

    line-height: 1.9;
}

.news-content a {
    color: #e32626;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;
}


/* ==================================================
   HONOR HALL
================================================== */

.honors-section {
    position: relative;

    padding: 100px 8%;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(227, 38, 38, 0.08),
            transparent 35%
        ),
        #060606;
}

.honors-container {
    max-width: 1200px;

    margin: auto;
}

.honors-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;
}

.honor-card {
    background:
        linear-gradient(
            145deg,
            #151515,
            #090909
        );

    border: 1px solid #292929;

    border-radius: 12px;

    overflow: hidden;

    transition: 0.3s;
}

.honor-card:hover {
    border-color: #e32626;

    box-shadow:
        0 0 25px rgba(227, 38, 38, 0.12);
}

.honor-header {
    padding: 22px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid #252525;

    direction: rtl;
}

.honor-header h3 {
    margin: 0;

    color: #fff;

    font-size: 18px;
}

.honor-header span {
    color: #e32626;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.honor-table {
    width: 100%;

    border-collapse: collapse;

    direction: rtl;
}

.honor-table th {
    color: #666;

    font-size: 11px;

    font-weight: 600;

    padding: 12px 20px;

    text-align: right;

    background: #0d0d0d;
}

.honor-table td {
    padding: 13px 20px;

    color: #aaa;

    font-size: 12px;

    border-top: 1px solid #1e1e1e;

    text-align: right;
}

.honor-table tr:hover td {
    background: rgba(227, 38, 38, 0.035);
}

.honor-rank {
    color: #e32626 !important;

    font-weight: 900;
}

.honor-player {
    color: #eee !important;

    font-weight: 700;
}

.honor-value {
    color: #bbb !important;

    font-weight: 700;
}


/* ==================================================
   TECHNICAL TEAM
================================================== */

.staff-section {
    position: relative;

    padding: 100px 8%;

    background:
        linear-gradient(
            180deg,
            #070707,
            #0b0b0b
        );
}

.staff-container {
    max-width: 1200px;

    margin: auto;
}

.staff-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.staff-card {
    position: relative;

    overflow: hidden;

    padding: 35px 25px;

    text-align: center;

    direction: rtl;

    background:
        linear-gradient(
            145deg,
            #161616,
            #090909
        );

    border: 1px solid #292929;

    border-radius: 14px;

    transition: 0.3s;
}

.staff-card:hover {
    transform: translateY(-7px);

    border-color: #e32626;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(227, 38, 38, 0.12);
}

.staff-image {
    width: 125px;
    height: 125px;

    margin: 0 auto 22px;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid #e32626;

    background: #111;

    box-shadow:
        0 0 25px rgba(227, 38, 38, 0.22);
}

.staff-role {
    display: inline-block;

    padding: 5px 12px;

    margin-bottom: 12px;

    color: #e32626;

    background: rgba(227, 38, 38, 0.08);

    border: 1px solid rgba(227, 38, 38, 0.3);

    border-radius: 20px;

    font-size: 10px;

    font-weight: 800;
}

.staff-card h3 {
    margin: 5px 0;

    color: white;

    font-size: 21px;
}

.staff-id {
    color: #e32626;

    font-size: 13px;

    font-weight: 800;

    direction: ltr;
}

.staff-card p {
    margin: 18px 0 0;

    color: #888;

    font-size: 13px;

    line-height: 1.9;
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
    position: relative;

    padding: 70px 8% 25px;

    background:
        linear-gradient(
            180deg,
            #050505,
            #020202
        );

    border-top: 1px solid #252525;

    direction: rtl;
}

.footer-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 40px;
}

.footer-logo {
    color: #e32626;

    font-size: 25px;

    font-weight: 900;

    letter-spacing: 2px;
}

.footer-brand p {
    max-width: 340px;

    color: #777;

    font-size: 13px;

    line-height: 2;

    margin-top: 15px;
}

.footer-column h3 {
    color: white;

    font-size: 15px;

    margin: 0 0 20px;

    padding-right: 10px;

    border-right: 2px solid #e32626;
}

.footer-column a {
    display: block;

    width: fit-content;

    color: #777;

    text-decoration: none;

    font-size: 13px;

    margin-bottom: 12px;

    transition: 0.25s;
}

.footer-column a:hover {
    color: #e32626;

    transform: translateX(-3px);
}

.footer-server-info {
    color: #777;

    font-size: 12px;

    line-height: 2;
}

.footer-server-info strong {
    color: #bbb;
}

.footer-social {
    display: flex;

    gap: 9px;

    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #333;

    border-radius: 7px;

    color: #aaa;

    text-decoration: none;

    font-size: 12px;

    transition: 0.3s;
}

.social-link:hover {
    color: #fff;

    border-color: #e32626;

    background: rgba(227, 38, 38, 0.08);

    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;

    margin: 50px auto 0;

    padding-top: 20px;

    border-top: 1px solid #1e1e1e;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    color: #555;

    font-size: 11px;
}

.footer-owner {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 4px;

    text-align: center;
}

.footer-owner span:first-child {
    color: #777;
}

.footer-owner span:last-child {
    color: #e32626;

    font-weight: 800;

    text-shadow:
        0 0 10px rgba(227, 38, 38, 0.35);
}


/* ==================================================
   INNER PAGES
================================================== */

.inner-page {
    min-height: 100vh;

    padding: 150px 8% 80px;

    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(227, 38, 38, 0.09),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #080808,
            #050505
        );
}

.page-container {
    max-width: 1100px;

    margin: auto;
}

.page-title {
    text-align: right;

    direction: rtl;

    margin-bottom: 45px;
}

.page-title span {
    color: #e32626;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;
}

.page-title h1 {
    margin: 8px 0;

    font-size: 38px;
}

.page-title p {
    color: #777;

    font-size: 14px;
}

.inner-card {
    padding: 35px;

    margin-bottom: 20px;

    background:
        linear-gradient(
            145deg,
            #151515,
            #090909
        );

    border: 1px solid #292929;

    border-radius: 12px;

    direction: rtl;

    text-align: right;
}

.inner-card h2 {
    color: #e32626;

    font-size: 20px;

    margin-top: 0;
}

.inner-card p,
.inner-card li {
    color: #aaa;

    font-size: 14px;

    line-height: 2;
}

.inner-card ul {
    padding-right: 20px;
}


/* ==================================================
   AUTH
================================================== */

.auth-page {
    min-height: 100vh;

    padding: 150px 20px 80px;

    display: flex;

    justify-content: center;

    align-items: flex-start;

    background:
        radial-gradient(
            circle at center,
            rgba(227, 38, 38, 0.08),
            transparent 35%
        ),
        #050505;
}

.auth-box {
    width: 100%;

    max-width: 440px;

    padding: 40px;

    background: #101010;

    border: 1px solid #292929;

    border-top: 3px solid #e32626;

    border-radius: 12px;

    direction: rtl;

    text-align: right;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.5);
}

.auth-box h1 {
    margin: 0 0 10px;

    font-size: 28px;
}

.auth-box > p {
    color: #777;

    font-size: 13px;

    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    color: #aaa;

    font-size: 13px;

    margin-bottom: 8px;
}

.form-group input {
    width: 100%;

    padding: 13px;

    color: white;

    background: #080808;

    border: 1px solid #303030;

    border-radius: 6px;

    outline: none;

    font-family: "Vazirmatn", sans-serif;
}

.form-group input:focus {
    border-color: #e32626;

    box-shadow:
        0 0 10px rgba(227, 38, 38, 0.08);
}

.auth-submit {
    width: 100%;

    padding: 13px;

    color: white;

    background: #e32626;

    border: 0;

    border-radius: 6px;

    font-family: "Vazirmatn", sans-serif;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}

.auth-submit:hover {
    background: #ff3b3b;
}

.auth-bottom {
    margin-top: 20px;

    color: #777;

    font-size: 12px;

    text-align: center;
}

.auth-bottom a {
    color: #e32626;

    text-decoration: none;
}

.auth-extra {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;

    font-size: 12px;

    color: #777;
}

.auth-extra a {
    color: #e32626;

    text-decoration: none;
}


/* ==================================================
   STORE
================================================== */

.store-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.product-card {
    padding: 30px;

    background: #101010;

    border: 1px solid #292929;

    border-radius: 10px;

    direction: rtl;

    text-align: right;

    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);

    border-color: #e32626;
}

.product-card .product-icon {
    font-size: 35px;

    color: #e32626;

    margin-bottom: 15px;
}

.product-card h3 {
    margin: 0 0 10px;
}

.product-card p {
    color: #888;

    font-size: 13px;

    line-height: 1.8;
}

.product-price {
    color: #e32626;

    font-weight: 800;

    margin: 20px 0;
}

.product-button {
    display: block;

    padding: 10px;

    text-align: center;

    color: white;

    background: #171717;

    border: 1px solid #333;

    border-radius: 6px;

    text-decoration: none;

    font-size: 13px;

    transition: 0.3s;
}

.product-button:hover {
    border-color: #e32626;

    color: #e32626;
}


/* ==================================================
   TEAMSPEAK
================================================== */

.teamspeak-box {
    text-align: center;

    direction: rtl;
}

.teamspeak-ip {
    display: inline-block;

    margin: 20px 0;

    padding: 18px 30px;

    color: #1677ff;

    background: #080808;

    border: 1px solid #1677ff;

    border-radius: 7px;

    font-size: 20px;

    font-weight: 800;

    direction: ltr;
}

.teamspeak-copy {
    display: inline-block;

    padding: 11px 25px;

    color: white;

    background: #1677ff;

    border: 0;

    border-radius: 6px;

    font-family: "Vazirmatn", sans-serif;

    font-weight: 700;

    cursor: pointer;
}


/* ==================================================
   COPY MESSAGE
================================================== */

.copy-message {
    position: fixed;

    z-index: 3000;

    padding: 10px 16px;

    color: white;

    background: rgba(12, 12, 12, 0.96);

    border: 1px solid #1677ff;

    border-radius: 6px;

    font-size: 12px;

    white-space: nowrap;

    opacity: 0;

    transform: translateY(5px);

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.copy-message.show {
    opacity: 1;

    transform: translateY(0);
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 1100px) {

    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero {
        gap: 40px;
    }

    .server-card {
        width: 430px;
    }

    .footer-container {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

    .navbar {
        height: auto;

        min-height: 75px;

        padding: 15px 20px;

        flex-wrap: wrap;

        gap: 15px;
    }

    .nav-links {
        position: static;

        transform: none;

        order: 3;

        width: 100%;

        justify-content: center;

        overflow-x: auto;

        padding-bottom: 3px;
    }

    .auth-buttons {
        margin-right: auto;
    }

    .hero {
        flex-direction: column;

        padding-top: 150px;

        gap: 50px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .server-card {
        width: 100%;

        max-width: 500px;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .news-grid,
    .store-grid {
        grid-template-columns: 1fr;
    }

    .honors-grid {
        grid-template-columns: 1fr;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .navbar {
        padding: 13px 15px;
    }

    .logo {
        font-size: 20px;
    }

    .auth-buttons {
        gap: 5px;
    }

    .login-btn,
    .register-btn {
        padding: 8px 11px;

        font-size: 11px;
    }

    .nav-links {
        justify-content: flex-start;

        gap: 13px;
    }

    .nav-divider {
        display: none;
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .hero-content > p {
        font-size: 13px;
    }

    .server-card {
        padding: 25px 20px;
    }

    .server-name {
        font-size: 25px;
    }

    .server-info {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .server-extra {
        flex-direction: column;

        gap: 8px;
    }

    .small-features {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-left: 25px;
        padding-right: 25px;
    }

    .about-text {
        width: 100%;
    }

    .honor-table th,
    .honor-table td {
        padding: 11px 10px;

        font-size: 10px;
    }

    .staff-card {
        padding: 30px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

    .footer-owner {
        font-size: 12px;

        line-height: 1.8;
    }

    .auth-box {
        padding: 28px 22px;
    }

}
/* ==================================================
   IRAN FORCE - LOGGED IN USER
================================================== */

.logged-user {
    display: inline-flex;

    align-items: center;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    margin-left: 2px;
}


/* ==================================================
   PROFILE BUTTON
================================================== */

.profile-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 37px;

    padding: 9px 19px;

    color: #ddd;

    background: transparent;

    border: 1px solid #444;

    border-radius: 6px;

    text-decoration: none;

    font-family: "Vazirmatn", sans-serif;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    transition: 0.3s;
}

.profile-btn:hover {
    color: white;

    border-color: #e32626;

    background: rgba(227, 38, 38, 0.08);

    transform: translateY(-2px);

    box-shadow:
        0 0 15px rgba(227, 38, 38, 0.15);
}


/* ==================================================
   LOGOUT BUTTON
================================================== */

.logout-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 37px;

    padding: 9px 19px;

    color: #ddd;

    background: transparent;

    border: 1px solid #444;

    border-radius: 6px;

    font-family: "Vazirmatn", sans-serif;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    cursor: pointer;

    transition: 0.3s;
}

.logout-btn:hover {
    color: white;

    border-color: #e32626;

    background: rgba(227, 38, 38, 0.08);

    transform: translateY(-2px);

    box-shadow:
        0 0 15px rgba(227, 38, 38, 0.15);
}


/* ==================================================
   LOGGED IN AUTH BUTTONS
================================================== */

.auth-buttons {
    align-items: center;
}


/* ==================================================
   MOBILE LOGGED IN BUTTONS
================================================== */

@media (max-width: 600px) {

    .logged-user {
        font-size: 11px;

        margin-left: 0;
    }

    .profile-btn,
    .logout-btn {
        min-height: 34px;

        padding: 8px 11px;

        font-size: 11px;
    }

}