
        :root { --primary-gold: #d4af37; --secondary-red: #8a1c1c; --bg-dark: #121212; --bg-card: #1e1e1e; --text-light: #e0e0e0; }
        body { font-family: 'Segoe UI', Roboto, sans-serif; margin: 0; background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; text-align: center; }
        header nav { background-color: rgba(0, 0, 0, 0.95); padding: 15px 0; position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 2px solid var(--primary-gold); }
        .container { width: 90%; margin: auto; max-width: 900px; }
        .nav-content { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 26px; font-weight: bold; color: var(--primary-gold); text-decoration: none; text-transform: uppercase; }
        .nav-links a { color: #fff; text-decoration: none; margin-left: 20px; font-weight: 500; }
        .nav-links a:hover { color: var(--primary-gold); }
        
        .patch-hero { padding: 150px 0 80px; }
        h1 { color: var(--primary-gold); font-size: 3rem; margin-bottom: 20px; }
        .discord-box { background: var(--bg-card); border: 2px solid #5865F2; padding: 50px; border-radius: 8px; margin-top: 40px; box-shadow: 0 10px 30px rgba(88, 101, 242, 0.2); }
        .discord-box h2 { color: #fff; margin-top: 0; font-size: 2rem; }
        .discord-box p { font-size: 1.1rem; color: #ccc; margin-bottom: 30px; }
        
        .btn-discord { background-color: #5865F2; color: white; padding: 15px 40px; font-size: 1.2rem; font-weight: bold; text-decoration: none; border-radius: 5px; display: inline-block; transition: background 0.3s, transform 0.3s; }
        .btn-discord:hover { background-color: #4752C4; transform: translateY(-3px); }

        .info-text { margin-top: 50px; text-align: left; background: #151515; padding: 30px; border-left: 4px solid var(--primary-gold); }
        .info-text h3 { color: var(--primary-gold); margin-top: 0; }
        
        footer { padding: 40px; color: #777; background: #080808; border-top: 1px solid #222; margin-top: 60px; }
        .footer-links a { color: #aaa; text-decoration: none; margin: 0 10px; font-size: 0.9rem; }
        .footer-links a:hover { color: var(--primary-gold); }
    </style>