* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f9f5f0;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0;
        }
        a {
            color: #b07d5e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8c5e44;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .site-header {
            background: linear-gradient(145deg, #fff9f3 0%, #f3e9e0 100%);
            border-bottom: 2px solid #e6d5c4;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #4f3a2c;
            text-shadow: 1px 1px 0 rgba(255, 215, 175, 0.5);
            transition: transform 0.2s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #3d2b1f;
        }
        .my-logo small {
            font-size: 0.55rem;
            font-weight: 300;
            display: block;
            color: #8a7a6a;
            letter-spacing: 1px;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #4f3a2c;
            background: transparent;
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            background: #e6d5c4;
            border-color: #cbb5a0;
            text-decoration: none;
            color: #2d1f14;
        }
        .main-nav .nav-cta {
            background: #b07d5e;
            color: #fff;
            border-color: #b07d5e;
        }
        .main-nav .nav-cta:hover {
            background: #8c5e44;
            border-color: #8c5e44;
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #4f3a2c;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e6d5c4;
        }
        .hamburger:focus-visible {
            outline: 2px solid #b07d5e;
            outline-offset: 2px;
        }
        .breadcrumb {
            padding: 14px 0 6px 0;
            font-size: 0.85rem;
            color: #7a6a5a;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb a {
            color: #7a6a5a;
        }
        .breadcrumb a:hover {
            color: #b07d5e;
            text-decoration: none;
        }
        .breadcrumb span {
            color: #b07d5e;
            font-weight: 500;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0 60px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
            background: #fffcf8;
            border-radius: 20px;
            padding: 24px 20px;
            border: 1px solid #e6d5c4;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        }
        .sidebar h3 {
            font-size: 1.1rem;
            color: #4f3a2c;
            border-bottom: 2px solid #e6d5c4;
            padding-bottom: 10px;
            margin-bottom: 16px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            font-weight: 500;
            color: #5a4a3a;
        }
        .sidebar li a:hover {
            color: #b07d5e;
            text-decoration: none;
        }
        .sidebar li a i {
            width: 20px;
            color: #b07d5e;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #2d1f14;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #3d2b1f;
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #e6d5c4;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #4f3a2c;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #5a4a3a;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #3d342c;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #5a4a3a;
            line-height: 1.8;
        }
        .highlight-box {
            background: #f3e9e0;
            border-left: 6px solid #b07d5e;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #e6d5c4;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 16/9;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #5a4a3a;
            background: #fffcf8;
            border-top: 1px solid #e6d5c4;
        }
        .search-section {
            background: #fffcf8;
            border: 1px solid #e6d5c4;
            border-radius: 20px;
            padding: 28px 24px;
            margin: 32px 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e6d5c4;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #b07d5e;
        }
        .search-form button {
            padding: 14px 32px;
            background: #b07d5e;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.1s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #8c5e44;
            transform: translateY(-1px);
        }
        .search-form button:active {
            transform: translateY(0);
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        .comment-box,
        .rating-box {
            background: #fffcf8;
            border: 1px solid #e6d5c4;
            border-radius: 20px;
            padding: 24px 22px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e6d5c4;
            border-radius: 14px;
            font-size: 1rem;
            background: #fff;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border-color 0.2s;
            outline: none;
        }
        .comment-box textarea:focus {
            border-color: #b07d5e;
        }
        .comment-box input,
        .rating-box input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e6d5c4;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border-color 0.2s;
        }
        .comment-box input:focus,
        .rating-box input:focus {
            border-color: #b07d5e;
        }
        .comment-box .form-group,
        .rating-box .form-group {
            margin-bottom: 12px;
        }
        .comment-box button,
        .rating-box button {
            padding: 12px 28px;
            background: #b07d5e;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.1s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #8c5e44;
            transform: translateY(-1px);
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            color: #e6d5c4;
            cursor: pointer;
            margin: 8px 0 12px;
        }
        .rating-stars i {
            transition: color 0.15s ease, transform 0.1s ease;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #e8b86d;
            transform: scale(1.05);
        }
        .rating-stars i.fa-star {
            color: #e8b86d;
        }
        .site-footer {
            background: #2d1f14;
            color: #d9cdc0;
            padding: 48px 0 32px;
            margin-top: 60px;
            border-top: 4px solid #b07d5e;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .site-footer h4 {
            color: #f3e9e0;
            font-size: 1.1rem;
            margin-bottom: 16px;
            border-bottom: 1px solid #4f3a2c;
            padding-bottom: 8px;
        }
        .site-footer a {
            color: #d9cdc0;
        }
        .site-footer a:hover {
            color: #e8b86d;
            text-decoration: none;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links li a {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        friend-link {
            display: block;
            margin-top: 12px;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #e8b86d;
            font-weight: 500;
        }
        .copyright {
            border-top: 1px solid #4f3a2c;
            padding-top: 24px;
            margin-top: 24px;
            text-align: center;
            font-size: 0.9rem;
            color: #a09080;
        }
        .copyright strong {
            color: #d9cdc0;
        }
        .last-update {
            display: inline-block;
            background: #f3e9e0;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #5a4a3a;
            margin-bottom: 16px;
        }
        .last-update i {
            margin-right: 6px;
            color: #b07d5e;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: -1;
                margin-bottom: 24px;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #fffcf8;
                padding: 16px 12px;
                border-radius: 16px;
                border: 1px solid #e6d5c4;
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                border-radius: 10px;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .featured-image img {
                aspect-ratio: 4/3;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            .lead {
                font-size: 1.05rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-center {
            text-align: center;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .gap-8 {
            gap: 8px;
        }
        .gap-12 {
            gap: 12px;
        }
        .items-center {
            align-items: center;
        }
        html {
            scroll-behavior: smooth;
        }
        :focus-visible {
            outline: 2px solid #b07d5e;
            outline-offset: 2px;
        }
        ::selection {
            background: #e6d5c4;
            color: #2d1f14;
        }
