html, body {
            height: auto;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Courier New', Courier, monospace;
            background-color: #000;
            color: #fff;
            line-height: 1.6;
            min-height: 100vh;
            position: relative;
        }
        nav {
            background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
            backdrop-filter: blur(10px);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0 60px 0;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .nav-menu {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 50px;
        }
        .nav-menu li a {
            color: #aaa;
            text-decoration: none;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            transition: color 0.4s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-menu li a i {
            font-size: 20px;
        }
        .nav-menu li a:hover {
            color: #0f0;
        }
        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #0f0;
            transition: width 0.4s ease;
            box-shadow: 0 0 10px #0f0;
        }
        .nav-menu li a:hover::after, .nav-menu li a.active::after {
            width: 100%;
        }
        .nav-menu li a.active {
            color: #0f0;
        }
        .main-bg {
            background-image: url('https://i.redd.it/chernarus-landscapes-v0-0fnb08rfxw0a1.jpg?width=1920&format=pjpg&auto=webp&s=e6362b3c7cb128600c5d8e071a836aaea1dad21b');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            padding-top: 70px;
            padding-bottom: 100px;
        }
        .transition-bg {
            height: 150px;
            background: linear-gradient(to bottom, transparent 0%, #000 100%);
            position: relative;
            margin-top: -100px;
        }
        .lower-section {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 50px 20px;
            position: relative;
            z-index: 10;
        }
        .lower-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .lower-section h2 {
            text-align: center;
            font-size: 32px;
            margin-bottom: 80px;
            color: #0f0;
            text-shadow: 0 0 10px #0f0;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }
        .lower-section h2.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .lower-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        .card {
            background-color: rgba(17, 17, 17, 0.85);
            padding: 25px;
            border: 1px solid #333;
            backdrop-filter: blur(5px);
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
            opacity: 0;
            transform: translateY(60px) scale(0.95);
            transition: transform 0.8s ease-out, opacity 0.8s ease-out, box-shadow 0.8s ease-out;
        }
        .card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            box-shadow: 0 0 40px rgba(0, 255, 0, 0.6);
        }
        .card:nth-child(1).visible { transition-delay: 0.3s; }
        .card:nth-child(2).visible { transition-delay: 0.5s; }
        .card:nth-child(3).visible { transition-delay: 0.7s; }
        .card:hover {
            transform: translateY(-10px) scale(1.02);
        }
        .card h3 {
            margin-top: 0;
            color: #0f0;
            border-bottom: 1px solid #444;
            padding-bottom: 10px;
            text-shadow: 0 0 5px #0f0;
        }
        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 20px;
        }
        .social-links a {
            font-size: 40px;
            color: #0f0;
            transition: color 0.3s, transform 0.3s;
        }
        .social-links a:hover {
            color: #0ff;
            transform: scale(1.2);
        }
        .donate-btn {
            display: block;
            margin: 30px auto 0;
            padding: 15px 40px;
            background-color: #0f0;
            color: #000;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            max-width: 300px;
            transition: background-color 0.3s, transform 0.3s;
        }
        .donate-btn:hover {
            background-color: #0c0;
            transform: scale(1.05);
        }
        #loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 1s ease-out, visibility 1s ease-out;
        }
        #loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        .loader-dayz-logo {
            max-width: 500px;
            width: 80%;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeIn 1.5s forwards;
        }
        .loader-server-logo {
            max-width: 400px;
            width: 70%;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeIn 1.5s 0.5s forwards;
        }
        .loader-text {
            font-size: 24px;
            color: #0f0;
            letter-spacing: 4px;
            opacity: 0;
            animation: fadeIn 1.5s 1s forwards, pulse 2s infinite;
            display: flex;
            align-items: center;
        }
        .loader-dots {
            display: flex;
        }
        .loader-dot {
            opacity: 0;
            animation: dotPulse 1.5s infinite ease-in-out;
        }
        .loader-dot:nth-child(1) { animation-delay: 0s; }
        .loader-dot:nth-child(2) { animation-delay: 0.3s; }
        .loader-dot:nth-child(3) { animation-delay: 0.6s; }
        @keyframes dotPulse {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }
        .loader-bar {
            width: 300px;
            height: 4px;
            background-color: #333;
            margin-top: 30px;
            overflow: hidden;
        }
        .loader-progress {
            width: 0;
            height: 100%;
            background-color: #0f0;
            animation: load 3s forwards;
        }
        @keyframes fadeIn { to { opacity: 1; } }
        @keyframes pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
        @keyframes load { 0% { width: 0; } 100% { width: 100%; } }
        header {
            background-color: rgba(17, 17, 17, 0.85);
            padding: 60px 20px 40px 20px;
            text-align: center;
            border-bottom: 2px solid #333;
            backdrop-filter: blur(5px);
            position: relative;
            z-index: 10;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }
        header.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .header-logos {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .logo-img {
            max-width: 800px;
            width: 90%;
            height: auto;
        }
        .server-logo-img {
            max-width: 500px;
            width: 60%;
            height: auto;
            filter: drop-shadow(4px 4px 8px #000);
        }
        .tagline {
            font-size: 24px;
            color: #0f0;
            margin-top: 20px;
            letter-spacing: 4px;
            text-shadow: 0 0 10px #0f0;
            white-space: nowrap;
            overflow: hidden;
        }
        .tagline .letter {
            display: inline-block;
            opacity: 0;
            transform: translateY(30px);
        }
        .tagline .letter.visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.3s ease-out, transform 0.3s ease-out;
        }
        .tagline .space {
            display: inline-block;
            width: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
            position: relative;
            z-index: 10;
        }
        .status-section, .info-section, .tabs-container, .transition-bg {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }
        .status-section.visible, .info-section.visible, .tabs-container.visible, .transition-bg.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .status-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        .server-status-block {
            background-color: rgba(0, 0, 0, 0.7);
            padding: 15px;
            border: 1px solid #333;
            flex: 1;
            min-width: 300px;
            position: relative;
            overflow: hidden;
            height: 150px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        .status-icon {
            font-size: 50px;
            color: #0f0;
            text-shadow: 0 0 20px #0f0;
            margin-bottom: 10px;
            animation: pulseGlow 2s infinite alternate;
        }
        .status-title {
            font-size: 22px;
            color: #0f0;
            text-shadow: 0 0 10px #0f0;
            margin-bottom: 8px;
            letter-spacing: 2px;
        }
        .wipe-date {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            color: #0f0;
            text-shadow: 0 0 8px #0f0;
            margin: 8px 0;
        }
        .wipe-date i {
            font-size: 22px;
        }
        .status-note {
            font-size: 14px;
            color: #aaa;
            max-width: 90%;
        }
        @keyframes pulseGlow {
            0% { text-shadow: 0 0 15px #0f0; }
            100% { text-shadow: 0 0 35px #0f0; }
        }
        .battlemetrics-widget {
            padding: 0;
            border: 2px solid #444;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
            flex: 0 1 auto;
            backdrop-filter: blur(3px);
        }
        .battlemetrics-widget iframe {
            display: block;
            width: 360px;
            height: 540px;
            border: 0;
        }
        .info-section {
            display: flex;
            gap: 40px;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        .details {
            background-color: rgba(17, 17, 17, 0.85);
            padding: 20px;
            border: 1px solid #333;
            flex: 1;
            min-width: 300px;
            backdrop-filter: blur(3px);
        }
        .details h2 {
            border-bottom: 1px solid #444;
            padding-bottom: 10px;
        }
        .discord-link {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            margin-top: 10px;
        }
        .discord-link i {
            font-size: 28px;
            color: #7289da;
            text-shadow: 0 0 10px #7289da;
        }
        .discord-link a {
            color: #0f0;
            text-shadow: 0 0 10px #0f0;
            font-weight: bold;
            text-decoration: none;
        }
        .discord-link a:hover {
            text-shadow: 0 0 20px #0f0;
        }
        .right-column {
            flex: 0 1 400px;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .map-container {
            border: 1px solid #333;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
            overflow: hidden;
            background-color: rgba(17, 17, 17, 0.85);
            backdrop-filter: blur(3px);
            position: relative;
            cursor: pointer;
        }
        .map-header {
            padding: 10px 15px;
            background-color: rgba(0, 0, 0, 0.6);
            font-size: 18px;
            text-align: center;
            border-bottom: 1px solid #444;
            position: relative;
        }
        .map-header i {
            margin-right: 8px;
            color: #0f0;
        }
        .map-hint {
            font-size: 14px;
            color: #0f0;
            opacity: 0;
            transition: opacity 0.4s ease;
            margin-top: 5px;
        }
        .map-container:hover .map-hint {
            opacity: 1;
        }
        .map-image {
            position: relative;
            overflow: hidden;
        }
        .map-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease, box-shadow 0.6s ease;
        }
        .map-container:hover .map-image img {
            transform: scale(1.15);
            box-shadow: 0 0 30px rgba(0, 255, 0, 0.6);
        }
        .map-lightning-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        .news-slider-container {
            border: 1px solid #333;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
            overflow: hidden;
            background-color: rgba(17, 17, 17, 0.85);
            backdrop-filter: blur(3px);
        }
        .news-header {
            padding: 10px 15px;
            background-color: rgba(0, 0, 0, 0.6);
            font-size: 18px;
            text-align: center;
            border-bottom: 1px solid #444;
        }
        .news-header i {
            margin-right: 8px;
            color: #0f0;
        }
        .news-slider {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        .news-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
        }
        .news-slide.active { opacity: 1; }
        .news-slide i {
            font-size: 48px;
            color: #0f0;
            margin-bottom: 15px;
        }
        .news-slide h3 {
            margin: 0 0 10px 0;
            font-size: 18px;
        }
        .news-slide p {
            margin: 0;
            font-size: 14px;
            text-align: center;
        }
        .tabs-container {
            background-color: rgba(17, 17, 17, 0.85);
            border: 1px solid #333;
            backdrop-filter: blur(5px);
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
            margin-bottom: 40px;
        }
        .tabs-header {
            display: flex;
            border-bottom: 1px solid #444;
        }
        .tab-button {
            flex: 1;
            padding: 15px;
            text-align: center;
            background-color: rgba(0, 0, 0, 0.6);
            color: #aaa;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.4s ease;
            position: relative;
        }
        .tab-button:hover {
            color: #0f0;
            background-color: rgba(0, 255, 0, 0.1);
        }
        .tab-button.active {
            color: #0f0;
        }
        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #0f0;
            box-shadow: 0 0 15px #0f0;
        }
        .tab-content {
            display: none;
            padding: 30px;
        }
        .tab-content.active {
            display: block;
        }
        .mods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        .mod-card {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border: 1px solid #444;
            text-align: center;
        }
        .mod-card i {
            font-size: 50px;
            color: #0f0;
            margin-bottom: 15px;
        }
        .features-list {
            list-style: none;
            padding: 0;
        }
        .features-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #333;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.4s ease;
        }
        .features-list li i {
            color: #0f0;
            font-size: 20px;
            text-shadow: 0 0 5px #0f0;
            transition: all 0.4s ease;
        }
        .features-list li:hover i {
            transform: scale(1.4);
            text-shadow: 0 0 25px #0f0;
            animation: iconPulseHover 1.2s ease-in-out infinite;
        }
        @keyframes iconPulseHover {
            0%, 100% {
                text-shadow: 0 0 15px #0f0;
                transform: scale(1.4);
            }
            50% {
                text-shadow: 0 0 35px #0f0;
                transform: scale(1.6);
            }
        }
        .map-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            justify-content: center;
            align-items: center;
        }
        .map-modal.active {
            display: flex;
        }
        .modal-content {
            position: relative;
            width: 90%;
            height: 90%;
            background: #000;
            border: 2px solid #0f0;
            box-shadow: 0 0 40px rgba(0, 255, 0, 0.5);
        }
        .modal-content iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .close-modal {
            position: absolute;
            top: -15px;
            right: -15px;
            font-size: 40px;
            color: #0f0;
            background: #000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 0 20px #0f0;
            z-index: 10001;
        }
        .close-modal:hover {
            background: #0f0;
            color: #000;
        }
        footer {
            padding: 30px 20px;
            font-size: 12px;
            color: #666;
            border-top: 1px solid #333;
            background-color: rgba(0, 0, 0, 0.7);
            position: relative;
            z-index: 10;
            margin: 0;
        }
        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-server-logo {
            width: 150px;
            position: absolute;
            left: 20px;
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 1s ease-out, transform 1s ease-out;
            animation: randomLogoGlow 8s ease-in-out infinite alternate;
        }
        .footer-server-logo.visible {
            opacity: 1;
            transform: scale(1);
        }
        .footer-server-logo:hover {
            animation-play-state: paused;
            filter: drop-shadow(0 0 40px #0f0);
        }
        .copyright-text {
            margin: 0;
            text-align: center;
            flex: 1;
            opacity: 0;
            transition: opacity 1s ease-out 0.3s;
        }
        .copyright-text.visible {
            opacity: 1;
        }
        @keyframes randomLogoGlow {
            0%   { filter: drop-shadow(0 0 10px #0f0); }
            23%  { filter: drop-shadow(0 0 31px #0f0); }
            33%  { filter: drop-shadow(0 0 33px #0f0); }
            67%  { filter: drop-shadow(0 0 18px #0f0); }
            79%  { filter: drop-shadow(0 0 12px #0f0); }
            85%  { filter: drop-shadow(0 0 23px #0f0); }
            100% { filter: drop-shadow(0 0 17px #0f0); }
        }
        #particles-js {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        /* Back to Top Button */
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgba(0, 255, 0, 0.3);
            border: 2px solid #0f0;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 28px;
            color: #0f0;
            box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
        }
        #backToTop:hover {
            background: rgba(0, 255, 0, 0.6);
            box-shadow: 0 0 25px rgba(0, 255, 0, 0.9);
            transform: scale(1.1);
        }
        #backToTop.show {
            opacity: 1;
            visibility: visible;
        }
