    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Preloader стили */
    .preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #000000 !important;
        background: #000000 !important;
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    }

    /* Блокировка скролла во время загрузки */
    body.preloader-active,
    html.preloader-active {
        overflow: hidden !important;
        height: 100%;
        position: fixed;
        width: 100%;
        background-color: #000000 !important;
        background: #000000 !important;
    }

    /* Черный фон body и html во время загрузки */
    body.preloader-active {
        background-color: #000000 !important;
        background: #000000 !important;
    }

    html.preloader-active {
        background-color: #000000 !important;
        background: #000000 !important;
    }

    .preloader.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .preloader-content {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .preloader-text {
        position: relative;
        font-family: 'Press Start 2P', cursive;
        font-size: 28px;
        color: #ffffff;
        text-transform: lowercase;
        letter-spacing: 4px;
        animation: fadeIn 0.8s ease-in-out;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    }

    .montana-text {
        position: relative;
        display: inline-block;
        filter: brightness(0.7);
    }

    .montana-text .cross {
        color: #ff0000;
        display: inline-block;
        animation: crossGlow 1.5s ease-in-out infinite;
    }

    /* Анимации */
    @keyframes fadeIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }

    @keyframes crossGlow {
        0%, 100% {
            text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
            opacity: 1;
        }
        50% {
            text-shadow: 0 0 15px rgba(255, 0, 0, 0.9);
            opacity: 0.9;
        }
    }

    body {
        font-family: 'Press Start 2P', cursive;
        background-color: #1a1a1a;
        color: #ffffff;
        min-height: 100vh;
        overscroll-behavior-y: none;
        overflow-x: hidden;
    }

    html {
        overscroll-behavior-y: none;
        overflow-x: hidden;
    }

    /* Фиксация body при открытом мобильном меню */
    body.mobile-menu-open {
        position: fixed;
        width: 100%;
        overflow: hidden;
    }

    .navbar {
        background-color: transparent !important;
        background: transparent !important;
        padding: 25px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: none;
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 10000;
    }

    /* Навбар fixed на странице доната с темно-серым фоном */
    body:has(#donateContent:not(.hidden)) .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background-color: #1a1a1a !important;
        background: #1a1a1a !important;
        border-bottom: 1px solid #333;
        z-index: 10000 !important;
    }

    /* Убеждаемся, что кнопка навигационного меню видна на странице доната */
    body:has(#donateContent:not(.hidden)) .mobile-menu-toggle {
        z-index: 10001 !important;
        position: relative !important;
    }

    .navbar.forum-active {
        justify-content: flex-start;
    }

    .navbar.forum-active .logo {
        margin-right: auto;
        margin-left: 10%;
    }

    .navbar.forum-active .nav-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar.forum-active .nav-item-wrapper:nth-child(2),
    .navbar.forum-active .nav-item-wrapper:nth-child(4) {
        display: none;
    }

    .navbar-utils {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .navbar-icon {
        width: 20px;
        height: 20px;
        cursor: pointer;
        color: #ffffff;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.2s;
        line-height: 1;
    }

    .navbar-icon:hover {
        opacity: 0.7;
    }

    .navbar-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #ffffff;
        text-decoration: none;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: opacity 0.2s;
        font-family: 'Press Start 2P', cursive;
    }

    .navbar-link:hover {
        opacity: 0.7;
    }


    .logo {
        color: #ffffff;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 2px;
        cursor: pointer;
        transition: opacity 0.2s;
    }

    .logo .logo-red-t {
        color: #990000;
    }

    .logo:hover {
        opacity: 0.7;
    }

    .nav-menu {
        display: flex;
        gap: 60px;
        align-items: center;
        position: relative;
    }

    .nav-item-wrapper {
        position: relative;
    }

    .nav-item {
        color: #ffffff;
        text-decoration: none;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: opacity 0.2s;
        display: block;
    }

    .nav-item:hover {
        opacity: 0.7;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #2a2a2a;
        border: 1px solid #000;
        border-top: 2px solid #000;
        padding: 20px;
        min-width: 250px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        margin-top: 5px;
    }

    .nav-item-wrapper:last-child .dropdown-menu {
        left: auto;
        right: 0;
    }

    .nav-item-wrapper:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-header {
        font-size: 16px;
        color: #ffffff;
        text-transform: uppercase;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #000;
    }

    .dropdown-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .dropdown-item {
        color: #ffffff;
        text-decoration: none;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: opacity 0.2s;
        display: block;
    }

    .dropdown-message {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #000;
        color: #999;
        font-size: 9px;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .dropdown-message.hidden {
        display: none;
    }

    .dropdown-item:hover {
        opacity: 0.7;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    #mainContent {
        display: block;
        grid-template-columns: none;
        gap: 0;
    }

    #mainContent.hidden {
        display: none !important;
    }

    .content-column {
        background-color: #2a2a2a;
        padding: 30px;
        border: 1px solid #000;
    }

    .content-title {
        font-size: 18px;
        color: #ffffff;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .content-text {
        font-size: 10px;
        color: #ffffff;
        line-height: 1.8;
        margin-bottom: 15px;
    }


    .hero-wrapper {
        position: relative;
        width: 100%;
        min-height: 100vh;
        overflow: hidden;
        margin-top: 0;
    }

    .hero-section {
        position: relative;
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        overflow: hidden;
        z-index: 2;
    }

    .hero-title {
        font-size: 48px;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 8px;
        text-align: center;
        font-weight: bold;
        margin: 0;
        margin-bottom: 40px;
        margin-top: -150px;
        position: relative;
        z-index: 10;
        text-shadow: 
            2px 2px 8px rgba(0, 0, 0, 0.95),
            0 0 25px rgba(0, 0, 0, 0.8),
            4px 4px 15px rgba(0, 0, 0, 0.9),
            -8px 0 20px rgba(0, 0, 0, 0.7),
            8px 0 20px rgba(0, 0, 0, 0.7),
            -12px 0 30px rgba(0, 0, 0, 0.6),
            12px 0 30px rgba(0, 0, 0, 0.6);
        filter: brightness(0.7);
    }

    .hero-subtitle {
        font-size: 16px;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 4px;
        text-align: center;
        margin: 0;
        position: relative;
        z-index: 10;
        text-shadow: 
            2px 2px 8px rgba(0, 0, 0, 0.95),
            0 0 25px rgba(0, 0, 0, 0.8),
            4px 4px 15px rgba(0, 0, 0, 0.9),
            -8px 0 20px rgba(0, 0, 0, 0.7),
            8px 0 20px rgba(0, 0, 0, 0.7),
            -12px 0 30px rgba(0, 0, 0, 0.6),
            12px 0 30px rgba(0, 0, 0, 0.6);
        filter: brightness(0.7);
    }

    .hero-carousel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 92vh;
        z-index: 1;
        margin-top: 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-carousel.hidden {
        display: none !important;
    }

    .carousel-container {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .carousel-container::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Более сильное затемнение с градиентом */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
        z-index: 2;
        pointer-events: none;
    }

    .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        visibility: visible;
    }

    .carousel-slide.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .carousel-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        /* Затемнение изображения и улучшение качества */
        filter: brightness(0.55) contrast(1.4) saturate(1.2);
        /* Без обрезки изображения, только затемнение */
    }

    /* Специальный стиль для карты map.webp - пиксельный эффект */
    .carousel-image-pixelated {
        /* Сильный пиксельный эффект в стиле дизайна сайта */
        image-rendering: pixelated !important;
        image-rendering: -moz-crisp-edges !important;
        image-rendering: crisp-edges !important;
        /* Отключаем все виды сглаживания */
        -webkit-font-smoothing: none !important;
        -moz-osx-font-smoothing: unset !important;
        /* Усиленный контраст для пиксельного эффекта */
        filter: brightness(0.55) contrast(1.6) saturate(1.2);
    }

    .carousel-pagination {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 100;
    }


    .carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid #ffffff;
        background-color: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-dot.active {
        background-color: #ffffff;
    }

    .carousel-dot:hover {
        background-color: rgba(255, 255, 255, 0.5);
    }

    .hero-nav-arrow {
        position: fixed;
        font-size: 48px;
        color: #ffffff;
        cursor: pointer;
        padding: 20px;
        transition: opacity 0.3s;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        pointer-events: auto;
        margin: 0;
    }

    .hero-nav-arrow.hidden {
        display: none;
    }

    .hero-nav-arrow:hover {
        opacity: 0.7;
    }

    .hero-nav-arrow.left {
        left: 20px;
    }

    .hero-nav-arrow.right {
        right: 20px;
    }

    .landing-content {
        padding: 80px 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .content-section {
        margin-bottom: 40px;
        padding: 40px;
        background-color: rgba(42, 42, 42, 0.5);
        border-radius: 8px;
    }

    .content-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
        margin-top: 25px;
        color: #999999;
        border: 1px solid #ffffff;
        padding: 10px 20px;
        display: inline-block;
    }

    .content-section h2:first-child {
        margin-top: 0;
    }

    .content-section h2:nth-of-type(2) {
        margin-top: 35px;
    }

    .content-section p {
        font-size: 12px;
        line-height: 1.5;
        color: #888888;
        margin-bottom: 15px;
    }

    .content-section h3 {
        font-size: 18px;
        margin-bottom: 12px;
        margin-top: 20px;
        color: #999999;
    }

    .section-divider {
        text-align: center;
        color: #999999;
        font-size: 16px;
        margin: 20px 0;
        padding: 10px 0;
    }

    .forum-button {
        background-color: #2a2a2a;
        border: 2px solid #000;
        padding: 20px 60px;
        font-family: 'Press Start 2P', cursive;
        font-size: 12px;
        color: #ffffff;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
        margin-top: 20px;
    }

    .forum-button:hover {
        background-color: #333;
        border-color: #555;
        transform: translateY(-2px);
    }

    /* Секция лаунчера */
    .launcher-section {
        padding: 60px 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .launcher-content {
        display: flex;
        align-items: center;
        gap: 40px;
        background-color: rgba(42, 42, 42, 0.5);
        border: 1px solid #000;
        border-radius: 8px;
        padding: 40px 50px;
        position: relative;
        overflow: hidden;
    }

    .launcher-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(42, 42, 42, 0.5);
        z-index: 0;
        border-radius: 8px;
    }

    .launcher-background {
        position: absolute;
        top: -1px;
        left: -1px;
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        z-index: 1;
        overflow: hidden;
        border-radius: 8px;
    }

    .launcher-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: grayscale(100%) brightness(0.4) contrast(1.2);
        display: block;
    }

    .launcher-text-block {
        position: relative;
        z-index: 1;
        flex: 1;
        text-align: left;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 30px;
        border-radius: 8px;
        backdrop-filter: blur(5px);
    }

    .launcher-title {
        font-size: 36px;
        color: #ffffff;
        text-transform: uppercase;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .launcher-description {
        font-size: 16px;
        color: #cccccc;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .launcher-button {
        background-color: #2a2a2a;
        border: 2px solid #000;
        padding: 25px 80px;
        font-family: 'Press Start 2P', cursive;
        font-size: 16px;
        color: #ffffff;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .launcher-button:hover {
        background-color: #333;
        border-color: #555;
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .launcher-content {
            flex-direction: column;
            text-align: center;
            padding: 40px 30px;
        }

        .launcher-text-block {
            text-align: center;
        }

        .launcher-icon {
            font-size: 80px;
        }
    }

    /* Секция серверов */
    .servers-section {
        padding: 80px 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .servers-total {
        text-align: center;
        margin-bottom: 60px;
        padding: 30px;
        background-color: rgba(42, 42, 42, 0.5);
        border-radius: 8px;
        border: 1px solid #000;
    }

    .servers-total-label {
        font-size: 18px;
        color: #888888;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .servers-total-value {
        font-size: 48px;
        color: #660000;
        font-weight: bold;
    }

    .servers-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .server-card {
        background-color: rgba(42, 42, 42, 0.5);
        border: 1px solid #000;
        border-radius: 8px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }

    .server-card:hover {
        background-color: rgba(42, 42, 42, 0.8);
        border-color: #555;
        transform: translateY(-5px);
    }

    .server-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 10px;
        font-weight: bold;
        text-transform: uppercase;
        padding: 5px 10px;
        border-radius: 4px;
        font-family: 'Press Start 2P', cursive;
    }

    .server-badge-closed {
        background-color: #2a2a2a;
        color: #ffffff;
        border: 1px solid #000;
    }

    .server-badge-beta {
        background-color: #2a2a2a;
        color: #990000;
        border: 1px solid #990000;
    }

    .server-name {
        font-size: 24px;
        color: #999999;
        text-transform: uppercase;
        margin-bottom: 20px;
        margin-top: 35px;
        font-weight: bold;
        text-align: center;
    }

    .server-online {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .server-online-label {
        font-size: 12px;
        color: #888888;
        text-transform: uppercase;
    }

    .server-online-value {
        font-size: 32px;
        color: #660000;
        font-weight: bold;
    }

    /* Футер */
    .site-footer {
        background-color: #1a1a1a;
        border-top: 1px solid #000;
        padding: 60px 40px 20px;
        margin-top: 40px;
    }

    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        gap: 0;
        margin-bottom: 30px;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-content > .footer-section:first-child {
        margin-right: 80px;
        flex-shrink: 0;
    }

    .footer-content > .footer-section:nth-child(2),
    .footer-content > .footer-section:nth-child(3),
    .footer-content > .footer-section:nth-child(4) {
        flex: 0 0 auto;
        margin-right: 20px;
    }

    .footer-content > .footer-section:last-child {
        flex: 0 0 auto;
        margin-left: 40px;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 16px;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 2px;
        cursor: pointer;
        transition: opacity 0.2s;
        margin-top: 45px;
    }

    .footer-logo .logo-red-t {
        color: #990000;
    }

    .footer-logo:hover {
        opacity: 0.7;
    }

    .footer-social {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .footer-social-link {
        color: #cccccc;
        text-decoration: none;
        font-size: 12px;
        transition: color 0.2s;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .footer-social-link:hover {
        color: #ffffff;
    }

    .footer-title {
        font-size: 14px;
        color: #ffffff;
        text-transform: uppercase;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #cccccc;
        text-decoration: none;
        font-size: 12px;
        transition: color 0.2s;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .footer-links a:hover {
        color: #ffffff;
    }

    .footer-payment-methods {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .payment-label {
        font-size: 11px;
        color: #999;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        text-align: left;
        margin-bottom: 5px;
    }

    .payment-icons {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
    }

    .payment-icon {
        background-color: #2a2a2a;
        border: 1px solid #444;
        border-radius: 4px;
        padding: 12px 18px;
        font-size: 12px;
        color: #cccccc;
        font-weight: bold;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 70px;
        height: 45px;
        transition: all 0.2s ease;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    }

    .payment-icon:hover {
        background-color: #333;
        border-color: #555;
        color: #ffffff;
    }

    .payment-icon.mir {
        background-color: #2a2a2a;
        color: #cccccc;
    }

    .payment-icon.visa {
        background-color: #2a2a2a;
        color: #cccccc;
    }

    .payment-icon.mastercard {
        background-color: #2a2a2a;
        color: #cccccc;
    }

    .payment-icon.sbp {
        background-color: #2a2a2a;
        color: #cccccc;
    }

    .footer-bottom {
        max-width: 1400px;
        margin: 0 auto;
        padding-top: 30px;
        border-top: 1px solid #333;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 12px;
        color: #666;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    /* Donate Section */
    .donate-section {
        padding: 40px 20px;
        padding-top: 80px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        display: block;
        position: relative;
        box-sizing: border-box;
    }

    .donate-container {
        background-color: rgba(42, 42, 42, 0.8);
        border: 2px solid #000;
        border-radius: 8px;
        padding: 40px 60px;
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .donate-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px),
            repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px);
        pointer-events: none;
        opacity: 0.3;
    }

    .donate-title {
        font-size: 36px;
        color: #ffffff;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 15px;
        font-weight: bold;
        position: relative;
        z-index: 1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .donate-subtitle {
        font-size: 18px;
        color: #999999;
        text-align: center;
        margin-bottom: 25px;
        text-transform: uppercase;
        position: relative;
        z-index: 1;
        letter-spacing: 2px;
    }

    .donate-tabs-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
        padding: 0 20px;
    }

    .donate-tabs {
        display: flex;
        justify-content: center;
        gap: 15px;
        position: relative;
        z-index: 1;
    }

    .donate-tab {
        background-color: #2a2a2a;
        border: 2px solid #000;
        color: #999999;
        font-family: 'Press Start 2P', cursive;
        font-size: 10px;
        padding: 12px 20px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        letter-spacing: 1px;
    }

    .donate-tab:hover {
        background-color: #333;
        border-color: #555;
        color: #ffffff;
    }

    .donate-tab.active {
        background-color: #1a1a1a;
        border-color: #555;
        color: #ffffff;
    }

    .donate-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin-top: 30px;
        position: relative;
        z-index: 1;
    }

    .donate-tab-content {
        display: block;
    }

    .donate-tab-content.hidden {
        display: none !important;
    }

    @media (max-width: 1200px) {
        .donate-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .donate-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .donate-grid {
            grid-template-columns: 1fr;
        }
    }

    .donate-card {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
        border: 3px solid #333;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        cursor: default;
        transition: all 0.3s ease;
        position: relative;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        overflow: hidden;
    }

    .donate-image-placeholder {
        width: 100%;
        height: 120px;
        background-color: #2a2a2a;
        border: 2px solid #000;
        border-radius: 4px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .donate-image-placeholder::after {
        content: '';
        width: 80%;
        height: 80%;
        background-color: #1a1a1a;
        border: 1px solid #333;
        border-radius: 2px;
    }

    .donate-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(85, 85, 85, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .donate-card:hover {
        border-color: #555;
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .donate-card:hover::before {
        opacity: 0;
    }

    .donate-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 1px solid rgba(85, 85, 85, 0.3);
        border-radius: 8px;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .donate-card:hover::after {
        opacity: 1;
    }

    .coin-display {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
        min-height: 140px;
        margin-bottom: 25px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 4px;
        position: relative;
        z-index: 1;
    }

    .coin {
        image-rendering: pixelated;
        image-rendering: -moz-crisp-edges;
        image-rendering: crisp-edges;
        background-color: #666666;
        border: 2px solid #555555;
        border-radius: 0;
        position: relative;
        box-shadow: 
            inset -2px -2px 0px #777777,
            inset 2px 2px 0px #444444,
            0 2px 4px rgba(0, 0, 0, 0.7);
        transition: transform 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .donate-card:hover .coin {
        transform: scale(1.1);
    }

    .coin-small {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
    }

    .coin-medium {
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
    }

    .coin-large {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
    }

    .coin::before {
        content: '';
        position: absolute;
        top: 20%;
        left: 20%;
        width: 30%;
        height: 30%;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 0;
        z-index: 1;
    }

    .donate-amount {
        font-size: 24px;
        color: #ffffff;
        font-weight: bold;
        margin-bottom: 8px;
        font-family: 'Press Start 2P', cursive;
        position: relative;
        z-index: 1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        transition: all 0.3s ease;
    }

    .donate-card:hover .donate-amount {
        color: #ffffff;
    }

    .donate-label {
        font-size: 11px;
        color: #999999;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        z-index: 1;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .donate-card:hover .donate-label {
        color: #999999;
    }

    .donate-buy-button {
        background-color: #2a2a2a;
        border: 2px solid #000;
        color: #ffffff;
        font-family: 'Press Start 2P', cursive;
        font-size: 10px;
        padding: 12px 20px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
        margin-top: 15px;
        text-align: center;
        letter-spacing: 1px;
        width: 100%;
    }

    .donate-buy-button:hover {
        background-color: #333;
        border-color: #555;
        transform: translateY(-2px);
    }

    .donate-buy-button:active {
        transform: translateY(0);
    }

    #donateContent.hidden {
        display: none !important;
    }

    .donate-section:not(.hidden) {
        display: block !important;
    }

    @media (max-width: 1024px) {
        .servers-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr 1fr;
        }
    }

    /* Модальное окно авторизации */
    .auth-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100000;
        backdrop-filter: blur(8px);
    }

    .auth-modal-overlay.hidden {
        display: none;
    }

    .auth-modal {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
        border: 3px solid #333;
        border-radius: 12px;
        padding: 40px;
        width: 90%;
        max-width: 450px;
        position: relative;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    }

    .auth-modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: transparent;
        border: none;
        color: #999;
        font-size: 32px;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
    }

    .auth-modal-close:hover {
        color: #ffffff;
    }

    .auth-modal-title {
        font-family: 'Press Start 2P', cursive;
        font-size: 20px;
        color: #ffffff;
        text-align: center;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .auth-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .auth-field {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .auth-label {
        color: #999;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: bold;
    }

    .auth-input {
        background-color: #2a2a2a;
        border: 2px solid #000;
        border-radius: 6px;
        padding: 12px 15px;
        color: #ffffff;
        font-family: 'Press Start 2P', cursive;
        font-size: 10px;
        transition: all 0.3s ease;
        outline: none;
    }

    .auth-input::placeholder {
        color: #666;
    }

    .auth-input:focus {
        border-color: #555;
        background-color: #333;
    }

    .auth-password-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .auth-password-input {
        width: 100%;
        padding-right: 45px;
    }

    .auth-password-toggle {
        position: absolute;
        right: 10px;
        background: transparent;
        border: none;
        color: #999;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
    }

    .auth-password-toggle:hover {
        color: #ffffff;
    }

    .auth-select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        padding-right: 40px;
    }

    .auth-submit-button {
        background-color: #2a2a2a;
        border: 2px solid #000;
        border-radius: 8px;
        padding: 15px 30px;
        color: #ffffff;
        font-family: 'Press Start 2P', cursive;
        font-size: 12px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .auth-submit-button:hover {
        background-color: #333;
        border-color: #555;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }

    .auth-submit-button:active {
        transform: translateY(0);
    }

    .auth-forgot-password {
        display: block;
        text-align: center;
        color: #999;
        font-size: 11px;
        text-decoration: none;
        margin-top: 20px;
        transition: color 0.3s ease;
    }

    .auth-forgot-password:hover {
        color: #ffffff;
    }

    @media (max-width: 600px) {
        .auth-modal {
            padding: 30px 20px;
            width: 95%;
        }

        .auth-modal-title {
            font-size: 16px;
        }
    }

    /* Навбар на страницах документации */
    body:has(.documentation-container) .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 10000 !important;
        background-color: #1a1a1a !important;
        background: #1a1a1a !important;
        border-bottom: 1px solid #333;
    }

    /* Стили для страниц документации */
    body:has(.documentation-container) {
        overflow: auto !important;
        height: auto !important;
        position: static !important;
    }

    html:has(.documentation-container) {
        overflow: auto !important;
        height: auto !important;
    }

    .documentation-container {
        padding: 120px 20px 60px;
        min-height: 100vh;
        background-color: #1a1a1a;
        overflow-y: auto;
        position: relative;
    }

    .documentation-back-arrow {
        position: fixed;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: #2a2a2a;
        border: 2px solid #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        text-decoration: none;
        z-index: 1000;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .documentation-back-arrow:hover {
        background-color: #333;
        border-color: #555;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
    }

    .documentation-back-arrow svg {
        width: 24px;
        height: 24px;
    }

    @media (max-width: 768px) {
        .documentation-back-arrow {
            right: 15px;
            width: 40px;
            height: 40px;
        }

        .documentation-back-arrow svg {
            width: 20px;
            height: 20px;
        }
    }

    .documentation-content {
        max-width: 900px;
        margin: 0 auto;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
        border: 2px solid #333;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    }

    .documentation-title {
        font-family: 'Press Start 2P', cursive;
        font-size: 24px;
        color: #ffffff;
        text-align: center;
        margin-bottom: 40px;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding-bottom: 20px;
        border-bottom: 2px solid #333;
    }

    .documentation-text {
        color: #cccccc;
        font-family: 'Press Start 2P', cursive;
        font-size: 10px;
        line-height: 1.8;
        letter-spacing: 0.5px;
    }

    .documentation-text h2 {
        font-family: 'Press Start 2P', cursive;
        font-size: 14px;
        color: #ffffff;
        margin-top: 30px;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .documentation-text p {
        margin-bottom: 15px;
        color: #cccccc;
    }

    .documentation-text ul {
        margin: 15px 0;
        padding-left: 20px;
        list-style: none;
    }

    .documentation-text ul li {
        margin-bottom: 10px;
        padding-left: 20px;
        position: relative;
    }

    .documentation-text ul li::before {
        content: "▶";
        position: absolute;
        left: 0;
        color: #999;
    }

    @media (max-width: 768px) {
        .documentation-container {
            padding: 100px 15px 40px;
        }

        .documentation-content {
            padding: 30px 20px;
        }

        .documentation-title {
            font-size: 18px;
        }

        .documentation-text {
            font-size: 9px;
        }

        .documentation-text h2 {
            font-size: 12px;
        }
    }

    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
        }
    }

    /* ========== МОБИЛЬНАЯ АДАПТАЦИЯ ========== */
    
    /* Кнопка навигационного меню (скрыта на ПК) - в стиле сайта */
    .mobile-menu-toggle {
        display: none;
        background-color: #2a2a2a;
        border: 2px solid #000;
        color: #ffffff;
        font-family: 'Press Start 2P', cursive;
        font-size: 8px;
        padding: 10px 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.2s ease;
        z-index: 10001;
        position: relative;
        white-space: nowrap;
    }

    .mobile-menu-toggle:hover {
        background-color: #333;
        border-color: #555;
        opacity: 0.9;
    }

    .mobile-menu-toggle:active {
        transform: translateY(1px);
    }

    .mobile-menu-toggle.active {
        background-color: #1a1a1a;
        border-color: #555;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: -1;
    }

    /* Боковое меню для мобильных с анимацией */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0);
        z-index: 10001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        background-color: rgba(0, 0, 0, 0.7);
        pointer-events: auto;
    }

    .mobile-menu-sidebar {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 80%;
        height: 100%;
        background-color: #1a1a1a;
        border-left: 2px solid #000;
        z-index: 10002;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), right 0s 0.35s;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.8);
        transform: translateX(100%);
    }

    .mobile-menu-sidebar.active {
        right: 0;
        transform: translateX(0);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #333;
    }

    .mobile-menu-header .logo {
        font-size: 14px;
        color: #ffffff;
    }

    .mobile-menu-close {
        background-color: #2a2a2a;
        border: 2px solid #000;
        color: #ffffff;
        font-family: 'Press Start 2P', cursive;
        font-size: 16px;
        line-height: 1;
        cursor: pointer;
        padding: 8px 12px;
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mobile-menu-close:hover {
        background-color: #333;
        border-color: #555;
        opacity: 0.9;
    }

    .mobile-menu-close:active {
        transform: translateY(1px);
    }


    .mobile-menu-items {
        display: flex;
        flex-direction: column;
        padding: 20px 0;
    }

    .mobile-menu-item {
        display: block;
        padding: 20px;
        color: #ffffff;
        text-decoration: none;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 1px solid #333;
        transition: background-color 0.2s;
        font-family: 'Press Start 2P', cursive;
        opacity: 0;
        transform: translateX(30px);
    }

    .mobile-menu-sidebar.active .mobile-menu-item {
        animation: slideInMenuItem 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .mobile-menu-sidebar.active .mobile-menu-item:nth-child(1) {
        animation-delay: 0.15s;
    }

    .mobile-menu-sidebar.active .mobile-menu-item:nth-child(2) {
        animation-delay: 0.25s;
    }

    .mobile-menu-sidebar.active .mobile-menu-item:nth-child(3) {
        animation-delay: 0.35s;
    }

    @keyframes slideInMenuItem {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .mobile-menu-sidebar:not(.active) .mobile-menu-item {
        opacity: 0;
        transform: translateX(30px);
        animation: none;
    }

    .mobile-menu-item:hover {
        background-color: #2a2a2a;
    }

    /* Навбар для мобильных */
    @media (max-width: 768px) {
        .navbar {
            padding: 15px 20px;
            justify-content: space-between;
        }

        .logo {
            font-size: 16px;
        }

        /* Скрываем обычное меню на мобильных */
        .nav-menu {
            display: none !important;
        }

        /* Показываем кнопку навигационного меню */
        .mobile-menu-toggle {
            display: block;
        }

        /* Показываем боковое меню при активации */
        .mobile-menu-sidebar {
            display: block;
        }
    }

    @media (max-width: 480px) {
        .navbar {
            padding: 12px 15px;
        }

        .logo {
            font-size: 14px;
        }

        .mobile-menu-sidebar {
            width: 260px;
            max-width: 85%;
        }
    }

    /* Герой секция для мобильных */
    @media (max-width: 768px) {
        .hero-section {
            padding: 20px 15px;
        }

        .hero-title {
            font-size: 32px;
            letter-spacing: 4px;
            margin-top: -100px;
            margin-bottom: 30px;
        }

        .hero-subtitle {
            font-size: 12px;
            letter-spacing: 2px;
        }

        .hero-carousel {
            height: 100vh;
            min-height: 100vh;
        }

        .carousel-container {
            height: 100%;
        }

        .hero-nav-arrow {
            font-size: 32px;
            padding: 15px;
        }

        .hero-nav-arrow.left {
            left: 10px;
        }

        .hero-nav-arrow.right {
            right: 10px;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 24px;
            letter-spacing: 2px;
            margin-top: -80px;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 10px;
            letter-spacing: 1px;
        }

        .hero-carousel {
            height: 100vh;
            min-height: 100vh;
        }

        .carousel-container {
            height: 100%;
        }

        .hero-nav-arrow {
            font-size: 24px;
            padding: 10px;
        }

        .hero-nav-arrow.left {
            left: 5px;
        }

        .hero-nav-arrow.right {
            right: 5px;
        }
    }

    /* Контейнер и контент для мобильных */
    @media (max-width: 768px) {
        .container {
            padding: 20px 15px;
        }

        .landing-content {
            padding: 40px 20px;
        }

        .content-section {
            padding: 25px 20px;
            margin-bottom: 30px;
        }

        .content-section h2 {
            font-size: 16px;
            padding: 8px 15px;
        }

        .content-section h3 {
            font-size: 12px;
        }

        .content-section p {
            font-size: 10px;
        }

        .section-divider {
            font-size: 14px;
            margin: 15px 0;
        }

        .forum-button {
            padding: 15px 40px;
            font-size: 10px;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 15px 10px;
        }

        .landing-content {
            padding: 30px 15px;
        }

        .content-section {
            padding: 20px 15px;
            margin-bottom: 25px;
        }

        .content-section h2 {
            font-size: 14px;
            padding: 6px 12px;
        }

        .content-section h3 {
            font-size: 10px;
        }

        .content-section p {
            font-size: 9px;
        }

        .forum-button {
            padding: 12px 30px;
            font-size: 9px;
        }
    }

    /* Секция лаунчера для мобильных */
    @media (max-width: 768px) {
        .launcher-section {
            padding: 40px 20px;
        }

        .launcher-content {
            flex-direction: column;
            padding: 30px 20px;
        }

        .launcher-text-block {
            text-align: center;
            padding: 20px;
        }

        .launcher-title {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .launcher-description {
            font-size: 12px;
            margin-bottom: 30px;
        }

        .launcher-button {
            padding: 20px 50px;
            font-size: 12px;
        }
    }

    @media (max-width: 480px) {
        .launcher-section {
            padding: 30px 15px;
        }

        .launcher-content {
            padding: 25px 15px;
        }

        .launcher-title {
            font-size: 18px;
        }

        .launcher-description {
            font-size: 10px;
        }

        .launcher-button {
            padding: 15px 40px;
            font-size: 10px;
        }
    }

    /* Секция серверов для мобильных */
    @media (max-width: 768px) {
        .servers-section {
            padding: 40px 0;
        }

        .servers-total {
            padding: 20px;
            margin-bottom: 40px;
            margin-left: 20px;
            margin-right: 20px;
        }

        .servers-total-label {
            font-size: 14px;
        }

        .servers-total-value {
            font-size: 36px;
        }

        /* Горизонтальный скролл для карточек серверов */
        .servers-grid {
            display: flex;
            flex-direction: row;
            gap: 20px;
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
            padding: 0 20px 20px 20px;
            margin: 0 -20px;
        }

        /* Убираем скроллбар, но оставляем возможность прокрутки */
        .servers-grid::-webkit-scrollbar {
            height: 4px;
        }

        .servers-grid::-webkit-scrollbar-track {
            background: #1a1a1a;
        }

        .servers-grid::-webkit-scrollbar-thumb {
            background: #666;
            border-radius: 2px;
        }

        .server-card {
            flex: 0 0 calc(100% - 40px);
            min-width: calc(100vw - 80px);
            max-width: calc(100vw - 80px);
            padding: 30px 20px;
            scroll-snap-align: start;
            box-sizing: border-box;
        }

        .server-name {
            font-size: 18px;
        }

        .server-online-value {
            font-size: 28px;
        }
    }

    @media (max-width: 480px) {
        .servers-section {
            padding: 30px 0;
        }

        .servers-total {
            margin-left: 15px;
            margin-right: 15px;
        }

        .servers-total-value {
            font-size: 28px;
        }

        .servers-grid {
            padding: 0 15px 15px 15px;
            margin: 0 -15px;
            gap: 15px;
        }

        .server-card {
            min-width: calc(100vw - 60px);
            max-width: calc(100vw - 60px);
        }

        .server-name {
            font-size: 16px;
        }

        .server-online-value {
            font-size: 24px;
        }
    }

    /* Секция доната для мобильных */
    @media (max-width: 768px) {
        .donate-section {
            padding: 20px 15px;
            padding-top: 70px;
        }

        .donate-container {
            padding: 30px 20px;
        }

        .donate-title {
            font-size: 24px;
        }

        .donate-subtitle {
            font-size: 14px;
        }

        .donate-tabs-wrapper {
            padding: 0 10px;
        }

        .donate-tabs {
            gap: 10px;
            flex-wrap: wrap;
        }

        .donate-tab {
            font-size: 8px;
            padding: 10px 15px;
        }

        .donate-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .donate-card {
            min-height: 240px;
            padding: 15px;
        }

        .donate-amount {
            font-size: 20px;
        }

        .donate-label {
            font-size: 9px;
        }

        .donate-buy-button {
            font-size: 9px;
            padding: 10px 15px;
        }
    }

    @media (max-width: 480px) {
        .donate-section {
            padding: 15px 10px;
            padding-top: 70px;
        }

        .donate-container {
            padding: 25px 15px;
        }

        .donate-title {
            font-size: 18px;
        }

        .donate-subtitle {
            font-size: 12px;
        }

        .donate-tab {
            font-size: 7px;
            padding: 8px 12px;
        }

        .donate-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .donate-card {
            min-height: 220px;
        }

        .donate-amount {
            font-size: 18px;
        }
    }

    /* Модальные окна для мобильных */
    @media (max-width: 768px) {
        .auth-modal {
            padding: 30px 20px;
            width: 90%;
            max-width: 100%;
        }

        .auth-modal-title {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .auth-input {
            font-size: 9px;
            padding: 10px 12px;
        }

        .auth-label {
            font-size: 9px;
        }

        .auth-submit-button {
            font-size: 10px;
            padding: 12px 25px;
        }
    }

    @media (max-width: 480px) {
        .auth-modal {
            padding: 25px 15px;
            width: 95%;
        }

        .auth-modal-title {
            font-size: 14px;
        }

        .auth-input {
            font-size: 8px;
        }

        .auth-label {
            font-size: 8px;
        }
    }

    /* Футер для мобильных */
    @media (max-width: 768px) {
        .site-footer {
            padding: 40px 20px 20px;
        }

        .footer-content {
            flex-direction: column;
            gap: 30px;
        }

        .footer-content > .footer-section:first-child {
            margin-right: 0;
        }

        .footer-content > .footer-section:last-child {
            margin-left: 0;
        }

        .footer-logo {
            font-size: 14px;
            margin-top: 0;
        }

        .footer-title {
            font-size: 12px;
            margin-bottom: 15px;
        }

        .footer-links a,
        .footer-social-link {
            font-size: 11px;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 30px 15px 15px;
        }

        .payment-icons {
            gap: 8px;
        }

        .payment-icon {
            font-size: 10px;
            padding: 10px 14px;
            min-width: 60px;
            height: 40px;
        }
    }

    /* Карусель для мобильных */
    @media (max-width: 768px) {
        .carousel-pagination {
            bottom: 20px;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
        }
    }

    @media (max-width: 480px) {
        .carousel-pagination {
            bottom: 15px;
            gap: 8px;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
        }
    }
</style>
