* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f2eb;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffcf8;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 28px 28px 0 0;
            overflow: hidden;
            padding: 0 24px 24px;
        }
        a {
            color: #b3412a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2a1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            display: block;
            margin: 24px 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        header {
            padding: 20px 0 8px;
            border-bottom: 2px solid #e8e0d6;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #1e1e2a;
            background: linear-gradient(135deg, #b3412a, #d45c3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            font-family: 'Segoe UI', sans-serif;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.6rem;
            font-weight: 400;
            -webkit-text-fill-color: #6b5e54;
            color: #6b5e54;
            display: block;
            letter-spacing: 0.3px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e1e2a;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0e8e0;
        }
        nav#main-nav ul {
            display: flex;
            gap: 8px 20px;
            list-style: none;
            flex-wrap: wrap;
            align-items: center;
        }
        nav#main-nav ul li a {
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 40px;
            font-size: 0.95rem;
            color: #2d2d3a;
            transition: background 0.2s, color 0.2s;
        }
        nav#main-nav ul li a:hover {
            background: #b3412a14;
            color: #b3412a;
            text-decoration: none;
        }
        .nav-active a {
            background: #b3412a;
            color: #fff !important;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.9rem;
            color: #6b5e54;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            width: 100%;
        }
        .breadcrumb a {
            color: #6b5e54;
        }
        .breadcrumb a:hover {
            color: #b3412a;
        }
        .breadcrumb span {
            color: #b3412a;
            font-weight: 500;
        }
        main {
            padding: 20px 0 40px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 16px 0 12px;
            color: #1a1a2a;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #b3412a;
            margin-right: 10px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #e8e0d6;
            color: #1e1e2a;
        }
        h2 i {
            color: #b3412a;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #2d2d3a;
        }
        h3 i {
            color: #d45c3a;
            margin-right: 8px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: #3d3d4a;
        }
        p {
            margin-bottom: 16px;
            font-size: 1.05rem;
            color: #2a2a38;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8a7e74;
            background: #f5f0ea;
            padding: 6px 16px;
            border-radius: 40px;
            display: inline-block;
            margin: 4px 0 16px;
        }
        .highlight-box {
            background: #fcf6f0;
            border-left: 5px solid #b3412a;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 24px 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin: 24px 0;
        }
        .card {
            background: #faf6f0;
            border-radius: 20px;
            padding: 20px;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #efe8e0;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        }
        .card h4 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 24px 0;
            max-width: 540px;
            background: #f5f0ea;
            border-radius: 60px;
            padding: 4px 4px 4px 20px;
            border: 1px solid #e0d6cc;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .search-form:focus-within {
            border-color: #b3412a;
            box-shadow: 0 0 0 3px #b3412a20;
        }
        .search-form input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 14px 0;
            font-size: 1rem;
            outline: none;
            color: #1e1e2a;
        }
        .search-form button {
            background: #b3412a;
            color: #fff;
            border: none;
            border-radius: 60px;
            padding: 12px 28px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #8f2f1e;
        }
        .search-form button:active {
            transform: scale(0.97);
        }
        .interaction-area {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin: 48px 0 32px;
            padding: 28px 0;
            border-top: 2px solid #e8e0d6;
            border-bottom: 2px solid #e8e0d6;
        }
        .comment-section,
        .rating-section {
            flex: 1 1 280px;
            min-width: 220px;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .comment-section textarea,
        .rating-section select,
        .comment-section input {
            padding: 12px 16px;
            border-radius: 16px;
            border: 1px solid #ddd6cc;
            font-size: 1rem;
            background: #faf6f0;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-section textarea:focus,
        .rating-section select:focus,
        .comment-section input:focus {
            border-color: #b3412a;
            outline: none;
            box-shadow: 0 0 0 3px #b3412a18;
        }
        .comment-section textarea {
            min-height: 90px;
            resize: vertical;
        }
        .btn-submit {
            background: #b3412a;
            color: #fff;
            border: none;
            border-radius: 60px;
            padding: 12px 28px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background: #8f2f1e;
        }
        .btn-submit:active {
            transform: scale(0.97);
        }
        friend-link {
            display: block;
            padding: 24px 0 12px;
            border-top: 2px solid #e8e0d6;
            margin-top: 32px;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 24px;
            padding: 8px 0;
        }
        friend-link ul li a {
            color: #6b5e54;
            font-weight: 500;
        }
        friend-link ul li a:hover {
            color: #b3412a;
        }
        footer {
            padding: 20px 0 32px;
            color: #6b5e54;
            font-size: 0.9rem;
            border-top: 1px solid #e8e0d6;
            margin-top: 8px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
        }
        footer .copyright {
            font-weight: 400;
        }
        ul.bullet-list {
            padding-left: 24px;
            margin-bottom: 20px;
        }
        ul.bullet-list li {
            margin-bottom: 6px;
            font-size: 1.04rem;
        }
        @media (max-width: 900px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 16px 16px;
                border-radius: 16px 16px 0 0;
            }
        }
        @media (max-width: 700px) {
            .hamburger {
                display: block;
            }
            nav#main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0 8px;
                gap: 4px;
            }
            nav#main-nav ul.show {
                display: flex;
            }
            nav#main-nav ul li a {
                display: block;
                padding: 12px 16px;
                border-radius: 12px;
            }
            .grid-3 {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.7rem;
            }
            .search-form {
                flex-wrap: wrap;
                border-radius: 24px;
                padding: 8px 8px 8px 16px;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
                padding: 14px;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .interaction-area {
                flex-direction: column;
                gap: 24px;
            }
            header {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 0 12px 12px;
                border-radius: 12px 12px 0 0;
            }
            h1 {
                font-size: 1.4rem;
            }
            h2 {
                font-size: 1.25rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            p {
                font-size: 0.98rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .info-table th {
            background: #b3412a;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .info-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #efe8e0;
            background: #faf6f0;
        }
        .info-table tr:last-child td {
            border-bottom: none;
        }
        .player-quote {
            background: #f0e8e0;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 24px 0;
            font-style: italic;
            position: relative;
        }
        .player-quote::before {
            content: '\201C';
            font-size: 3rem;
            color: #b3412a;
            position: absolute;
            top: 8px;
            left: 16px;
            opacity: 0.3;
        }
        .player-quote p {
            margin-bottom: 4px;
            font-size: 1.1rem;
        }
        .player-quote .author {
            font-weight: 600;
            font-style: normal;
            color: #b3412a;
            margin-top: 8px;
        }
