:root {
            --primary: #b71c1c;
            --secondary: #1b5e20;
            --gold: #f9a825;
            --dark: #1a1a2e;
            --light: #fdf6ec;
            --gray: #f5f0eb;
            --text: #2d2d2d;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: var(--light);
            color: var(--text);
            line-height: 1.8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, #d32f2f 50%, #b71c1c 100%);
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
        }
        .my-logo span {
            color: var(--gold);
        }
        .my-logo small {
            font-size: .8rem;
            display: block;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, .8);
        }
        nav.main-nav {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        nav.main-nav a {
            color: #fff;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 30px;
            background: rgba(255, 255, 255, .12);
            font-size: .85rem;
            font-weight: 600;
            transition: all .3s ease;
        }
        nav.main-nav a:hover {
            background: var(--gold);
            color: var(--dark);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #fff;
            border-radius: 8px;
            padding: 6px 10px;
            cursor: pointer;
            font-size: 1.2rem;
            color: #fff;
        }
        .breadcrumb {
            background: var(--gray);
            padding: 12px 0;
            border-bottom: 1px solid #e8e0d8;
            font-size: .85rem;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            margin: 0 8px;
            color: #999;
        }
        .breadcrumb .current {
            color: var(--secondary);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, var(--secondary) 0%, #2e7d32 100%);
            color: #fff;
            padding: 60px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "❄";
            font-size: 180px;
            position: absolute;
            top: -30px;
            left: 10%;
            opacity: .1;
            animation: float 6s ease-in-out infinite;
        }
        .hero::after {
            content: "🎄";
            font-size: 150px;
            position: absolute;
            bottom: -20px;
            right: 8%;
            opacity: .1;
            animation: float 8s ease-in-out infinite reverse;
        }
        @keyframes float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 15px;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, .3);
            position: relative;
            z-index: 1;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: .95;
            position: relative;
            z-index: 1;
        }
        .hero .meta {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            font-size: .9rem;
            position: relative;
            z-index: 1;
        }
        .hero .meta i {
            margin-right: 5px;
            color: var(--gold);
        }
        .search-bar {
            background: #fff;
            padding: 25px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
        }
        .search-bar form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid var(--secondary);
            background: #fff;
        }
        .search-bar input[type="text"] {
            flex: 1;
            border: none;
            padding: 14px 20px;
            font-size: 1rem;
            outline: none;
            background: transparent;
        }
        .search-bar button {
            background: var(--secondary);
            color: #fff;
            border: none;
            padding: 0 25px;
            cursor: pointer;
            font-size: 1rem;
            transition: background .3s;
        }
        .search-bar button:hover {
            background: #2e7d32;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0;
        }
        article {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, .06);
            font-size: 1.05rem;
        }
        article h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--gold);
            position: relative;
        }
        article h2:first-child {
            margin-top: 0;
        }
        article h3 {
            font-size: 1.3rem;
            color: var(--secondary);
            margin: 30px 0 12px;
        }
        article h4 {
            font-size: 1.1rem;
            color: #333;
            margin: 20px 0 10px;
            font-weight: 700;
        }
        article p {
            margin-bottom: 16px;
        }
        article ul,
        article ol {
            margin: 0 0 20px 30px;
        }
        article li {
            margin-bottom: 8px;
        }
        article img {
            max-width: 100%;
            border-radius: 12px;
            margin: 25px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
        }
        .feature-box {
            background: var(--gray);
            border-left: 4px solid var(--gold);
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .feature-box h4 {
            color: var(--primary);
            margin-top: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 25px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            font-size: .95rem;
        }
        table th {
            background: var(--secondary);
            color: #fff;
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 12px 15px;
            border-bottom: 1px solid #f0ece8;
        }
        table tr:hover td {
            background: #faf7f4;
        }
        .rating-box {
            background: linear-gradient(135deg, #fffdf5, #fff8e8);
            border: 2px solid var(--gold);
            border-radius: 16px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
        }
        .rating-box .stars {
            font-size: 1.8rem;
            color: var(--gold);
        }
        .rating-box form {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        .rating-box select {
            padding: 10px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            font-size: 1rem;
        }
        .rating-box button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all .3s;
        }
        .rating-box button:hover {
            background: #d32f2f;
            transform: scale(1.05);
        }
        .comment-section {
            background: var(--gray);
            border-radius: 16px;
            padding: 30px;
            margin: 30px 0;
        }
        .comment-section h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        .comment-section form textarea {
            width: 100%;
            height: 120px;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 15px;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 15px;
        }
        .comment-section form input[type="text"],
        .comment-section form input[type="email"] {
            width: 48%;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 12px;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .comment-section .flex-fields {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .comment-section button {
            background: var(--secondary);
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all .3s;
        }
        .comment-section button:hover {
            background: #2e7d32;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 14px;
            padding: 25px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, .06);
            margin-bottom: 25px;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            color: var(--primary);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--gold);
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            margin-bottom: 8px;
        }
        .sidebar-card ul li a {
            color: var(--text);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px;
            border-radius: 6px;
            transition: all .2s;
        }
        .sidebar-card ul li a:hover {
            color: var(--primary);
            background: var(--gray);
            padding-left: 12px;
        }
        .sidebar-card .link-list a {
            color: var(--secondary);
            font-size: .9rem;
            display: block;
            padding: 5px 0;
            border-bottom: 1px solid #f0ece8;
            text-decoration: none;
        }
        .sidebar-card .link-list a:hover {
            color: var(--primary);
            padding-left: 5px;
            border-bottom-color: var(--primary);
        }
        .last-updated {
            text-align: center;
            color: #888;
            font-size: .85rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e8e0d8;
        }
        footer {
            background: var(--dark);
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        footer h4 {
            color: var(--gold);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        footer a {
            color: #aaa;
            text-decoration: none;
            display: block;
            padding: 3px 0;
            font-size: .9rem;
        }
        footer a:hover {
            color: #fff;
        }
        .friend-link {
            background: #2a2a3e;
            border-radius: 10px;
            padding: 15px;
            margin-top: 20px;
        }
        .friend-link span {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 8px;
            display: block;
        }
        .friend-link a {
            display: inline-block;
            margin: 5px 10px 5px 0;
            padding: 5px 12px;
            background: rgba(255, 255, 255, .08);
            border-radius: 15px;
            color: #ccc;
            font-size: .85rem;
            transition: all .3s;
        }
        .friend-link a:hover {
            background: var(--primary);
            color: #fff;
        }
        .copyright {
            text-align: center;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, .1);
            margin-top: 30px;
            color: #888;
            font-size: .85rem;
        }
        @media(max-width:992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media(max-width:768px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 15px;
                right: 15px;
            }
            nav.main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(0, 0, 0, .3);
                border-radius: 10px;
                padding: 10px;
            }
            nav.main-nav.show {
                display: flex;
            }
            nav.main-nav a {
                display: block;
                text-align: center;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            article {
                padding: 20px;
            }
            .comment-section form input[type="text"],
            .comment-section form input[type="email"] {
                width: 100%;
            }
        }
        @media(max-width:480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero .meta {
                flex-direction: column;
                gap: 8px;
            }
            article h2 {
                font-size: 1.4rem;
            }
            article h3 {
                font-size: 1.15rem;
            }
        }
        .fa-snowflake {
            color: #fff;
            margin: 0 3px;
        }
        .highlight {
            background: linear-gradient(transparent 60%, #ffe082 60%);
            font-weight: 600;
        }
        .callout {
            background: #fce4ec;
            border-left: 4px solid var(--primary);
            padding: 15px 20px;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
        }
        .callout i {
            color: var(--primary);
            margin-right: 10px;
        }
