:root {
            --primary-dark: #0e1a40;
            --primary-gold: #c9a347;
            --primary-red: #9a1d2e;
            --neutral-light: #f5f1e6;
            --neutral-mid: #d4cfc3;
            --neutral-dark: #333;
            --accent-blue: #2a4d8f;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        * {
            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: var(--neutral-dark);
            background-color: var(--neutral-light);
            background-image: linear-gradient(to bottom, #0e1a40 0%, #1a2d5f 10%, #f5f1e6 10%);
            background-attachment: fixed;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: var(--transition);
            border-bottom: 1px dotted transparent;
        }
        a:hover {
            color: var(--neutral-light);
            border-bottom-color: var(--primary-gold);
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(14, 26, 64, 0.95);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Palatino Linotype', 'Book Antiqua', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo a {
            color: inherit;
            border-bottom: none;
        }
        .my-logo a:hover {
            color: #fff;
            text-shadow: 0 0 10px #ffcc00;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--neutral-mid);
            font-weight: 600;
            padding: 0.5rem;
            border-radius: var(--border-radius);
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: var(--accent-blue);
            color: white;
            border-bottom: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-gold);
            border-radius: 2px;
            transition: var(--transition);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(255, 255, 255, 0.1);
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: var(--neutral-mid);
        }
        .breadcrumb a {
            color: var(--neutral-mid);
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        article h1 {
            color: var(--primary-dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 1rem;
        }
        article h2 {
            color: var(--primary-red);
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid var(--accent-blue);
        }
        article h3 {
            color: var(--accent-blue);
            margin: 2rem 0 1rem;
        }
        article h4 {
            color: var(--primary-dark);
            margin: 1.5rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article strong {
            color: var(--primary-red);
            font-weight: 700;
        }
        article em {
            color: var(--accent-blue);
            font-style: italic;
        }
        .intro {
            font-size: 1.2rem;
            background: linear-gradient(to right, #f5f1e6, #e8e2d1);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            border-left: 5px solid var(--primary-gold);
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            border: 5px solid var(--primary-gold);
            box-shadow: var(--shadow);
        }
        .highlight-box {
            background: linear-gradient(135deg, #0e1a40, #2a4d8f);
            color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .highlight-box h3 {
            color: var(--primary-gold);
            margin-top: 0;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--neutral-mid);
        }
        .search-form,
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid var(--neutral-mid);
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 3px rgba(201, 163, 71, 0.2);
        }
        button {
            background: linear-gradient(to right, var(--primary-dark), var(--accent-blue));
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        button:hover {
            background: linear-gradient(to right, var(--primary-red), #b32e41);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            direction: rtl;
            justify-content: flex-end;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.5rem;
            color: var(--neutral-mid);
            cursor: pointer;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: var(--primary-gold);
        }
        .site-footer {
            background-color: var(--primary-dark);
            color: var(--neutral-mid);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        friend-link a {
            color: var(--neutral-mid);
        }
        friend-link:hover {
            background-color: var(--accent-blue);
            transform: translateY(-3px);
        }
        friend-link:hover a {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-dark);
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            article {
                padding: 2rem 1.5rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
        .last-updated {
            font-size: 0.9rem;
            color: var(--neutral-mid);
            text-align: right;
            margin-top: 2rem;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
            margin: 2rem 0;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .card-content {
            padding: 1.5rem;
        }
        .tag {
            display: inline-block;
            background-color: var(--primary-red);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
