        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        @font-face {
            font-family: StratumNo2;
            src: url('fonts/stratumno2_bold.woff2') format('woff2'),
                url('fonts/stratumno2_bold.otf') format('opentype');
            font-weight: bold;
            font-style: normal;
        }

        @font-face {
            font-family: StratumNo2;
            src: url('fonts/stratumno2_light.woff2') format('woff2'),
                url('fonts/stratumno2_light.otf') format('opentype');
            font-weight: 300;
            font-style: normal;
        }

        @font-face {
            font-family: StratumNo2;
            src: url('fonts/stratumno2_regular.woff2') format('woff2'),
                url('fonts/stratumno2_regular.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: Future Rot;
            src: url('fonts/Futurot.woff2') format('woff2'),
                url('fonts/Futurot.ttf') format('ttf');
            font-weight: normal;
            font-style: normal;
        }

        body {
            height: 100vh;
            width: 100%;
            margin: 0;
            padding: 0;
            background-color: #0f0f0f;
            color: #e0e0e0;
            font-family: 'StratumNo2', cursive;
            position: relative;
            overflow-x: hidden;
        }
        
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("logoMotd.jpg");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            filter: brightness(0.4) contrast(1.2);
            z-index: -1;
        }
        
        body::after {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            opacity: 0.1;
            z-index: -1;
            pointer-events: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Navigation */
        .nav {
            position: sticky;
            top: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 10px 0;
            z-index: 100;
            border-bottom: 1px solid #333;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-family: 'Future Rot', sans-serif;
            font-size: 28px;
            color: #ff3333;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
            transition: all 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.1);
            text-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
        }
        
        .nav-links {
            display: flex;
            gap: 20px;
        }
        
        .nav-link {
            font-family: 'StratumNo2';
            font-weight: lighter;
            color: #aaa;
            text-decoration: none;
            font-size: 16px;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Header */
        .header {
            padding: 60px 0 30px;
            text-align: center;
        }
        
        .header h1 {
            font-family: 'Future Rot';
            font-size: 48px;
            color: #ff3333;
            letter-spacing: 3px;
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
        }
        
        .header p {
            font-size: 18px;
            color: #aaa;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Main Content */
        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .card {
            flex: 1 1 300px;
            background: rgba(20, 20, 20, 0.8);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        
        .card-header {
            padding: 15px;
            background: rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .card-header h2 {
            font-family: 'StratumNo2', cursive;
            font-size: 24px;
            color: #ff9900;
            letter-spacing: 1px;
            text-align: center;
            margin: 0;
        }
        
        .card-body {
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .card-body::-webkit-scrollbar {
            width: 8px;
        }
        
        .card-body::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.2);
        }
        
        .card-body::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
        }
        
        .card-body::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        /* Command List */
        .command-list {
            list-style-type: none;
        }
        
        .command-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            border-radius: 4px;
            background: rgba(0, 0, 0, 0.2);
            transition: background 0.3s ease;
        }
        
        .command-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .command-icon {
            margin-right: 15px;
            width: 24px;
            height: 24px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #ffcc00;
        }
        
        .command-name {
            color: #0f0;
            font-weight: bold;
            margin-right: 10px;
            min-width: 100px;
        }
        
        .command-description {
            color: #bbb;
            flex-grow: 1;
        }
        
        /* Infected List */
        .infected-list {
            list-style-type: none;
        }
        
        .infected-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            border-radius: 4px;
            background: rgba(0, 0, 0, 0.2);
            transition: background 0.3s ease;
        }
        
        .infected-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .infected-icon {
            margin-right: 15px;
            width: 24px;
            height: 24px;
            background-color: rgba(255, 0, 0, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #ff3333;
        }
        
        .infected-name {
            color: #ff3333;
            font-weight: bold;
            margin-right: 10px;
            min-width: 100px;
        }
        
        .infected-description {
            color: #bbb;
            flex-grow: 1;
        }
        
        .image-container {
            margin-top: 20px;
            text-align: center;
        }
        
        .image-container img {
            max-width: 100%;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }
        
        .image-container img:hover {
            transform: scale(1.02);
        }
        
        /* Footer */
        .footer {
            margin-top: 50px;
            padding: 20px 0;
            text-align: center;
            color: #666;
            font-size: 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .steam-link {
            color: #66c0f4;
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .steam-link:hover {
            background-color: rgba(102, 192, 244, 0.1);
            color: #ffffff;
        }
        
        /* Animations */
        @keyframes pulse {
            0% {
                text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
            }
            50% {
                text-shadow: 0 0 20px rgba(255, 0, 0, 0.9), 0 0 30px rgba(255, 0, 0, 0.5);
            }
            100% {
                text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 36px;
            }
            
            .content-wrapper {
                flex-direction: column;
            }
            
            .nav-container {
                flex-direction: column;
                gap: 10px;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }