:root {
            --spartan-green: #0a3711;
            --unsc-blue: #1a3d5f;
            --banished-red: #8b1a1a;
            --cortana-purple: #6a0dad;
            --ring-gold: #d4af37;
            --text-light: #e0e0e0;
            --bg-dark: #0f1419;
            --bg-card: #1a1f26;
            --accent-gray: #2a323d;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--ring-gold);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--ring-gold);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, rgba(10, 55, 17, 0.95), rgba(26, 61, 95, 0.9));
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid var(--ring-gold);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--spartan-green), var(--ring-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(212, 175, 55, 0.2);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid var(--accent-gray);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--ring-gold);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border-left: 5px solid var(--banished-red);
        }
        h1 {
            color: var(--ring-gold);
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            border-bottom: 2px solid var(--unsc-blue);
            padding-bottom: 1rem;
        }
        h2 {
            color: var(--cortana-purple);
            font-size: 2.2rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-left: 10px;
            border-left: 4px solid var(--cortana-purple);
        }
        h3 {
            color: #4db8ff;
            font-size: 1.7rem;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h4 {
            color: var(--text-light);
            font-size: 1.3rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            font-style: italic;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            background: rgba(26, 61, 95, 0.2);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border: 1px solid var(--unsc-blue);
        }
        .key-point {
            background: linear-gradient(to right, rgba(139, 26, 26, 0.1), transparent);
            padding: 1rem;
            border-left: 4px solid var(--banished-red);
            margin: 1.5rem 0;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px dashed var(--ring-gold);
        }
        .img-container {
            text-align: center;
            margin: 2.5rem 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 3px solid var(--accent-gray);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            transition: transform 0.5s ease;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-card {
            background: var(--accent-gray);
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .link-card:hover {
            background: var(--unsc-blue);
            transform: translateY(-5px);
        }
        .module {
            background: var(--accent-gray);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2.5rem 0;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--ring-gold);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border-radius: 5px;
            border: 1px solid #444;
            background-color: #2a323d;
            color: var(--text-light);
            font-size: 1rem;
        }
        button {
            background: linear-gradient(to right, var(--spartan-green), var(--unsc-blue));
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        button:hover {
            background: linear-gradient(to right, var(--unsc-blue), var(--cortana-purple));
            box-shadow: 0 0 15px rgba(106, 13, 173, 0.5);
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #555;
            margin: 0.5rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: var(--ring-gold);
        }
        .update-time {
            text-align: right;
            font-size: 0.9rem;
            color: #888;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid var(--accent-gray);
        }
        footer {
            background-color: #0a0c0f;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid var(--banished-red);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--ring-gold);
            margin-bottom: 1.2rem;
            border-bottom: 1px solid #333;
            padding-bottom: 0.5rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            list-style: none;
        }
        .friend-links a {
            display: block;
            padding: 0.5rem 1rem;
            background: #1a1f26;
            border-radius: 4px;
        }
        .friend-links a:hover {
            background: var(--unsc-blue);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: var(--bg-card);
                width: 70%;
                height: calc(100vh - 70px);
                padding: 2rem;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            .hamburger {
                display: block;
            }
        }
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            article { padding: 1.5rem; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .header-container { flex-direction: column; gap: 1rem; }
            .my-logo { font-size: 1.8rem; }
        }
