    :root {
        --military-dark: #1a1f16;
        --military-olive: #4a5d3f;
        --military-khaki: #6b7c59;
        --military-sand: #9d8f6f;
        --military-light: #b5aa8e;
        --military-accent: #8b9a7a;

        --maxw: 1200px;
        --pad: 30px;

        --radius: 15px;
        --shadow: 0 10px 40px rgba(107, 124, 89, 0.35);
        --border: 1px solid rgba(107, 124, 89, 0.25);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #1a1f16 0%, #2d3427 100%);
        color: #e0ddd5;
        overflow-x: hidden;
    }

    @media (prefers-reduced-motion: reduce) {
        * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    }

    .bg-pattern {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-image:
            radial-gradient(circle at 20% 30%, rgba(107, 124, 89, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(75, 93, 63, 0.06) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(139, 154, 122, 0.05) 0%, transparent 50%),
            repeating-linear-gradient(90deg, rgba(107, 124, 89, 0.02) 0px, transparent 2px, transparent 60px),
            repeating-linear-gradient(0deg, rgba(75, 93, 63, 0.02) 0px, transparent 2px, transparent 60px);
        z-index: -1;
        animation: patternMove 30s linear infinite;
    }

    @keyframes patternMove {
        0% { transform: translate(0, 0); }
        100% { transform: translate(40px, 40px); }
    }

    header {
        background: rgba(26, 31, 22, 0.95);
        backdrop-filter: blur(10px);
        padding: 14px 0;
        box-shadow: 0 4px 20px rgba(107, 124, 89, 0.3);
        position: sticky;
        top: 0;
        z-index: 1000;
        border-bottom: 2px solid var(--military-khaki);
    }

    nav {
        max-width: var(--maxw);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 var(--pad);
        gap: 14px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .logo-image {
        width: 74px;
        height: 74px;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 0 14px rgba(157, 143, 111, 0.35));
    }

    .nav-links {
        display: flex;
        gap: 34px;
        list-style: none;
        align-items: center;
    }

    .nav-links a {
        color: #e0ddd5;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 0.4px;
        transition: all 0.3s;
        position: relative;
        padding: 6px 0;
        white-space: nowrap;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--military-sand);
        transition: width 0.3s;
    }

    .nav-links a:hover { color: var(--military-sand); }
    .nav-links a:hover::after { width: 100%; }

    .nav-toggle {
        display: none;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        border: 1px solid rgba(157, 143, 111, 0.25);
        background: rgba(107, 124, 89, 0.12);
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: transform .2s, background .2s;
    }

    .nav-toggle:active { transform: scale(0.98); }
    .nav-toggle:hover { background: rgba(107, 124, 89, 0.18); }

    .nav-toggle svg { width: 22px; height: 22px; fill: none; stroke: var(--military-sand); stroke-width: 2.2; }

    .nav-drawer {
        display: none;
        position: fixed;
        top: 0; right: 0;
        width: min(84vw, 360px);
        height: 100vh;
        background: rgba(26, 31, 22, 0.98);
        border-left: 2px solid rgba(107, 124, 89, 0.35);
        box-shadow: -20px 0 50px rgba(0,0,0,.45);
        z-index: 1200;
        transform: translateX(110%);
        transition: transform .25s ease;
        padding: 18px;
        backdrop-filter: blur(10px);
    }

    .nav-drawer.open { transform: translateX(0); }

    .drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(107, 124, 89, 0.25);
        margin-bottom: 12px;
    }

    .drawer-title {
        color: var(--military-sand);
        font-weight: 800;
        letter-spacing: 1px;
    }

    .drawer-close {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        border: 1px solid rgba(157, 143, 111, 0.25);
        background: rgba(107, 124, 89, 0.12);
        cursor: pointer;
        display: grid;
        place-items: center;
    }

    .drawer-close svg { width: 22px; height: 22px; stroke: var(--military-sand); stroke-width: 2.4; fill: none; }

    .drawer-links {
        list-style: none;
        display: grid;
        gap: 10px;
        padding: 10px 0 16px 0;
    }

    .drawer-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 12px;
        border-radius: 12px;
        border: 1px solid rgba(107, 124, 89, 0.2);
        background: rgba(107, 124, 89, 0.08);
        text-decoration: none;
        color: #e0ddd5;
        font-weight: 700;
    }

    .drawer-links a:hover {
        background: rgba(107, 124, 89, 0.14);
        border-color: rgba(107, 124, 89, 0.35);
    }

    .drawer-links a span {
        color: rgba(181, 170, 142, 0.9);
        font-weight: 800;
    }

    .drawer-note {
        color: rgba(181, 170, 142, 0.85);
        font-size: 13px;
        line-height: 1.55;
        border-top: 1px solid rgba(107, 124, 89, 0.25);
        padding-top: 12px;
        margin-top: 6px;
    }

    .overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.55);
        z-index: 1100;
        opacity: 0;
        transition: opacity .2s ease;
    }
    .overlay.show { opacity: 1; }

    body.no-scroll { overflow: hidden; }

    .hero {
        max-width: var(--maxw);
        margin: 80px auto;
        padding: 0 var(--pad);
        text-align: center;
    }

    .hero h1 {
        font-size: 64px;
        margin-bottom: 18px;
        background: linear-gradient(135deg, var(--military-sand), var(--military-khaki));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 40px rgba(157, 143, 111, 0.5);
        animation: glowPulse 2s ease-in-out infinite;
        line-height: 1.05;
    }

    @keyframes glowPulse {
        0%, 100% { filter: brightness(1); }
        50% { filter: brightness(1.15); }
    }

    .hero p {
        font-size: 20px;
        color: #b5aa8e;
        margin-bottom: 30px;
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        padding: 15px 34px;
        font-size: 16px;
        font-weight: 900;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        min-height: 46px;
        letter-spacing: 0.8px;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--military-olive), var(--military-khaki));
        color: white;
        box-shadow: 0 4px 20px rgba(107, 124, 89, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(107, 124, 89, 0.55);
    }

    .servers {
        max-width: var(--maxw);
        margin: 70px auto;
        padding: 0 var(--pad);
    }

    .section-title {
        text-align: center;
        font-size: 42px;
        margin-bottom: 50px;
        color: var(--military-sand);
        text-shadow: 0 0 20px rgba(157, 143, 111, 0.45);
    }

    .servers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 26px;
    }

    .server-card {
        background: rgba(26, 31, 22, 0.82);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(107, 124, 89, 0.28);
        border-radius: var(--radius);
        padding: 26px;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }



    .server-card:hover::before { opacity: 1; }

    .server-icon {
        margin-bottom: 18px;
        display: block;
    }

    .server-icon img {
        width: 96px;
        height: 96px;
        object-fit: contain;
        filter: drop-shadow(0 0 18px rgba(107, 124, 89, 0.25));
    }

    .server-card h3 {
        font-size: 28px;
        margin-bottom: 12px;
        color: var(--military-sand);
    }

    .server-card p {
        color: #b5aa8e;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .server-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(107, 124, 89, 0.25);
    }

    .stat { text-align: center; }

    .stat-value {
        font-size: 20px;
        font-weight: 900;
        color: var(--military-sand);
        line-height: 1.2;
    }

    .stat-label {
        font-size: 12px;
        color: #8b9a7a;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-top: 3px;
    }

    .server-ip {
        background: rgba(107, 124, 89, 0.15);
        padding: 14px 12px;
        border-radius: 12px;
        text-align: center;
        font-family: 'Courier New', monospace;
        font-size: 15px;
        color: var(--military-sand);
        border: 1px solid rgba(107, 124, 89, 0.28);
        cursor: pointer;
        transition: all 0.25s;
        user-select: none;
    }

    .server-ip:hover { background: rgba(107, 124, 89, 0.22); }

    .server-actions {
        margin-top: 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .server-download-btn {
        width: 100%;
        text-align: center;
    }

    .server-download-link {
        text-align: center;
        font-size: 14px;
        color: #b5aa8e;
        line-height: 1.5;
    }

    .server-download-link a {
        color: var(--military-sand);
        text-decoration: underline;
        word-break: break-word;
    }

    .server-download-link a:hover {
        color: var(--military-light);
    }

    footer {
        background: rgba(26, 31, 22, 0.95);
        padding: 40px 0;
        margin-top: 70px;
        border-top: 2px solid var(--military-khaki);
    }

    .footer-content {
        max-width: var(--maxw);
        margin: 0 auto;
        padding: 0 var(--pad);
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }

    .footer-section h3 {
        color: var(--military-sand);
        margin-bottom: 16px;
        font-size: 18px;
        letter-spacing: 0.6px;
    }

    .footer-section p, .footer-section a {
        color: #b5aa8e;
        line-height: 1.8;
        text-decoration: none;
        display: block;
        margin-bottom: 8px;
        transition: color 0.3s;
    }

    .footer-section a:hover { color: var(--military-light); }

    .social-links {
        display: flex;
        gap: 12px;
        margin-top: 12px;
        flex-wrap: wrap;
    }

    .social-icon{
        width: 44px;
        height: 44px;
        background: rgba(107, 124, 89, 0.12);
        border-radius: 14px;
        border: 1px solid rgba(107, 124, 89, 0.25);
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
        transition: all 0.25s;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0;
        line-height: 0;
        color: var(--military-sand);
    }

    .social-icon svg{
        display: block;
        width: 22px;
        height: 22px;
        fill: currentColor;
        flex: 0 0 auto;
    }

    .social-icon:hover{
        background: rgba(107, 124, 89, 0.22);
        transform: translateY(-2px);
        border-color: rgba(157, 143, 111, 0.35);
    }

    .copyright {
        text-align: center;
        color: #8b9a7a;
        margin-top: 28px;
        padding-top: 18px;
        border-top: 1px solid rgba(107, 124, 89, 0.2);
        font-size: 13px;
        padding-left: var(--pad);
        padding-right: var(--pad);
        line-height: 1.5;
    }

    @media (max-width: 1024px) {
        :root { --pad: 20px; }
        .hero { margin: 60px auto; }
        .hero h1 { font-size: 52px; }
        .nav-links { gap: 22px; }
    }

    @media (max-width: 820px) {
        .hero h1 { font-size: 44px; }
        .hero p { font-size: 17px; }
        .servers-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
        .nav-links { display: none; }
        .nav-toggle { display: inline-flex; }
        .nav-drawer { display: block; }
        .overlay { display: block; }

        header { padding: 12px 0; }
        .logo-image { width: 56px; height: 56px; }

        .hero { margin: 46px auto; text-align: left; }
        .hero h1 { font-size: 34px; line-height: 1.05; }
        .hero p { font-size: 15.5px; margin-bottom: 20px; }
        .hero-buttons { justify-content: flex-start; }
        .btn { width: 100%; }

        .section-title { font-size: 28px; margin-bottom: 30px; text-align: left; }

        .server-card { padding: 18px; }
        .server-icon img { width: 82px; height: 82px; }
        .server-card h3 { font-size: 22px; }
        .server-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
        .stat-value { font-size: 18px; }
    }

    @media (max-width: 420px) {
        .server-stats { grid-template-columns: 1fr; }
        .stat { text-align: left; display: flex; justify-content: space-between; align-items: baseline; }
        .stat-label { margin-top: 0; }
    }

    @media (max-width: 480px) {
        .bg-pattern { animation: none; }
    }
