
        /* Inherited Styles from Index */
        :root { --primary-gold: #d4af37; --secondary-red: #8a1c1c; --bg-dark: #121212; --bg-card: #1e1e1e; --text-light: #e0e0e0; --text-muted: #aaa; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; margin: 0; background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }
        
        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); box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .container { width: 90%; margin: auto; max-width: 1200px; }
        .nav-content { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 26px; font-weight: bold; color: var(--primary-gold); text-transform: uppercase; letter-spacing: 1px; text-decoration: none;}
        .nav-links { display: flex; align-items: center; }
        .nav-links a { color: #fff; text-decoration: none; margin-left: 20px; font-weight: 500; cursor: pointer; transition: color 0.3s; font-size: 0.95rem; }
        .nav-links a:hover { color: var(--primary-gold); }

        /* Guide Specific Styles */
        main { margin-top: 100px; min-height: 80vh; padding-bottom: 50px; }
        h1 { color: var(--primary-gold); text-align: center; font-size: 2.5rem; margin-bottom: 40px; text-transform: uppercase; }
        
        .guide-section { background: var(--bg-card); padding: 30px; border-radius: 5px; border: 1px solid #333; margin-bottom: 30px; }
        .guide-section h2 { color: #fff; font-size: 1.8rem; margin-top: 0; border-bottom: 1px solid #444; padding-bottom: 15px; margin-bottom: 20px; text-align: left; }
        .guide-section h2::after { display: none; } /* Override index style */
        
        .security-alert { border: 2px solid var(--secondary-red); background: rgba(138, 28, 28, 0.1); }
        .security-alert h2 { color: var(--secondary-red); border-color: var(--secondary-red); }
        
        .guide-img { max-width: 100%; height: auto; border: 1px solid var(--primary-gold); border-radius: 4px; margin: 20px 0; display: block; }
        .center-img { margin-left: auto; margin-right: auto; }

        .bot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 20px; }
        .bot-card { background: #252525; padding: 20px; border-radius: 4px; border: 1px solid #444; }
        .bot-card h3 { color: var(--primary-gold); margin-top: 0; }
        .status-badge { display: inline-block; padding: 3px 8px; border-radius: 3px; font-size: 0.8rem; font-weight: bold; margin-bottom: 10px; }
        .status-ok { background: #2e7d32; color: white; }
        .status-warn { background: #f57f17; color: black; }

        .highlight-box { background: #2a2a2a; padding: 15px; border-left: 4px solid var(--primary-gold); margin: 20px 0; font-style: italic; }

        footer { text-align:center; padding: 40px; color: #777; background: #080808; border-top: 1px solid #222; }
        .footer-links a { color: #aaa; text-decoration: none; margin: 0 10px; font-size: 0.9rem; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary-gold); }

        @media (max-width: 768px) {
            .nav-content { flex-direction: column; }
            .nav-links { margin-top: 15px; flex-wrap: wrap; justify-content: center; }
            .nav-links a { margin: 5px 10px; }
        }
    </style>
</head>
<body>