
        :root {
            --bg-color: #0b0b0b;
            --text-color: #e0e0e0;
            --gold: #c5a040;
            --gold-hover: #e8c35a;
            --red-btn: #8b0000;
            --red-btn-hover: #b30000;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

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

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: var(--font-main);
            overflow-x: hidden;
            position: relative;
        }

        /* Background Watermark */
        .bg-watermark {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 15vw;
            font-weight: bold;
            color: rgba(197, 160, 64, 0.03);
            white-space: nowrap;
            z-index: -1;
            pointer-events: none;
        }

        /* Header / Navbar */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            border-bottom: 1px solid rgba(197, 160, 64, 0.3);
            background-color: rgba(11, 11, 11, 0.95);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            color: var(--gold);
            font-size: 24px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--gold);
        }

        .btn-outline {
            border: 1px solid var(--gold);
            padding: 8px 15px;
            border-radius: 3px;
            color: var(--gold) !important;
        }

        .btn-outline:hover {
            background-color: var(--gold);
            color: var(--bg-color) !important;
        }

        .lang-switch {
            border: 1px solid var(--gold);
            padding: 5px 10px;
            font-size: 12px;
            color: var(--gold);
            border-radius: 3px;
        }

        /* Main Content */
        main {
            max-width: 1000px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .hero-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .hero-title h1 {
            font-size: 42px;
            color: #fff;
            margin-bottom: 10px;
        }

        .hero-title p {
            font-size: 18px;
            color: var(--gold);
        }

        /* Patch Notes Container */
        .patch-container {
            background: rgba(20, 20, 20, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            margin-bottom: 50px;
        }

        .update-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(197, 160, 64, 0.3);
        }

        .update-header h2 {
            font-size: 28px;
            color: #fff;
        }

        .patch-item {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .patch-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .patch-item h3 {
            color: var(--gold);
            font-size: 24px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .patch-item h3::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 24px;
            background-color: var(--red-btn);
        }

        .patch-item p {
            line-height: 1.7;
            color: #ccc;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .patch-highlight {
            background: rgba(139, 0, 0, 0.15);
            border-left: 3px solid var(--red-btn);
            padding: 15px;
            border-radius: 0 5px 5px 0;
            margin-top: 15px;
            margin-bottom: 15px;
        }

        .patch-highlight ul {
            list-style-type: none;
            padding-left: 10px;
        }

        .patch-highlight li {
            margin-bottom: 8px;
            color: #fff;
            display: flex;
            align-items: center;
        }
        
        .patch-highlight li::before {
            content: '♦';
            color: var(--gold);
            margin-right: 10px;
            font-size: 18px;
        }

        .patch-highlight li strong {
            color: var(--gold);
            margin-right: 5px;
        }

        /* Call to Action */
        .cta-section {
            text-align: center;
            margin-top: 60px;
            padding-bottom: 60px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .btn-primary {
            background-color: var(--red-btn);
            color: #fff;
            text-decoration: none;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 3px;
            transition: background-color 0.3s ease;
            text-transform: uppercase;
        }

        .btn-primary:hover {
            background-color: var(--red-btn-hover);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
            text-decoration: none;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 3px;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .btn-secondary:hover {
            background-color: var(--gold);
            color: var(--bg-color);
        }

