        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #e9e9e9;
            background-color: #0c0c14;
            background-image: linear-gradient(to bottom, #0c0c14, #1a1a2e);
            font-size: 1.1rem;
        }
        h1, h2, h3, h4 {
            font-family: 'Cinzel', serif;
            color: #f0c75e;
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }
        h1 {
            font-size: 3.5rem;
            text-align: center;
            margin-top: 2rem;
            border-bottom: 4px solid #f0c75e;
            padding-bottom: 1rem;
            letter-spacing: 1.5px;
        }
        h2 {
            font-size: 2.8rem;
            margin-top: 3.5rem;
            border-left: 5px solid #a52a2a;
            padding-left: 1rem;
        }
        h3 {
            font-size: 2.2rem;
            margin-top: 2.8rem;
            color: #b8860b;
        }
        h4 {
            font-size: 1.8rem;
            margin-top: 2.2rem;
            color: #daa520;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            padding: 0 0.5rem;
        }
        a {
            color: #5dade2;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px dotted #5dade2;
        }
        a:hover {
            color: #f0c75e;
            border-bottom: 1px solid #f0c75e;
            text-shadow: 0 0 8px rgba(240, 199, 94, 0.5);
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 1.5rem 0;
            border-bottom: 3px solid #f0c75e;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: #f0c75e;
            text-decoration: none;
            border-bottom: none;
            text-shadow: 2px 2px 5px #000;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            color: #fff;
            text-shadow: 0 0 15px #f0c75e;
        }
        .my-logo span {
            color: #a52a2a;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            background: none;
            border: none;
            color: #f0c75e;
            cursor: pointer;
            padding: 0.5rem;
            transition: transform 0.3s ease;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2.5rem;
        }
        .nav-links a {
            color: #e9e9e9;
            font-weight: 600;
            font-size: 1.2rem;
            border-bottom: 2px solid transparent;
            padding: 0.5rem 0;
        }
        .nav-links a:hover {
            color: #f0c75e;
            border-bottom: 2px solid #f0c75e;
        }
        .breadcrumb {
            padding: 1.5rem 0;
            font-size: 1rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #5dade2;
            border-bottom: none;
        }
        .breadcrumb a:hover {
            color: #f0c75e;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 3rem;
            margin: 3rem 0;
        }
        .article-content {
            background: rgba(26, 26, 46, 0.85);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        aside {
            background: rgba(26, 26, 46, 0.85);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
            align-self: start;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.8rem;
            border-bottom: 2px solid #f0c75e;
            padding-bottom: 0.8rem;
            margin-bottom: 1.5rem;
        }
        .search-form {
            display: flex;
            margin-bottom: 2rem;
        }
        .search-form input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #333;
            border-radius: 8px 0 0 8px;
            background: #1a1a2e;
            color: #e9e9e9;
            font-size: 1.1rem;
        }
        .search-form button {
            background: #f0c75e;
            color: #0c0c14;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #d4af37;
        }
        .comment-form, .rating-form {
            background: rgba(22, 33, 62, 0.9);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 3rem;
            border: 1px solid #444;
        }
        .comment-form h3, .rating-form h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #f0c75e;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #333;
            border-radius: 8px;
            background: #1a1a2e;
            color: #e9e9e9;
            font-size: 1.1rem;
            transition: border 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f0c75e;
            outline: none;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            justify-content: space-between;
            font-size: 2.5rem;
            color: #444;
            cursor: pointer;
            margin-bottom: 1.5rem;
        }
        .stars .star {
            transition: color 0.3s ease, transform 0.2s ease;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #f0c75e;
            transform: scale(1.2);
        }
        .submit-btn {
            background: linear-gradient(to right, #f0c75e, #d4af37);
            color: #0c0c14;
            border: none;
            padding: 1.2rem 2.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s ease;
            display: block;
            width: 100%;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #d4af37, #b8860b);
            box-shadow: 0 0 15px rgba(240, 199, 94, 0.5);
        }
        .article-image {
            width: 100%;
            border-radius: 12px;
            margin: 2.5rem 0;
            border: 3px solid #f0c75e;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .highlight {
            background: linear-gradient(90deg, rgba(240, 199, 94, 0.1), transparent);
            border-left: 5px solid #f0c75e;
            padding: 1.5rem;
            margin: 2.5rem 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            font-size: 1.3rem;
            color: #f8f8f8;
        }
        .bold {
            font-weight: 900;
            color: #f0c75e;
            font-size: 1.2rem;
        }
        .link-list {
            background: rgba(22, 33, 62, 0.9);
            padding: 2rem;
            border-radius: 10px;
            margin: 2.5rem 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
        }
        .link-list li {
            margin-bottom: 0.8rem;
        }
        .link-list a {
            display: block;
            padding: 1rem;
            background: #1a1a2e;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid #333;
        }
        .link-list a:hover {
            background: #252547;
            border-color: #f0c75e;
            transform: translateY(-5px);
        }
        footer {
            background: linear-gradient(135deg, #16213e 0%, #0c0c14 100%);
            padding: 4rem 0 2rem;
            border-top: 3px solid #f0c75e;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h4 {
            font-size: 1.8rem;
            margin-bottom: 1.8rem;
            border-bottom: 2px solid #a52a2a;
            padding-bottom: 0.8rem;
        }
        .footer-section p, .footer-section a {
            color: #aaa;
            margin-bottom: 1rem;
            display: block;
        }
        .footer-section a:hover {
            color: #f0c75e;
        }
        friend-link {
            display: inline-block;
            background: rgba(26, 26, 46, 0.9);
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 8px;
            border: 1px solid #444;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            border-color: #f0c75e;
            background: #252547;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #777;
            font-size: 1rem;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
            .link-list ul {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            nav {
                width: 100%;
                display: none;
                margin-top: 1.5rem;
            }
            .nav-links {
                flex-direction: column;
                width: 100%;
            }
            .nav-links li {
                margin: 0.8rem 0;
                margin-left: 0;
            }
            .nav-links a {
                display: block;
                padding: 1rem;
                background: rgba(26, 26, 46, 0.9);
                border-radius: 8px;
                border: 1px solid #333;
            }
            .nav-links a:hover {
                background: #252547;
            }
            .nav-active {
                display: block;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.3rem;
            }
            h3 {
                font-size: 1.9rem;
            }
            h4 {
                font-size: 1.6rem;
            }
            .article-content, aside {
                padding: 2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .link-list ul {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, aside, .comment-form, .rating-form {
            animation: fadeIn 0.8s ease-out;
        }
