        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { color: #ffcc00; }
        .section-padding { padding: 60px 0; }
        .mb-2 { margin-bottom: 20px; }
        .mb-3 { margin-bottom: 30px; }
        .site-header {
            background: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: #ffcc00;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }
        .my-logo a:hover { color: #ffffff; }
        .breadcrumb {
            background: #1a1a2e;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #ffcc00;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav a {
            color: #f0f0f0;
            text-decoration: none;
            padding: 10px 18px;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: #ffcc00;
            color: #0a0a1a;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .hero {
            background: radial-gradient(circle at center, #2a2a4a 0%, #0a0a1a 100%);
            padding: 80px 0;
            text-align: center;
            border-bottom: 3px solid #333355;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #ffcc00;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccccdd;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 16px 25px;
            border-radius: 50px;
            border: 2px solid #444466;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-box input:focus {
            border-color: #ffcc00;
            box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
        }
        .search-box button {
            position: absolute;
            right: 8px;
            top: 8px;
            background: #ffcc00;
            color: #0a0a1a;
            border: none;
            border-radius: 50%;
            width: 46px;
            height: 46px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        .search-box button:hover { transform: scale(1.05); }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border-left: 5px solid #ffcc00;
        }
        article h2, article h3, article h4 {
            color: #ffcc00;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        article h2 { font-size: 2.2rem; border-bottom: 2px solid #333355; padding-bottom: 10px; }
        article h3 { font-size: 1.8rem; }
        article h4 { font-size: 1.4rem; }
        article p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #dddddd;
            text-align: justify;
            line-height: 1.8;
        }
        article a {
            color: #66ccff;
            text-decoration: none;
            border-bottom: 1px dotted #66ccff;
            transition: color 0.3s;
        }
        article a:hover {
            color: #ffcc00;
            border-bottom-style: solid;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #444466;
            transition: transform 0.5s;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .update-time {
            background: #1a2a3a;
            padding: 15px;
            border-radius: 8px;
            margin: 30px 0;
            font-style: italic;
            color: #aaccff;
        }
        aside {
            background: rgba(20, 20, 40, 0.9);
            border-radius: 12px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        aside h3 {
            color: #ffcc00;
            border-bottom: 1px solid #444466;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .rating-widget, .comment-widget {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #444466;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star.active, .star:hover { color: #ffcc00; }
        .rating-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border-radius: 6px;
            border: 1px solid #444466;
            background: rgba(255, 255, 255, 0.05);
            color: white;
        }
        .btn {
            background: linear-gradient(to right, #ffcc00, #ffaa00);
            color: #0a0a1a;
            border: none;
            padding: 14px 24px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            width: 100%;
        }
        .btn:hover {
            background: linear-gradient(to right, #ffdd44, #ffcc00);
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
        }
        .site-footer {
            background: #0a0a1a;
            border-top: 2px solid #ffcc00;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a {
            color: #ccccdd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: #ffcc00; }
        friend-link {
            display: block;
            background: #1a1a2e;
            padding: 15px;
            border-radius: 8px;
            margin: 10px 0;
            border-left: 4px solid #ffcc00;
        }
        friend-link a {
            color: #66ccff;
            font-weight: bold;
            text-decoration: none;
        }
        friend-link a:hover { text-decoration: underline; }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333355;
            color: #8888aa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            article { padding: 25px; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 26, 0.98);
                padding: 20px;
                border-top: 1px solid #333;
            }
            .main-nav.active ul { display: flex; }
            .hamburger { display: block; }
            .header-content { position: relative; }
        }
