* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: linear-gradient(145deg, #f9f5f0 0%, #efe7de 100%);
            color: #2d2a26;
            line-height: 1.7;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #1a1f2e;
            color: #fff;
            padding: 18px 0;
            border-bottom: 6px solid #e53e3e;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
        }
        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 1px;
            text-decoration: none;
            color: #fff;
            background: linear-gradient(45deg, #e53e3e, #f9d423);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .navbar ul {
            display: flex;
            gap: 22px;
            list-style: none;
            flex-wrap: wrap;
        }
        .navbar ul li a {
            color: #ddd;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 30px;
            transition: all .2s;
        }
        .navbar ul li a:hover {
            background: #e53e3e;
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            background: none;
            border: 0;
            color: #fff;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: .95rem;
        }
        .breadcrumb a {
            color: #b33;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-area {
            display: flex;
            justify-content: flex-end;
            margin: 20px 0;
        }
        .search-form {
            display: flex;
            gap: 10px;
            width: 100%;
            max-width: 400px;
            margin-left: auto;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border-radius: 40px;
            border: 2px solid #e53e3e;
            font-size: 1rem;
            background: #fff;
        }
        .search-form button {
            background: #e53e3e;
            color: white;
            border: 0;
            border-radius: 40px;
            padding: 0 20px;
            font-weight: bold;
            cursor: pointer;
            transition: .2s;
        }
        .search-form button:hover {
            background: #b02a2a;
        }
        .featured-card {
            background: #fff;
            border-radius: 24px;
            padding: 30px;
            margin: 30px 0 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
            border-left: 10px solid #e53e3e;
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            font-weight: 800;
            color: #1a1f2e;
            margin-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: #1e2537;
            border-bottom: 3px solid #e53e3e;
            display: inline-block;
            padding-bottom: 4px;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 600;
            margin: 30px 0 12px;
            color: #2d2a26;
        }
        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: #444;
        }
        p {
            margin-bottom: 18px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-box {
            background: #fff;
            padding: 24px 15px;
            border-radius: 18px;
            text-align: center;
            box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
            border-top: 5px solid #e53e3e;
        }
        .stat-box i {
            font-size: 2.2rem;
            color: #e53e3e;
            margin-bottom: 10px;
        }
        .card-img {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 20px;
            margin: 20px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: start;
        }
        .featured-quote {
            background: #f2e9e1;
            border-radius: 30px;
            padding: 30px;
            font-style: italic;
            margin: 30px 0;
            border-left: 8px solid #f9d423;
        }
        .btn {
            display: inline-block;
            background: #e53e3e;
            color: #fff;
            padding: 14px 30px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 600;
            transition: .3s;
        }
        .btn:hover {
            background: #1a1f2e;
        }
        aside {
            background: #fff0e8;
            padding: 25px;
            border-radius: 24px;
            margin: 40px 0;
        }
        friend-link {
            display: block;
            background: #efe0d5;
            padding: 20px;
            border-radius: 20px;
            margin: 20px 0;
            font-weight: 600;
        }
        friend-link a {
            color: #a33327;
            margin-right: 15px;
            text-decoration: none;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .comment-box,
        .score-box {
            background: #fff;
            border-radius: 20px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 16px rgba(0, 0, 0, .05);
        }
        textarea {
            width: 100%;
            padding: 15px;
            border-radius: 16px;
            border: 1px solid #ccc;
            margin-top: 10px;
            font-size: 1rem;
        }
        .comment-list div {
            background: #f5efe9;
            border-radius: 14px;
            padding: 12px 16px;
            margin: 12px 0;
        }
        .score-stars i {
            font-size: 2rem;
            color: #f9d423;
            cursor: pointer;
            transition: .2s;
        }
        .score-stars i:hover {
            transform: scale(1.2);
        }
        .footer-bottom {
            background: #1d1d26;
            color: #aaa;
            padding: 30px 0;
            margin-top: 50px;
            font-size: .9rem;
        }
        .footer-bottom a {
            color: #ddd;
            text-decoration: none;
        }
        .footer-bottom a:hover {
            color: #fff;
        }
        .to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #e53e3e;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: .3s;
            border: 0;
            z-index: 99;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
        }
        .to-top:hover {
            background: #1a1f2e;
        }
        @media (max-width: 768px) {
            .navbar {
                display: none;
                width: 100%;
                background: #1a1f2e;
                border-radius: 20px;
                padding: 20px;
            }
            .navbar.open {
                display: block;
            }
            .navbar ul {
                flex-direction: column;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.1rem;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                max-width: 100%;
            }
        }
