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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    body {
        overflow-x: hidden !important;
        position: relative;
    }
    
    * {
        max-width: 100vw;
    }
    
    .header,
    .header-left,
    .header-right,
    .mobile-menu-toggle {
        max-width: 100vw;
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
    will-change: transform, opacity;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.advantages-grid .scroll-reveal.revealed:nth-child(1) { transition-delay: 0s; }
.advantages-grid .scroll-reveal.revealed:nth-child(2) { transition-delay: 0.06s; }
.advantages-grid .scroll-reveal.revealed:nth-child(3) { transition-delay: 0.12s; }
.advantages-grid .scroll-reveal.revealed:nth-child(4) { transition-delay: 0.18s; }
.advantages-grid .scroll-reveal.revealed:nth-child(5) { transition-delay: 0.24s; }
.advantages-grid .scroll-reveal.revealed:nth-child(6) { transition-delay: 0.3s; }
.advantages-grid .scroll-reveal.revealed:nth-child(7) { transition-delay: 0.36s; }
.advantages-grid .scroll-reveal.revealed:nth-child(8) { transition-delay: 0.42s; }
.advantages-grid .scroll-reveal.revealed:nth-child(9) { transition-delay: 0.48s; }
.server-cards-home .scroll-reveal.revealed:nth-child(1) { transition-delay: 0s; }
.server-cards-home .scroll-reveal.revealed:nth-child(2) { transition-delay: 0.05s; }
.server-cards-home .scroll-reveal.revealed:nth-child(3) { transition-delay: 0.1s; }
.server-cards-home .scroll-reveal.revealed:nth-child(4) { transition-delay: 0.15s; }
.server-cards-home .scroll-reveal.revealed:nth-child(5) { transition-delay: 0.2s; }
.server-cards-home .scroll-reveal.revealed:nth-child(6) { transition-delay: 0.25s; }
.server-cards-home .scroll-reveal.revealed:nth-child(n+7) { transition-delay: 0.3s; }
.featured-servers-section .scroll-reveal.revealed:nth-child(1) { transition-delay: 0s; }
.featured-servers-section .scroll-reveal.revealed:nth-child(2) { transition-delay: 0.1s; }
.featured-servers-section .scroll-reveal.revealed:nth-child(3) { transition-delay: 0.2s; }
.featured-servers-section .scroll-reveal.revealed:nth-child(n+4) { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal { opacity: 1; transform: none; transition: none; }
}

body {
    font-family: 'Inter', 'Arial', 'Segoe UI', sans-serif;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35)),
        url('6VQnBSE.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35)),
        url('6VQnBSE.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: blur(2px) brightness(0.9);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
    margin: 0 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link .nav-icon,
.nav-link-dropdown .nav-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    opacity: 0.9;
}
.nav-link:hover .nav-icon,
.nav-link.active .nav-icon,
.nav-link-dropdown:hover .nav-icon,
.nav-link-dropdown.active .nav-icon {
    opacity: 1;
}
.nav-link-discord .nav-icon {
    width: 16px;
    height: 16px;
}

.nav-link-shop {
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.6);
    background: rgba(6, 78, 59, 0.35);
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.35);
}

.nav-link-shop:hover {
    color: #ecfdf5;
    background: linear-gradient(135deg, #059669, #10b981);
    border-color: #34d399;
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.6);
    transform: translateY(-1px);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.nav-link-discord {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.6);
    background: rgba(15, 23, 42, 0.5);
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.35);
}

.nav-link-discord svg {
    width: 16px;
    height: 16px;
}

.nav-link-discord:hover {
    color: #e0f2fe;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-color: #60a5fa;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 2px;
    opacity: 0.7;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown:hover .nav-link-dropdown {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link-dropdown {
    user-select: none;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    min-width: 220px;
    padding: 12px 0;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

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

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    border-left: 3px solid transparent;
}
.nav-dropdown-item .nav-dropdown-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    opacity: 0.8;
}
.nav-dropdown-item:hover .nav-dropdown-icon,
.nav-dropdown-item.active .nav-dropdown-icon {
    opacity: 1;
}

.nav-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(220, 38, 38, 0.1);
    transition: width 0.2s ease;
}

.nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-left-color: rgba(220, 38, 38, 0.5);
    padding-left: 28px;
}

.nav-dropdown-item:hover::before {
    width: 3px;
}

.nav-dropdown-item.active {
    background: rgba(220, 38, 38, 0.15);
    color: #ffffff;
    border-left-color: #dc2626;
    font-weight: 600;
}

.nav-dropdown-item.active::before {
    width: 3px;
    background: rgba(220, 38, 38, 0.3);
}

.header-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.btn-dashboard {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-dashboard::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-dashboard:hover::before {
    width: 300px;
    height: 300px;
}

.btn-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 100px 40px 40px 40px;
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
}

.hero-section {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
    margin-bottom: 60px;
    position: relative;
    min-height: calc(100vh - 200px);
}

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: -1px;
    color: #ffffff;
}

.brand-name {
    color: #dc2626;
    background: linear-gradient(135deg, #dc2626 0%, #ff1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.6);
    filter: drop-shadow(0 0 15px rgba(220, 38, 38, 0.5));
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-hero {
    padding: 16px 48px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 400px;
    height: 400px;
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.btn-hero:active {
    transform: translateY(-1px);
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ff1a1a 0%, #cc1414 100%);
    color: #ffffff;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-launcher {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.btn-launcher {
    padding: 20px 80px;
    border: none;
    border-radius: 14px;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-launcher::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-launcher:hover::before {
    width: 500px;
    height: 500px;
}

.btn-launcher:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(220, 38, 38, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-launcher:active {
    transform: translateY(-2px) scale(1.02);
}


.features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 48px 60px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #ff6b35;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:hover .feature-icon {
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
    transform: scale(1.1);
}

.icon-mods {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 6h-2.18c.11-.31.18-.65.18-1a2.996 2.996 0 0 0-5.5-1.65l-.5.67-.5-.68C10.96 2.54 10 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z'/%3E%3C/svg%3E");
    background-size: 32px 32px;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-pvp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M15.5 12c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-2.5-2c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm3-3c.83 0 1.5-.67 1.5-1.5S15.33 8 14.5 8 13 8.67 13 9.5s.67 1.5 1.5 1.5zm2 4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-pvp {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    position: relative;
}

.icon-anti-cheat::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-anti-cheat {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    position: relative;
}

.feature-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, #ff6b35 50%, transparent 100%);
}

.feature-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.sound-control {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    z-index: 998;
}

.sound-control:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(220, 38, 38, 0.6);
}

.sound-icon::before {
    content: '';
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.sound-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-monitoring {
    padding: 90px 50px;
    max-width: 1400px;
    margin: 80px auto 100px auto;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 32px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px) saturate(200%);
    -webkit-backdrop-filter: blur(15px) saturate(200%);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 100px rgba(255, 255, 255, 0.02),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.server-monitoring::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.monitoring-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    position: relative;
    letter-spacing: -1px;
}

.monitoring-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3), transparent);
    border-radius: 3px;
}

.news-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto 80px auto;
    width: 100%;
    box-sizing: border-box;
}

.news-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3), transparent);
    border-radius: 3px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 60px auto 0 auto;
}

.news-carousel-container {
    max-width: 1400px;
    margin: 60px auto 0 auto;
    position: relative;
    padding: 0 60px;
}

.news-carousel {
    display: flex;
    gap: 24px;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    margin: 0 -10px;
}

.news-carousel-slide {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    min-width: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    transform: scale(0.95);
    opacity: 0.85;
    position: relative;
}

.news-carousel-slide.active {
    transform: scale(1);
    opacity: 1;
}

.news-carousel-slide:last-child {
    margin-right: 0;
}

.news-carousel-slide .news-card {
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    position: relative;
    z-index: 1;
}

.news-carousel-slide:hover .news-card {
    transform: translateY(-4px);
}

.news-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
}

.carousel-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(220, 38, 38, 0.1));
    border: 2px solid rgba(220, 38, 38, 0.5);
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.carousel-btn:hover::before {
    width: 100%;
    height: 100%;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.4), rgba(220, 38, 38, 0.2));
    border-color: rgba(220, 38, 38, 0.8);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.carousel-btn:active {
    transform: scale(1.05) translateY(0);
}

.carousel-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.carousel-btn:disabled::before {
    display: none;
}

.carousel-btn span {
    position: relative;
    z-index: 1;
}

.carousel-dots {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 0 20px;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
}

.carousel-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.carousel-dot.active {
    background: rgba(220, 38, 38, 0.3);
    border-color: #dc2626;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.carousel-dot.active::after {
    width: 8px;
    height: 8px;
    background: #dc2626;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 10px;
}

.news-card-reactions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.news-reaction-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-reaction-like {
    color: #22c55e;
}

.news-reaction-dislike {
    color: #ef4444;
}

.news-reaction-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .news-carousel-container {
        padding: 0 40px;
    }
    
    .news-carousel-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .news-carousel-container {
        padding: 0 16px;
        box-sizing: border-box;
    }
    
    .news-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .news-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .news-carousel-slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
        box-sizing: border-box;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
    
    .carousel-dots {
        gap: 8px;
        padding: 0 10px;
        justify-content: center;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active::after {
        width: 6px;
        height: 6px;
    }
    
    .news-card-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-section {
        padding: 40px 16px;
        box-sizing: border-box;
    }

    .news-title {
        text-align: center;
    }
}

.news-card {
    background: rgba(10, 10, 10, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.news-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 6px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.news-card > *:not(.news-card-image):not(.news-card-category) {
    padding: 0 32px;
    max-width: 100%;
    box-sizing: border-box;
}

.news-card > *:first-child:not(.news-card-image):not(.news-card-category) {
    padding-top: 32px;
}

.news-card > *:last-child {
    padding-bottom: 32px;
}

.news-card .news-date {
    margin: 0;
}

.news-card .news-card-title {
    margin-top: 12px;
    margin-bottom: 12px;
}

.news-card .news-card-text {
    margin-top: 0;
    margin-bottom: 20px;
}

.news-card .news-link {
    margin-top: auto;
    align-self: flex-start;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ff1a1a, #dc2626);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.popular-news-container {
    max-width: 1400px;
    margin: 60px auto 40px auto;
    padding: 0 60px;
    box-sizing: border-box;
}

.popular-news-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(255, 26, 26, 0.9));
    border-radius: 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(220, 38, 38, 0.6);
    }
}

.popular-news-card {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 20px;
    padding: 0;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    position: relative;
}

.popular-news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ff1a1a, #dc2626);
    z-index: 1;
}

.popular-news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.3);
}

.popular-news-image {
    flex: 0 0 40%;
    width: 40%;
    min-height: 300px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.popular-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.popular-news-card:hover .popular-news-image img {
    transform: scale(1.08);
}

.popular-news-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.popular-news-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 6px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    align-self: flex-start;
}

.popular-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.popular-news-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}

.popular-news-stats {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.popular-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.popular-stat-like {
    color: #22c55e;
}

.popular-stat-comments {
    color: #3b82f6;
}

.popular-stat-views {
    color: #f59e0b;
}

.popular-stat-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.popular-news-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.popular-news-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px 0;
    flex: 1;
}

.popular-news-link {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(255, 26, 26, 0.9));
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.popular-news-link:hover {
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.9), rgba(220, 38, 38, 0.9));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.popular-news-link:active {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .popular-news-container {
        padding: 0 40px;
    }
    
    .popular-news-card {
        flex-direction: column;
    }
    
    .popular-news-image {
        flex: none;
        width: 100%;
        min-height: 250px;
    }
    
    .popular-news-content {
        padding: 32px;
    }
    
    .popular-news-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .popular-news-container {
        padding: 0 20px;
        margin: 40px auto 30px auto;
    }
    
    .popular-news-content {
        padding: 24px;
    }
    
    .popular-news-title {
        font-size: 24px;
    }
    
    .popular-news-text {
        font-size: 15px;
    }
    
    .popular-news-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .popular-news-stats {
        width: 100%;
        justify-content: flex-start;
    }
    
    .popular-news-link {
        width: 100%;
        text-align: center;
    }
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
    border-color: rgba(220, 38, 38, 0.3);
}

.news-card:hover .news-link {
    transform: scale(1.08);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6), 0 0 35px rgba(220, 38, 38, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.news-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.news-card-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 96px;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.news-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    margin-top: auto;
    margin-left: 32px;
    margin-right: 32px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4), 0 0 20px rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden;
}

.news-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.news-link:hover::before {
    left: 100%;
}

.news-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6), 0 0 30px rgba(220, 38, 38, 0.4);
}


.news-link:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5);
}

.downloads-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%);
    margin: 40px 0;
}

.downloads-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.downloads-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.download-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.download-item:hover {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.download-title {
    font-size: 18px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-file {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.download-link {
    font-size: 16px;
    color: #ef4444;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 600;
}

.download-link:hover {
    color: #dc2626;
    text-decoration: underline;
    transform: translateX(5px);
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
    transition: all 0.3s ease;
}

.download-button:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.download-link.download-button,
a.download-link.download-button {
    text-decoration: none !important;
}

.download-link.download-button:hover,
a.download-link.download-button:hover {
    text-decoration: none !important;
}

.download-count {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.download-updated {
    font-size: 14px;
    color: #ef4444;
    font-weight: 500;
    margin-top: 4px;
}

.download-launcher {
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.launcher-link {
    font-size: 18px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.launcher-link:hover {
    color: #2563eb;
    text-decoration: underline;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .downloads-section {
        padding: 40px 15px;
    }
    
    .downloads-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .download-item {
        padding: 16px;
    }
    
    .download-title {
        font-size: 16px;
    }
    
    .download-link {
        font-size: 14px;
    }
    
    .download-updated {
        font-size: 12px;
    }
    
    .launcher-link {
        font-size: 16px;
    }
}

.why-choose-section {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto 80px auto;
    width: 100%;
    box-sizing: border-box;
}

.why-choose-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.advantage-card {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ff1a1a, #dc2626);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
    border-color: rgba(220, 38, 38, 0.3);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
}

.advantage-card:hover .advantage-icon {
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
    transform: scale(1.1);
}

.advantage-icon-custom {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
}
.advantage-icon-custom img {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.icon-stable::before {
    content: '';
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-stable {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
}

.icon-support::before {
    content: '';
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 3v2h-2V5h2zm0 4v6h-2V9h2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-support {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
}

.icon-updates::before {
    content: '';
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5-5 1.41-1.41L17 10.17l7.59-7.59L26 4l-9 9z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-updates {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
}

.advantage-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.advantage-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.server-cards-home {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto 40px auto;
    width: 100%;
    align-items: stretch;
}

.features-card {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 24px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.features-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ff1a1a, #dc2626);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.features-card:hover::before {
    transform: scaleX(1);
}

.features-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
    border-color: rgba(220, 38, 38, 0.3);
}

.features-card .feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 10px;
}

.features-card .feature-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, #ff6b35 50%, transparent 100%);
    flex-shrink: 0;
}

.server-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    padding: 40px;
    margin-top: 100px;
    margin-bottom: 60px;
}

.server-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.9) 50%, rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3), transparent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.server-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.server-card:hover::before {
    transform: scaleX(1);
}

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

.server-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.7),
        inset 0 0 40px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(30, 30, 30, 0.95) 50%, rgba(15, 15, 15, 0.98) 100%);
}

.server-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    width: 100%;
    min-height: 0;
}

.server-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-height: 0;
}

.server-map-wrapper {
    margin-top: 4px;
}

@media (max-width: 768px) {
    .server-cards-home {
        grid-template-columns: 1fr;
    }
    
    .server-card {
        aspect-ratio: 1;
        padding: 20px;
    }
}

.server-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.server-status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.server-status-indicator.online .status-dot {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6), 0 0 20px rgba(16, 185, 129, 0.4);
    animation: pulse-online 2s infinite;
}

.server-status-indicator.offline .status-dot {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ef4444;
    opacity: 0.6;
}

@keyframes pulse-online {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.server-name {
    font-size: 18px;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 900;
    line-height: 1.4;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 0 20px rgba(220, 38, 38, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
    flex-shrink: 0;
}

.server-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6));
    transition: width 0.5s ease;
}

.server-card:hover .server-name::after {
    width: 100%;
}

.server-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}


.server-card:hover .server-description {
    color: rgba(255, 255, 255, 0.85);
}

.server-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
    padding-top: 0;
}

.server-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.server-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.server-status svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.server-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.server-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
    border-radius: 2px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.server-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.server-tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 12px;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.server-tag:hover {
    background: rgba(220, 38, 38, 0.3);
    border-color: rgba(220, 38, 38, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.server-card:hover .server-tag {
    background: rgba(220, 38, 38, 0.25);
    border-color: rgba(220, 38, 38, 0.5);
}

.server-wipe-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 8px;
}
.server-wipe-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}
.server-wipe-timer {
    color: #fbbf24;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.server-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    align-items: flex-start;
    margin-top: auto;
    flex-shrink: 0;
}


.server-map {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.server-updated,
.server-card .updated-time {
    display: none !important;
}

.server-map svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.7;
}

.server-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 12px;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.server-map {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: color 0.3s ease;
}

.server-card:hover .server-map {
    color: rgba(255, 255, 255, 0.9);
}

.server-status.online {
    color: #10b981;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.server-status.offline {
    color: #ef4444;
    font-weight: 600;
}

.category-nav {
    padding: 24px 40px;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.category-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.category-row.secondary {
    margin-bottom: 0;
}

.category-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.category-btn.active {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1b 100%);
    border-color: #dc2626;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px;
    margin-bottom: 60px;
}

.product-card {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
    border-color: rgba(220, 38, 38, 0.3);
}

.product-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 12px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 56px;
}

.image-roulette::before {
    content: '🎲';
}

.image-gunter::before {
    content: '🚗';
}

.image-volga::before {
    content: '🚙';
}

.image-m1025::before {
    content: '🚙';
}

.image-m35::before {
    content: '🚛';
}

.image-sarka::before {
    content: '🚗';
}

.image-tent-large::before {
    content: '⛺';
}

.image-tent-small::before {
    content: '🏕️';
}

.product-name {
    font-size: 19px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
}

.product-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
    min-height: 44px;
    line-height: 1.5;
}

.product-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1b 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-btn:hover::before {
    width: 400px;
    height: 400px;
}

.product-btn:hover {
    background: linear-gradient(135deg, #ff1a1a 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
}

@media (max-width: 1600px) {
    .server-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .server-cards-home {
    }
}

@media (max-width: 1400px) {
    .server-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .server-cards-home {
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .main-content {
        padding: 40px 20px 40px 20px;
        margin: 0;
    }
    
    
    .server-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .server-cards-home {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .news-section {
        padding: 60px 20px;
    }
    
    .news-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .why-choose-section {
        padding: 40px 20px;
    }
    
    .why-choose-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .server-monitoring {
        padding: 40px 20px;
    }
    
    .monitoring-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .btn-launcher {
        padding: 18px 70px;
        font-size: 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .header {
        padding: 15px 25px;
    }
    
    .main-nav {
        margin: 0 20px;
        gap: 2px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .main-content {
        padding: 100px 30px 40px 30px;
    }
    
    .popular-news-container {
        padding: 0 30px;
    }
    
    .popular-news-card {
        flex-direction: column;
    }
    
    .popular-news-image {
        flex: 0 0 100%;
        width: 100%;
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .news-card-title {
        font-size: 22px;
    }
    
    .server-card {
        padding: 24px;
    }
    
    .clan-card {
        padding: 24px;
    }
    
    .btn-dashboard {
        padding: 9px 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 8px 6px;
        flex-wrap: nowrap;
        box-sizing: border-box;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        overflow-y: visible;
        gap: 2px;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        left: 0;
        right: 0;
        z-index: 10000 !important;
    }
    
    .header > .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }
    
    .mobile-menu-toggle {
        z-index: 10003 !important;
        position: relative;
    }
    
    .header-left {
        flex: 0 0 auto;
        justify-content: flex-start;
        margin-bottom: 0;
        min-width: 0;
        overflow: hidden;
        max-width: calc(50vw - 50px);
    }
    
    .logo {
        gap: 3px;
        min-width: 0;
        max-width: 100%;
    }
    
    .logo-text {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 60px;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        margin: 0;
        padding: 6px;
        min-width: 36px;
        max-width: 36px;
        z-index: 10003 !important;
        position: relative;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        cursor: pointer;
        background: transparent;
        border: none;
        outline: none;
        pointer-events: auto !important;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .mobile-menu-toggle span {
        height: 2px;
        pointer-events: none;
        width: 100%;
    }
    
    .mobile-menu-toggle:active,
    .mobile-menu-toggle:focus {
        opacity: 0.7;
        outline: none;
    }
    
    .mobile-menu-toggle:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.5);
        outline-offset: 2px;
    }
    
    .header-right {
        order: 3;
        margin-left: 0;
        width: auto;
        justify-content: flex-end;
        flex-shrink: 1;
        display: flex;
        gap: 1px;
        align-items: center;
        flex-wrap: nowrap;
        min-width: 0;
        max-width: calc(50vw - 50px);
        overflow: hidden;
    }
    
    .header-right a {
        margin-left: 0 !important;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .header-right a[style*="margin-left"] {
        margin-left: 0 !important;
    }
    
    .btn-dashboard {
        padding: 4px 3px;
        font-size: 6px;
        white-space: nowrap;
        flex-shrink: 1;
        min-width: 0;
        line-height: 1.1;
        margin-left: 0 !important;
        letter-spacing: -0.5px;
        max-width: 30px;
        overflow: hidden;
        text-overflow: ellipsis;
        box-sizing: border-box;
    }
    
    .btn-dashboard[style*="margin-left"] {
        margin-left: 0 !important;
    }
    
    .header-right .btn-dashboard:nth-child(n+2) {
        display: none !important;
    }
    
    .header-right .btn-dashboard:first-child {
        display: inline-block !important;
    }
    
    @media (max-width: 400px) {
        .header-right .btn-dashboard {
            font-size: 0;
            width: 28px;
            height: 28px;
            padding: 0;
            min-width: 28px;
            max-width: 28px;
            position: relative;
        }
        
        .header-right .btn-dashboard::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 14px;
            height: 14px;
            background: currentColor;
            mask-size: contain;
            mask-repeat: no-repeat;
            mask-position: center;
        }
        
        .header-right .btn-dashboard[href*="profile"]::after,
        .header-right .btn-dashboard[href*="register"]::after {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
        }
        
        .header-right .btn-dashboard[href*="login"]::after {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M10 20v-6h4v-2h-4V4H8v8H4v2h4v6h2zm8-12h-2v8h2v-8zm-4 4h-2v4h2v-4z'/%3E%3C/svg%3E");
        }
        
        .header-right .btn-dashboard[href*="admin"]::after {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
        }
        
        .header-right .btn-dashboard[href*="logout"]::after {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17 7l-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.59L17 17l5-5zM4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4V5z'/%3E%3C/svg%3E");
        }
    }
    
    .header-right .btn-dashboard {
        margin-left: 0 !important;
    }
    
    @media (max-width: 400px) {
        .header {
            padding: 6px 4px;
            gap: 2px;
        }
        
        .header-left {
            max-width: calc(100% - 110px);
        }
        
        .logo-text {
            max-width: 50px;
            font-size: 11px;
        }
        
        .logo-icon {
            width: 22px;
            height: 22px;
        }
        
        .mobile-menu-toggle {
            width: 32px;
            height: 32px;
            min-width: 32px;
            max-width: 32px;
            padding: 5px;
        }
        
        .header-right {
            max-width: calc(100% - 110px);
            gap: 1px;
        }
        
        .btn-dashboard {
            padding: 3px 4px;
            font-size: 6px;
            max-width: 32px;
        }
    }
    
    @media (max-width: 360px) {
        .header {
            padding: 6px 3px;
            gap: 1px;
        }
        
        .header-left {
            max-width: calc(100% - 95px);
        }
        
        .logo-text {
            max-width: 45px;
            font-size: 10px;
        }
        
        .logo-icon {
            width: 20px;
            height: 20px;
        }
        
        .mobile-menu-toggle {
            width: 30px;
            height: 30px;
            min-width: 30px;
            max-width: 30px;
            padding: 4px;
        }
        
        .header-right {
            max-width: calc(100% - 95px);
            gap: 1px;
        }
        
        .btn-dashboard {
            padding: 3px 3px;
            font-size: 0;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            max-width: 28px;
            min-width: 28px;
        }
        
        .btn-dashboard::before {
            content: '';
            position: absolute;
            width: 14px;
            height: 14px;
            background: currentColor;
            mask-size: contain;
            mask-repeat: no-repeat;
            mask-position: center;
        }
        
        .btn-dashboard[href*="register"]::before,
        .btn-dashboard[href*="profile"]::before {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
        }
        
        .btn-dashboard[href*="login"]::before {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M10 20v-6h4v-2h-4V4H8v8H4v2h4v6h2zm8-12h-2v8h2v-8zm-4 4h-2v4h2v-4z'/%3E%3C/svg%3E");
        }
        
        .btn-dashboard[href*="admin"]::before {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
        }
        
        .btn-dashboard[href*="logout"]::before {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17 7l-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.59L17 17l5-5zM4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4V5z'/%3E%3C/svg%3E");
        }
    }
    
    .main-nav::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
        display: none;
        pointer-events: none;
    }
    
    .main-nav.active::after {
        display: block;
        pointer-events: auto;
    }
    
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(10, 10, 10, 0.98) !important;
        backdrop-filter: blur(20px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        border-bottom: none;
        flex-direction: column;
        align-items: stretch;
        padding-top: 60px !important;
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 12px;
        max-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        z-index: 99999 !important;
        order: unset;
        width: 100vw !important;
        margin: 0 !important;
        gap: 6px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .main-nav.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .main-nav > * {
        position: relative;
        z-index: 1;
    }
    
    .nav-link {
        padding: 10px 14px;
        font-size: 14px;
        width: 100%;
        border-radius: 8px;
        justify-content: flex-start;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-link-dropdown {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 8px;
        margin-left: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        min-width: auto;
        width: calc(100% - 32px);
        box-shadow: none;
        display: none;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }
    
    .nav-dropdown-item {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .main-content {
        padding: 70px 15px 30px 15px;
        box-sizing: border-box;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        margin: 0;
    }
    
    .hero-section {
        padding: 0 16px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        padding: 0 8px;
        box-sizing: border-box;
    }
    
    .hero-subtitle {
        font-size: 16px;
        padding: 0 8px;
        box-sizing: border-box;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 8px;
        box-sizing: border-box;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .btn-launcher {
        width: 100%;
        max-width: 100%;
        padding: 16px 30px;
        font-size: 16px;
        box-sizing: border-box;
    }
    
    .hero-launcher {
        width: 100%;
        padding: 0 8px;
        box-sizing: border-box;
    }
    
    .server-cards,
    .products-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .server-cards-home {
        grid-template-columns: 1fr;
    }
    
    .news-section {
        padding: 40px 15px;
    }
    
    .news-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .news-grid {
        margin-top: 25px;
    }
    
    .news-card {
        padding: 20px;
    }
    
    .news-card-title {
        font-size: 18px;
    }
    
    .news-card-image {
        height: 200px;
        overflow: hidden;
    }
    
    .news-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .news-card {
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .popular-news-container {
        margin: 40px auto 30px auto;
        padding: 0 15px;
        text-align: center;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }
    
    .popular-news-badge {
        font-size: 12px;
        padding: 6px 16px;
        display: block;
        margin: 0 auto 20px auto;
        width: fit-content;
        text-align: center;
    }
    
    .popular-news-card {
        flex-direction: column;
    }
    
    .popular-news-image {
        flex: 0 0 100%;
        width: 100%;
        min-height: 200px;
        overflow: hidden;
    }
    
    .popular-news-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }
    
    .popular-news-content {
        padding: 24px;
        box-sizing: border-box;
    }
    
    .popular-news-card {
        overflow: hidden;
    }
    
    .popular-news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .popular-news-stats {
        width: 100%;
        justify-content: flex-start;
    }
    
    .popular-stat-item {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .features-section {
        padding: 20px 15px 0 15px;
    }
    
    .server-monitoring {
        padding: 30px 15px;
    }
    
    .monitoring-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .category-row {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .features {
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
    }
    
    .feature-divider {
        width: 50px;
        height: 2px;
    }
    
    .news-article {
        padding: 24px 20px;
        margin: 20px 15px;
    }
    
    .news-article-title {
        font-size: 24px;
    }
    
    .clans-section {
        padding: 30px 15px;
    }
    
    .clan-card {
        padding: 20px;
    }
    
    .clan-manage-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .tab-btn {
        width: 100%;
        padding: 12px;
    }
    
    .clan-form-group {
        margin-bottom: 20px;
    }
    
    .clan-form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .clan-form-group input,
    .clan-form-group textarea,
    .clan-form-group select {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-actions button,
    .form-actions a {
        width: 100%;
    }
    
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-danger,
    .btn-submit-request,
    .btn-cancel-request,
    .btn-approve-request,
    .btn-reject-request,
    .btn-disband-clan,
    .btn-create-clan,
    .btn-view-clan,
    .btn-clan-manage,
    .btn-clan-join {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        text-align: center;
    }
    
    .server-card {
        padding: 20px;
    }
    
    .server-card-header {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .server-name {
        font-size: 16px;
    }
    
    .server-info-wrapper {
        gap: 10px;
    }
    
    .server-stats {
        gap: 6px;
    }
    
    .server-tags {
        gap: 6px;
    }
    
    .server-tag {
        font-size: 10px;
        padding: 3px 10px;
        min-height: 22px;
    }
    
    .server-card-title {
        font-size: 18px;
    }
    
    .server-card-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .server-card-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .server-card-footer .btn {
        width: 100%;
    }
    
    .data-table {
        font-size: 13px;
    }
    
    .data-table th,
    .data-table td {
        padding: 10px 8px;
    }
    
    .request-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .request-actions {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    
    .request-actions button {
        width: 100%;
    }
    
    .member-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .member-actions {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    
    .member-actions button,
    .member-actions select {
        width: 100%;
    }
}

.footer {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px 30px 40px;
    margin-top: 80px;
    position: relative;
    z-index: 100;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(220, 38, 38, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #ff1a1a);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 20px;
}

.footer-status-block {
    padding: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.footer-status-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    padding: 0;
    border: none;
}
.footer-status-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.footer-status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.footer-status-value {
    font-size: 36px;
    font-weight: 800;
    color: #1FB68B;
    line-height: 1;
    letter-spacing: -0.02em;
}
.footer-status-label {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #6ee7b7;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .footer-subtitle {
        font-size: 16px;
    }
}

.news-article {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    width: 100%;
    overflow-wrap: break-word;
}

.news-article-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-article-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    margin: 0;
}

.news-article-content {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.news-article-content a {
    color: #4da3ff;
    text-decoration: underline;
    font-weight: 600;
}

.news-article-content a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.news-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.news-article-content img[src=""] {
    display: none;
}

.download-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 32px 64px;
    flex-direction: column;
    align-items: stretch;
}
.download-top {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.download-hero {
    text-align: center;
}
.download-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 0 24px rgba(220, 38, 38, 0.25);
    letter-spacing: 0.5px;
}
.download-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}
.download-block {
    position: relative;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0 0 24px 0;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}
.download-block-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    flex-shrink: 0;
    border-radius: 12px 12px 0 0;
}
.download-block-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    padding: 20px 24px 0;
    letter-spacing: 0.5px;
}
.download-os-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 16px 24px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.download-os-icon {
    flex-shrink: 0;
    color: #10b981;
}
.download-meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 24px 24px;
}
.download-meta-item {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.download-meta-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.download-meta-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fbbf24;
}
.download-block .download-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 48px);
    max-width: none;
    margin: 0 24px 24px;
    padding: 18px 28px;
    border-radius: 10px;
    font-size: 1.05rem;
    box-sizing: border-box;
}
.download-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin: 0 0 24px;
    padding: 16px 28px;
    background: #dc2626;
    border: 1px solid rgba(248, 113, 113, 0.5);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    transition: all 0.25s ease;
    box-sizing: border-box;
    text-align: center;
}
.download-btn-primary svg {
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
.download-btn-primary:hover {
    background: #ef4444;
    border-color: rgba(248, 113, 113, 0.8);
    box-shadow: 0 6px 28px rgba(220, 38, 38, 0.5);
    transform: translateY(-2px);
}
.download-block .download-no-file {
    margin: 0 24px 24px;
}
.download-torrent-row {
    display: flex;
    gap: 12px;
    margin: 0 24px 24px;
    width: calc(100% - 48px);
    max-width: none;
    box-sizing: border-box;
}
.download-btn-torrent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    padding: 16px 20px;
    background: #059669;
    border: 1px solid rgba(52, 211, 153, 0.5);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
    transition: all 0.25s ease;
    box-sizing: border-box;
}
.download-btn-torrent:hover {
    background: #047857;
    border-color: rgba(52, 211, 153, 0.8);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
    transform: translateY(-2px);
}
.download-btn-torrent-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: block;
}
.download-safety {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin: 0 24px;
    padding: 14px 18px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 10px 10px 10px 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
}
.download-safety-icon {
    flex-shrink: 0;
    color: #10b981;
}
.download-vt-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.download-vt-links a {
    color: #34d399;
    font-weight: 600;
    text-decoration: none;
}
.download-vt-links a:hover {
    color: #6ee7b7;
    text-decoration: underline;
}
.download-vt-empty {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}
.download-banner-wrap {
    margin: 32px 0 40px;
    padding: 0 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.download-banner-inner {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    overflow: visible;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 60px 4px rgba(220, 38, 38, 0.25), 0 0 100px 8px rgba(185, 28, 28, 0.15);
    transition: transform 0.2s ease-out;
    transform-style: preserve-3d;
}
.download-banner-inner .download-banner-img {
    display: block;
    border-radius: 14px;
    overflow: hidden;
}
.download-banner-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}
@media (max-width: 768px) {
    .download-banner-wrap {
        padding: 0 16px;
        margin: 24px 0 32px;
    }
}
.download-instruction {
    margin-top: 56px;
    margin-bottom: 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.download-requirements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}
.download-req-block {
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 20px;
}
.download-req-block:hover {
    border-color: rgba(220, 38, 38, 0.3);
}
.download-req-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: 0.5px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.download-req-title-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.download-req-title-icon-min {
    color: #f59e0b;
}
.download-req-title-icon-rec {
    color: #10b981;
}
.download-req-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}
.download-req-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    padding: 10px 0;
    padding-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.download-req-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.download-req-item-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
}
.download-req-item-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}
.download-req-item-text {
    flex: 1;
    min-width: 0;
}
.download-req-list strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}
.download-req-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    margin: 0 auto 28px;
    padding: 18px 22px;
    background: rgba(20, 8, 8, 0.85);
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: 10px;
    max-width: 56em;
    letter-spacing: 0.02em;
    text-align: center;
}
.download-req-note strong {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}
.download-cards-row {
    display: grid;
    gap: 12px;
}
.download-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.download-card {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 12px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.download-card:hover {
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.15);
}
.download-card-step {
    min-height: 160px;
    padding: 24px 20px;
}
.download-card-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: rgba(220, 38, 38, 0.9);
    flex-shrink: 0;
}
.download-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.3);
    color: #fca5a5;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 12px;
    flex-shrink: 0;
}
.download-card-step .download-card-title {
    font-size: 1rem;
}
.download-card-step .download-card-desc {
    font-size: 13px;
}
.download-card-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.download-card-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.35;
    flex: 1;
}
.download-card-desc code {
    background: rgba(0, 0, 0, 0.3);
    padding: 1px 4px;
    border-radius: 4px;
    font-size: 10px;
}
.download-article {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
    width: 100%;
    box-sizing: border-box;
}
.download-article .news-article-content {
    margin-bottom: 0;
}
.download-article .download-link,
.download-article .download-button {
    display: inline-block;
    margin: 8px 12px 8px 0;
    white-space: normal;
    word-break: normal;
}
.download-article .download-count {
    margin-left: 4px;
}
@media (max-width: 900px) {
    .download-requirements {
        grid-template-columns: 1fr;
    }
    .download-steps-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .download-top {
        max-width: 100%;
    }
    .download-hero {
        text-align: center;
    }
    .download-subtitle {
        text-align: center;
    }
    .download-block-title {
        padding-left: 16px;
        padding-right: 16px;
    }
    .download-os-line {
        margin-left: 16px;
        margin-right: 16px;
    }
    .download-meta-row {
        margin-left: 16px;
        margin-right: 16px;
    }
    .download-block .download-btn-primary,
    .download-block .download-no-file {
        margin-left: 16px;
        margin-right: 16px;
    }
    .download-block .download-btn-primary {
        width: calc(100% - 32px);
    }
    .download-torrent-row {
        margin-left: 16px;
        margin-right: 16px;
        width: calc(100% - 32px);
        flex-direction: column;
    }
    .download-safety {
        margin-left: 16px;
        margin-right: 16px;
    }
    .download-meta-row {
        grid-template-columns: 1fr;
    }
    .download-instruction {
        margin-top: 40px;
        padding-top: 32px;
    }
    .download-requirements {
        grid-template-columns: 1fr;
    }
    .download-req-block {
        padding: 20px 16px;
    }
    .download-req-list {
        font-size: 13px;
    }
    .download-steps-row {
        grid-template-columns: 1fr;
    }
    .download-card {
        min-height: 120px;
    }
    .download-card-step {
        min-height: 140px;
    }
}

.maps-index {
    margin: 0 auto;
    max-width: 1600px;
    padding: 100px 20px 64px;
}

.maps-intro-block {
    padding: 48px 32px 40px;
    margin: 0;
    text-align: center;
}

.maps-title {
    margin: 0 0 16px;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.maps-accent-line {
    width: 60px;
    height: 3px;
    background: #dc2626;
    margin: 0 auto 24px;
}

.maps-intro-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
    max-width: 640px;
}

.maps-separator-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-top: 32px;
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 40px;
}

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

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

.map-card {
    display: block;
    position: relative;
    border-radius: 0;
    text-decoration: none;
    color: #fff;
    aspect-ratio: 4/3;
    perspective: 1000px;
}

.map-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.map-card:hover .map-card-inner {
    transform: rotateY(180deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.map-card-front,
.map-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 0;
    overflow: hidden;
}

.map-card-front {
    background-size: cover;
    background-position: center;
    background-color: #1a2a1a;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.map-card-label-front {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.map-card-back {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.08);
    transform: rotateY(180deg);
}

.map-card-back .map-card-label {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.map-card-label {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 16px;
    line-height: 1.3;
}

body .scroll-reveal {
    opacity: 0 !important;
    transform: translateY(70px) !important;
    transition: opacity 0.9s ease-out, transform 0.9s ease-out !important;
}
body .scroll-reveal.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.rules-page {
    padding: 6rem 1.5rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
    display: block !important;
    align-items: unset !important;
    justify-content: unset !important;
    min-height: auto !important;
}

.rules-layout {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    overflow: visible;
}

.rules-nav {
    flex-shrink: 0;
    width: 260px;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    z-index: 10;
}

.rules-nav-inner {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.25rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.rules-nav-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    padding: 0 1.25rem 0.75rem;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rules-nav-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rules-nav-link {
    display: block;
    padding: 0.6rem 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    border-left: 3px solid transparent;
}

.rules-nav-link:hover {
    background: rgba(220, 38, 38, 0.15);
    color: #fff;
    border-left-color: rgba(220, 38, 38, 0.6);
}

.rules-nav-link:active,
.rules-content .rules-section:target ~ .rules-section .rules-nav-link,
body:not(.rules-section-active) .rules-nav-link:first-of-type { border-left-color: transparent; }

.rules-content {
    flex: 1;
    min-width: 0;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.rules-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.rules-main-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin: 0 0 0.25rem 0;
    color: #fff;
}

.rules-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #dc2626;
    margin: 0 0 1rem 0;
}

.rules-intro {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
    margin-top: 1rem;
}

.rules-section {
    margin-bottom: 2.5rem;
    scroll-margin-top: 100px;
}

.rules-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(220, 38, 38, 0.35);
}

.rules-section-body {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.rules-section-body p { margin: 0 0 0.75rem 0; }

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem 0;
}

.rules-item {
    display: flex;
    gap: 0.625rem;
    padding: 0.5rem 0;
    line-height: 1.6;
}

.rules-item-num {
    flex-shrink: 0;
    font-weight: 600;
    color: #dc2626;
    min-width: 2.25rem;
    font-size: 0.9rem;
}

.rules-item-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.93rem;
}

.rules-note {
    background: rgba(220, 38, 38, 0.08);
    border-left: 3px solid rgba(220, 38, 38, 0.6);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin: 1.25rem 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.rules-punishment {
    display: block;
    color: #f87171;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.35rem 0.75rem;
    background: rgba(248, 113, 113, 0.08);
    border-left: 2px solid rgba(248, 113, 113, 0.5);
    border-radius: 3px;
    margin: 0.35rem 0 0.5rem 2.25rem;
}

.rules-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rules-footer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (min-width: 900px) and (max-width: 1024px) {
    .rules-nav {
        width: 220px;
    }
    
    .rules-content {
        padding: 1.75rem 2rem;
    }
    
    .rules-section-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 900px) {
    .rules-layout { flex-direction: column; }
    .rules-nav {
        width: 100%;
        position: static;
    }
    .rules-nav-inner {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem;
    }
    .rules-nav-title { width: 100%; padding: 0 0 0.5rem 0; border-bottom: none; }
    .rules-nav-list { flex-direction: row; flex-wrap: wrap; width: 100%; }
    .rules-nav-link { flex: 1 1 auto; min-width: 140px; border-left: none; border-radius: 6px; }
    .rules-content { padding: 1.5rem 1.25rem; }
}

.banlist-page {
    padding: 6rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    display: block !important;
    align-items: unset !important;
    justify-content: unset !important;
    min-height: auto !important;
}

.banlist-header {
    text-align: center;
    margin-bottom: 3rem;
}

.banlist-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.banlist-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.banlist-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.banlist-empty svg {
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.banlist-empty h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.banlist-empty p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.banlist-stats {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.banlist-stat-card {
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    text-align: center;
}

.banlist-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 0.25rem;
}

.banlist-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.banlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}

.ban-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.ban-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.5);
}

.ban-card-header {
    background: rgba(220, 38, 38, 0.1);
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.ban-card-player {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ban-card-icon {
    color: #dc2626;
}

.ban-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.ban-card-badge {
    background: rgba(220, 38, 38, 0.2);
    color: #ef4444;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.ban-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ban-card-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ban-card-field-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.ban-card-field-value {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.ban-card-steam {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.ban-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.ban-card-footer {
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ban-card-admin {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.banlist-loadmore {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.banlist-btn-loadmore {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.banlist-btn-loadmore:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.banlist-btn-loadmore:active {
    transform: translateY(0);
}

.loadmore-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

@media (min-width: 1200px) and (max-width: 1600px) {
    .banlist-page, .rules-page {
        max-width: 1280px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .main-content {
        max-width: 1280px;
        padding: 90px 30px 30px 30px;
    }
    
    .header {
        padding: 16px 30px;
    }
    
    .main-nav {
        gap: 0.75rem;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .banlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.25rem;
    }
    
    .rules-layout {
        max-width: 1280px;
        gap: 2rem;
    }
    
    .rules-nav {
        width: 240px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .news-card, .server-card {
        max-width: 100%;
    }
    
    .featured-servers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-page {
        max-width: 1280px;
    }
    
    .download-requirements {
        gap: 1.5rem;
    }
    
    .download-steps-row {
        gap: 1.25rem;
    }
    
    .news-article, .download-article {
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .banlist-page, .rules-page {
        padding: 5rem 1.5rem 3rem;
    }
    
    .banlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
    }
    
    .rules-layout {
        gap: 1.5rem;
    }
    
    .rules-nav {
        width: 220px;
    }
    
    .rules-content {
        padding: 1.75rem 2rem;
    }
}

@media (max-width: 768px) {
    .banlist-grid {
        grid-template-columns: 1fr;
    }
    
    .banlist-page {
        padding: 5rem 1rem 3rem;
    }
    
    .banlist-title {
        font-size: 1.5rem;
    }
    
    .banlist-btn-loadmore {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .rules-layout {
        flex-direction: column;
    }
    
    .rules-nav {
        width: 100%;
        position: static;
    }
}
