        :root {
            --primary: #1a472a;
            --secondary: #c5a028;
            --accent: #2d5aa0;
            --dark: #0d1b2a;
            --light: #f8f9fa;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        * {
            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: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--dark);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: var(--transition);
            background: linear-gradient(90deg, var(--secondary), #e6c158);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .breadcrumb {
            display: flex;
            list-style: none;
            font-size: 0.9rem;
            margin-top: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: inline;
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--secondary);
        }
        .breadcrumb a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .nav-toggle {
            display: none;
        }
        .nav-toggle-label {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 1001;
        }
        .nav-toggle-label span {
            height: 3px;
            width: 100%;
            background: var(--secondary);
            border-radius: 3px;
            transition: var(--transition);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .main-nav a:hover {
            background: rgba(197, 160, 40, 0.2);
            color: var(--secondary);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .main-nav a:hover::after {
            width: 80%;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        h1, h2, h3, h4 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 0.8rem;
            margin-bottom: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            color: var(--accent);
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: #2a5934;
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 1.5rem;
            color: var(--gray);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .meta {
            color: var(--gray);
            font-style: italic;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #ddd;
        }
        .highlight {
            background: #fff3cd;
            padding: 1.5rem;
            border-left: 4px solid var(--secondary);
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        strong {
            color: var(--primary);
            font-weight: 700;
        }
        figure {
            margin: 2.5rem 0;
            text-align: center;
        }
        figure img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            transition: var(--transition);
            border: 3px solid var(--secondary);
        }
        figure img:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.2);
        }
        figcaption {
            font-style: italic;
            color: var(--gray);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .content-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted var(--accent);
            padding-bottom: 1px;
            transition: var(--transition);
        }
        .content-link:hover {
            color: var(--primary);
            border-bottom-style: solid;
            background: rgba(45, 90, 160, 0.05);
        }
        .search-section, .comments-section, .rating-section {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #dee2e6;
        }
        form {
            display: grid;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        input[type="text"],
        input[type="email"],
        textarea,
        select {
            padding: 0.8rem 1rem;
            border: 2px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(45, 90, 160, 0.25);
        }
        button {
            background: linear-gradient(135deg, var(--primary), #2d5aa0);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(26, 71, 42, 0.3);
        }
        .rating-stars {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label,
        .rating-stars input:checked ~ label {
            color: #ffc107;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .friend-links {
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 8px;
        }
        .friend-links h3 {
            color: var(--secondary);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        friend-link a::before {
            content: "🔗";
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: var(--secondary);
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .header-container {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            article {
                padding: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle-label {
                display: flex;
            }
            .main-nav ul {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 280px;
                background: var(--dark);
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
                z-index: 1000;
            }
            .main-nav a {
                padding: 1rem;
                border-radius: 6px;
                margin-bottom: 0.5rem;
            }
            .nav-toggle:checked ~ .main-nav ul {
                right: 0;
            }
            .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
                opacity: 0;
            }
            .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            .breadcrumb {
                margin-top: 1rem;
                width: 100%;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article {
                padding: 1.5rem;
            }
            button {
                width: 100%;
            }
        }
        .hover-lift {
            transition: var(--transition);
        }
        .hover-lift:hover {
            transform: translateY(-5px);
        }
        .schema-data {
            display: none;
        }
