:root {
    --nice-padding: 6rem;
    --roundness: 0.75rem;
    --accent1: #ff5722; /* نارنجی ایرانی */
    --accent2: #e91e63; /* صورتی ایرانی */
    --accent2_transp: #e91e6355;
    --background1: #1a237e; /* آبی تیره ایرانی */
    --background2: #0d47a1; /* آبی ایرانی */
    color-scheme: dark;
}

/* تنظیمات کلی */
@font-face {
  font-family: 'Lalezar';
  src: url('Lalezar-Regular.ttf') format('truetype');
}

body {
    background-color: var(--background1);
    color: white;
    margin: 0;
    text-align: right; /* تراز راست برای فارسی */
    font-family: 'Lalezar', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* بکگراند ماینکرفتی متحرک */
.minecraft-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.block {
    position: absolute;
    width: 50px;
    height: 50px;
    background-size: cover;
    opacity: 0.1;
    animation: floatBlock linear infinite;
    z-index: -1;
}

@keyframes floatBlock {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.grass {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="16" height="16" fill="%2355ff55"/></svg>');
}

.stone {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="16" height="16" fill="%23999999"/></svg>');
}

.diamond {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="16" height="16" fill="%2344ccff"/></svg>');
}

.gold {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="16" height="16" fill="%23ffcc00"/></svg>');
}

.iron {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="16" height="16" fill="%23dddddd"/></svg>');
}

.redstone {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="16" height="16" fill="%23ff0000"/></svg>');
}

.emerald {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="16" height="16" fill="%2300cc00"/></svg>');
}

.coal {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="16" height="16" fill="%23000000"/></svg>');
}

.lapis {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="16" height="16" fill="%230044ff"/></svg>');
}

/* استایل‌های ماینکرفتی */
.minecraft-title {
    position: relative;
    display: inline-block;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.minecraft-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    border-radius: 2px;
}

.minecraft-block {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.minecraft-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.minecraft-block:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.minecraft-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 0 #000;
}

.minecraft-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3);
}

.minecraft-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}

.minecraft-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.2) 100%);
    pointer-events: none;
}

/* انکرها برای منوی ناوبری */
#more, #discord, #about, #join {
    padding-top: 5rem;
    margin-top: -5rem;
}

/* تایپوگرافی فارسی */
.headline {
    margin-top: 2rem;
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
}

/* نوار ناوبری دسکتاپ */
.desktop_navbar {
    position: fixed;
    display: flex;
    height: 4rem;
    width: 100%;
    top: 0;
    background-color: #00000022;
    backdrop-filter: blur(15px);
    z-index: 5;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.desktop_navbar_logo_img {
    width: 5rem;
    padding-right: 2rem;
    padding-left: 1rem;
    transition: transform 0.3s ease;
}

.desktop_navbar_logo_img:hover {
    transform: rotate(5deg) scale(1.1);
}

.desktop_navbar_link {
    font-size: 1.2rem;
    padding: 0.8rem;
    transition: all 0.5s;
    text-decoration: none;
    color: #fff;
    text-align: center;
    position: relative;
}

.desktop_navbar_link:hover {
    color: var(--accent1);
}

.desktop_navbar_link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent1);
    transition: all 0.3s ease;
}

.desktop_navbar_link:hover::after {
    width: 100%;
    left: 0;
}

.desktop_navbar_link2 {
    padding: 0.5rem;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.desktop_navbar_link2_div {
    font-size: 1.2rem;
    padding: 0.8rem;
    transition: all 0.5s;
    margin-right: auto;
    margin-left: 2rem;
    font-weight: 700;
    border: solid 1px var(--accent1);
    border-radius: var(--roundness);
    text-align: center;
}

.desktop_navbar_link2_div:hover {
    border: solid 1px var(--accent2);
    background-color: var(--accent2);
    transform: scale(1.05);
}

/* نوار ناوبری موبایل */
.mobile_navbar {
    display: none;
    overflow: hidden;
    background-color: #00000033;
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    z-index: 5;
    flex-direction: row;
    min-height: 53px;
}

.mobile_navbar_logo_img {
    position: absolute;
    display: block;
    height: 42px;
    padding-right: 0.5rem;
    top: 0;
    right: 0;
    padding-top: 3.5px;
    transition: transform 0.3s ease;
}

.mobile_navbar_logo_img:hover {
    transform: rotate(5deg) scale(1.1);
}

.mobile_navbar #mobile_navbar_links {
    display: none;
    margin-top: 53px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #00000011;
}

.mobile_navbar_link {
    padding: 0.5rem;
    position: relative;
}

.mobile_navbar_link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent1);
    transition: all 0.3s ease;
}

.mobile_navbar_link:hover::after {
    width: 100%;
    left: 0;
}

.mobile_navbar a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

.mobile_navbar .icon {
    background-color: #00000044;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    padding: 16px;
    transition: all 0.3s ease;
}

.mobile_navbar .icon:hover {
    background-color: #00000066;
    transform: rotate(90deg);
}

.mobile_navbar_logo_img_a {
    display: block;
    background-color: #00000022;
}

/* بخش اصلی */
.mainflex {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.main1 {
    padding-top: calc(var(--nice-padding) + 2rem);
    display: flex;
    width: 100%;
    align-self: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5) url("media/bg.png");
    background-blend-mode: darken;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    min-height: 100vh;
    position: relative;
}

.main1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 35, 126, 0.7) 0%, rgba(13, 71, 161, 0.7) 100%);
    z-index: -1;
}

.main1_logo_a {
    margin-bottom: var(--nice-padding);
    cursor: default;
}

.main1_logo {
    display: block;
    align-self: center;
    margin-right: auto;
    margin-left: auto;
    transition: all 0.5s;
    max-width: 40rem;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.main1_logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 87, 34, 0.7));
}

.main1_description {
    text-align: center;
    font-size: 3rem;
    margin-bottom: var(--nice-padding);
    margin-right: 1rem;
    margin-left: 1rem;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main1_actcent {
    font-weight: 800;
    color: var(--accent1);
    display: block;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.7);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(255, 87, 34, 0.7);
    }
    to {
        text-shadow: 0 0 15px rgba(255, 87, 34, 0.9), 0 0 20px rgba(255, 87, 34, 0.5);
    }
}

.main1_ipcopier_div {
    position: relative;
}

.main1_ipcopier {
    padding: 1rem;
    padding-right: 2rem;
    padding-left: 2rem;
    font-size: 2rem;
    background-color: var(--accent2_transp);
    border: 0px;
    border-radius: var(--roundness);
    color: white;
    transition: all 0.5s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.main1_ipcopier:hover {
    background-color: var(--accent2);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.7);
}

.main1_ipcopier_text1 {
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.main1_ipcopier_text2 {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.main1_popup {
    position: absolute;
    right: 50%;
    transform: translate(50%, -0%);
    text-align: center;
    background-color: rgba(0, 175, 0, 0.1);
    border: solid rgba(0, 175, 0, 1) 1px;
    color: #fff;
    border-radius: var(--roundness);
    z-index: 9999;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-top: -10.5rem;
    backdrop-filter: blur(5px);
}

.main1_downarrow {
    opacity: 50%;
    height: 1.5rem;
    padding: 2rem;
    transition: all 0.5s;
    margin-top: 2rem;
    cursor: pointer;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.main1_downarrow:hover {
    opacity: 100%;
    transform: scale(1.05) translateY(5px);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* ویژگی‌های سرور */
.main2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    padding-bottom: 1rem;
    background-color: var(--background2);
    width: 100%;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.main2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="50" height="50" x="0" y="0" fill="%231a237e" opacity="0.1"/><rect width="50" height="50" x="50" y="50" fill="%231a237e" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: 0;
}

.main2_features_div {
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.main2_feature {
    display: flex;
    background-color: var(--background1);
    height: 24rem;
    width: 18rem;
    border-radius: var(--roundness);
    transition: all 0.5s;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.main2_feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.main2_feature:hover {
    background-color: #00000099;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.main2_feature_img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: var(--roundness) var(--roundness) 0 0;
    transition: all 0.5s ease;
}

.main2_feature:hover .main2_feature_img {
    transform: scale(1.1);
}

.main2_feature_headline {
    margin-top: 1rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0 1rem;
    position: relative;
}

.main2_feature_headline::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 25
}  


.main2_feature_headline::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: var(--accent1);
    border-radius: 1px;
}

.main2_feature_text {
    margin: 1rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 0 1rem;
    color: #ddd;
}

/* بخش دیسکورد */
.main4 {
    min-height: 10rem;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    background-color: var(--background1);
    position: relative;
}

.main4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="50" height="50" x="0" y="0" fill="%230d47a1" opacity="0.1"/><rect width="50" height="50" x="50" y="50" fill="%230d47a1" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: 0;
}

.main4_dc_widget {
    border-radius: var(--roundness);
    border: 0;
    transition: all 0.3s ease;
}

.main4_dc_widget:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(114, 137, 218, 0.5);
}

.main4_dc_div {
    margin: 2rem;
    display: flex;
    flex-direction: row;
    background-color: var(--background2);
    border-radius: var(--roundness);
    max-width: 48rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.main4_dc_div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%);
    z-index: -1;
    pointer-events: none;
}

.main4_dc_description_div {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    width: 100%;
}

.main4_dc_description_title {
    margin: 1rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
}

.main4_dc_description_title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: var(--accent1);
    border-radius: 1px;
}

.main4_dc_description {
    margin: 1rem;
    font-size: 1.2rem;
    line-height: 2;
    color: #ddd;
}

.main4_dc_description i {
    margin-left: 0.5rem;
    color: var(--accent1);
}

.main4_dc_button_a {
    text-decoration: none;
    color: #fff;
    text-align: center;
    border: solid var(--accent1) 1px;
    border-radius: var(--roundness);
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1.5rem;
    transition: all 0.5s;
    width: 80%;
    background-color: rgba(114, 137, 218, 0.2);
}

.main4_dc_button_a:hover {
    border: solid 1px var(--accent2);
    background-color: rgba(114, 137, 218, 0.4);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(114, 137, 218, 0.3);
}

.main4_dc_button {
    padding: 0.8rem;
    font-size: 1.2rem;
}

.main4_dc_button i {
    margin-left: 0.5rem;
}

/* بخش تیم مدیریت */
.main5 {
    background-color: var(--background2);
    min-height: 10rem;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    position: relative;
}

.main5::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="50" height="50" x="0" y="0" fill="%231a237e" opacity="0.1"/><rect width="50" height="50" x="50" y="50" fill="%231a237e" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: 0;
}

.main5_admin_div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1rem 0.5rem 1rem;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.main5_admins_div {
    display: flex;
    max-width: 46rem;
    min-height: 18rem;
    background-color: var(--background1);
    border-radius: var(--roundness);
    margin: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.main5_admins_div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%);
    z-index: -1;
    pointer-events: none;
}

.main5_admins_dev_type1 {
    flex-direction: row;
    padding-left: 2rem;
}

.main5_admins_dev_type2 {
    flex-direction: row-reverse;
    padding-right: 2rem;
}

.main5_admins_img {
    border-radius: var(--roundness);
    max-width: 45%;
    max-height: 100%;
    align-self: center;
    object-fit: cover;
    transition: all 0.5s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.main5_admins_div:hover .main5_admins_img {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.main5_admins_description_div {
    display: flex;
    justify-content: center;
    justify-self: center;
    max-width: 60%;
    padding: 2rem 1rem;
    flex-direction: column;
}

.main5_admins_description_rank {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.main5_admins_description_rank_owner {
    color: #3498db;
}

.main5_admins_description_rank_admin {
    color: #f82f2f;
}

.main5_admins_description_title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s;
    margin-bottom: 0.5rem;
    position: relative;
}

.main5_admins_description_title::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: var(--accent1);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.main5_admins_description_title:hover::after {
    width: 100%;
    left: 0;
}

.main5_admins_description_title:hover {
    color: var(--accent1);
    transform: scale(1.05);
}

.main5_admins_description {
    margin-bottom: auto;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ddd;
}

.main5_supporter_div {
    display: flex;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.main5_supporters_div {
    width: 23.5rem;
    min-height: 16rem;
    background-color: var(--background1);
    border-radius: var(--roundness);
    margin: 0.5rem;
    display: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.main5_supporters_div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%);
    z-index: -1;
    pointer-events: none;
}

.main5_supporters_img {
    border-radius: var(--roundness);
    max-width: 25%;
    max-height: 100%;
    align-self: center;
    margin: 1rem;
    object-fit: cover;
    transition: all 0.5s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.main5_supporters_div:hover .main5_supporters_img {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.main5_supporters_description_div {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.5rem 1rem 1rem;
    flex-direction: column;
}

.main5_supporters_description_rank {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.main5_supporters_description_rank_supporter {
    color: #00f8ff;
}

.main5_supporters_description_title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s;
    margin-bottom: 0.5rem;
    position: relative;
}

.main5_supporters_description_title::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: var(--accent1);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.main5_supporters_description_title:hover::after {
    width: 100%;
    left: 0;
}

.main5_supporters_description_title:hover {
    color: var(--accent1);
    transform: scale(1.05);
}

.main5_supporters_description {
    font-size: 1.2rem;
    margin-bottom: auto;
    line-height: 1.6;
    color: #ddd;
}

/* بخش عضویت */
.main3 {
    background-color: var(--background1);
    min-height: 10rem;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 3rem 0;
    position: relative;
}

.main3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="50" height="50" x="0" y="0" fill="%230d47a1" opacity="0.1"/><rect width="50" height="50" x="50" y="50" fill="%230d47a1" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: 0;
}

.main3_join_div_div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap-reverse;
    margin: 1rem;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.main3_join_div {
    display: flex;
    flex-direction: column;
    width: 22rem;
    height: 10rem;
    background-color: var(--background2);
    border-radius: var(--roundness);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.main3_join_div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%);
    z-index: -1;
    pointer-events: none;
}

.main3_join_div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.main3_join_title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin: 1rem 0;
    position: relative;
}

.main3_join_title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: var(--accent1);
    border-radius: 1px;
}

.main3_join_content_div {
    display: flex;
    flex-direction: row;
    background-color: var(--background1);
    height: 100%;
    border-radius: var(--roundness);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.main3_join_categories {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 1.2rem;
    line-height: 2;
    border-left: 3px solid var(--background2);
    padding-left: 0.75rem;
    font-weight: 700;
}

.main3_join_values {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size: 1.2rem;
    line-height: 2;
    border-right: 3px solid var(--background2);
    padding-right: 0.75rem;
    direction: ltr;
}

/* فوتر */
.copyright {
    color: #ffffff99;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.copyright:hover {
    color: var(--accent1);
    transform: scale(1.05);
}

.copyright_div {
    display: flex;
    justify-content: center;
    padding: 16px;
    width: auto;
    background-color: #000;
    position: relative;
}

.copyright_div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
}

/* رسپانسیو */
@media only screen and (max-width: 768px) {
    :root {
        --nice-padding: 3rem;
    }
    
    .desktop_navbar {
        display: none;
    }
    
    .mobile_navbar {
        display: flex;
    }
    
    .headline {
        font-size: 1.9rem;
        margin-right: 1rem;
        margin-left: 1rem;
    }
    
    .main1_logo {
        max-width: 16rem;
    }
    
    .main1_description {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .main1_ipcopier {
        font-size: 1.5rem;
    }
    
    .main1_ipcopier_text1 {
        font-size: 1.5rem;
    }
    
    .main1_ipcopier_text2 {
        font-size: 1rem;
    }
    
    .main5_admins_img {
        align-self: center;
        padding-top: 1rem;
    }
    
    .main5_admins_div {
        flex-direction: column;
        min-height: 0;
        max-width: 90%;
    }
    
    .main5_admins_description_div {
        max-width: 100%;
        padding: 1rem;
    }
    
    .main4_dc_div {
        flex-direction: column;
        max-width: 90%;
    }
    
    .main4_dc_widget {
        height: 20rem;
        width: 100%;
    }
    
    .main3_join_div {
        width: 90%;
        min-height: 9rem;
    }
    
    .main3_join_content_div {
        padding: 1rem;
    }
    
    .main5_admins_dev_type1 {
        padding-left: 0;
    }
    
    .main5_admins_dev_type2 {
        padding-right: 0;
    }
    
    .main5_supporters_div {
        width: 90%;
        flex-direction: column;
    }
    
    .main5_supporters_img {
        max-width: 100%;
        max-height: 200px;
        margin: 1rem auto;
    }
}

@media only screen and (max-width: 480px) {
    .main3_join_categories,
    .main3_join_values {
        font-size: 1rem;
    }
    
    .main3_join_div {
        width: 95%;
        padding: 0.5rem;
    }
    
    .main3_join_div_div {
        margin: 0.25rem;
    }
    
    .main2_feature {
        width: 90%;
        height: auto;
    }
    
    .main2_feature_img {
        height: 200px;
    }
}

/* افکت‌های ویژه ماینکرفتی */
.minecraft-pixel {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.minecraft-tooltip {
    position: relative;
}

.minecraft-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    border: 2px solid #555;
}

.minecraft-tooltip:hover::after {
    opacity: 1;
}

/* انیمیشن‌های ویژه */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spin-animation {
    animation: spin 4s linear infinite;
}

/* استایل‌های اضافی برای المان‌های ماینکرفتی */
.minecraft-border {
    border: 4px solid #8b8b8b;
    border-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><rect width="16" height="16" fill="%238b8b8b"/></svg>') 4 stretch;
}

.minecraft-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #555;
    outline: none;
    border-radius: 4px;
}

.minecraft-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #ff5722;
    cursor: pointer;
    border-radius: 2px;
}

.minecraft-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #ff5722;
    cursor: pointer;
    border-radius: 2px;
}

/* استایل برای اسکرول بار */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a237e;
}

::-webkit-scrollbar-thumb {
    background: #ff5722;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e91e63;
}