        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #f0e6d2;
            background: linear-gradient(135deg, #0a2a3e 0%, #1a1a2e 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4, h5, .logo {
            font-family: 'Cinzel', 'Times New Roman', serif;
            font-weight: 700;
            color: #f5c542;
            margin-bottom: 1.2rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        }
        h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1.2; margin-top: 2rem; }
        h2 { font-size: clamp(2rem, 4vw, 2.8rem); border-bottom: 3px solid #f5c542; padding-bottom: 0.5rem; }
        h3 { font-size: clamp(1.6rem, 3vw, 2rem); color: #a3d2ff; }
        h4 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); color: #ffb347; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #5ac8fa; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #f5c542; text-decoration: underline; }
        strong { color: #ffb347; }
        em { color: #a3d2ff; }
        blockquote {
            border-left: 5px solid #f5c542;
            padding-left: 2rem;
            margin: 2rem 0;
            font-style: italic;
            background: rgba(245, 197, 66, 0.05);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 1024px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        header {
            background: rgba(10, 42, 62, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #f5c542;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            color: #f5c542;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .logo a:hover { text-decoration: none; color: #ffb347; }
        .logo i { font-size: 2rem; }
        .nav-desktop {
            display: flex;
            gap: 2.5rem;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f5c542;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #f5c542;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(10, 42, 62, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 2rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            border-top: 1px solid #f5c542;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(245, 197, 66, 0.2);
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #a3d2ff;
        }
        .breadcrumb a { color: #a3d2ff; }
        .breadcrumb span { color: #f5c542; }
        main { flex: 1; }
        .article-hero {
            text-align: center;
            padding: 3rem 0;
            background: radial-gradient(circle at center, rgba(245, 197, 66, 0.1) 0%, transparent 70%);
            margin-bottom: 3rem;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin-bottom: 3rem;
            border: 1px solid rgba(245, 197, 66, 0.3);
        }
        .meta-item { display: flex; align-items: center; gap: 0.5rem; }
        .meta-item i { color: #f5c542; }
        .article-content { padding-right: 2rem; }
        @media (max-width: 768px) {
            .article-content { padding-right: 0; }
        }
        .sidebar {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(245, 197, 66, 0.3);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 3rem;
        }
        .widget-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f5c542;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
        input, textarea, select {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(245, 197, 66, 0.5);
            border-radius: 8px;
            color: #f0e6d2;
            font-size: 1rem;
            transition: all 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #f5c542;
            box-shadow: 0 0 10px rgba(245, 197, 66, 0.5);
        }
        button, .btn {
            padding: 1rem 2rem;
            background: linear-gradient(to right, #f5c542, #ffb347);
            border: none;
            border-radius: 8px;
            color: #0a2a3e;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(245, 197, 66, 0.4);
            text-decoration: none;
            color: #0a2a3e;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            cursor: pointer;
            justify-content: center;
            margin: 1rem 0;
        }
        .star-rating .star { color: #555; transition: color 0.2s; }
        .star-rating .star:hover,
        .star-rating .star.active { color: #f5c542; }
        .featured-image {
            width: 100%;
            border-radius: 15px;
            border: 3px solid #f5c542;
            margin: 2.5rem auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s;
        }
        .featured-image:hover { transform: scale(1.02); }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #a3d2ff;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .link-list {
            list-style: none;
            padding-left: 0;
        }
        .link-list li {
            padding: 1rem;
            margin-bottom: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid #f5c542;
            border-radius: 0 8px 8px 0;
            transition: all 0.3s;
        }
        .link-list li:hover {
            background: rgba(245, 197, 66, 0.1);
            transform: translateX(5px);
        }
        .link-list a { display: block; font-weight: 600; }
        footer {
            background: rgba(10, 42, 62, 0.95);
            border-top: 2px solid #f5c542;
            margin-top: 5rem;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h4 { margin-bottom: 1.5rem; }
        friend-link {
            display: inline-block;
            background: rgba(245, 197, 66, 0.1);
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 30px;
            border: 1px solid rgba(245, 197, 66, 0.3);
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(245, 197, 66, 0.2);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #a3d2ff;
        }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .highlight {
            background: rgba(245, 197, 66, 0.15);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #f5c542;
            margin: 2rem 0;
        }
        .emoji { font-size: 1.3rem; margin-right: 0.5rem; }
        @media (max-width: 768px) {
            .container { padding: 0 1rem; }
            .header-inner, .footer-content { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
            .article-meta { flex-direction: column; align-items: flex-start; }
            h1 { font-size: 2.5rem; }
        }
