        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #faf8f5;
            color: #1e1e2a;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #7c2d12;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            padding: 1.5rem 0 0.5rem;
            border-bottom: 2px solid #eaddcf;
        }
        .header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #b45309, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(180, 83, 9, 0.15);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #6b4f3a;
            color: #6b4f3a;
            letter-spacing: 0.02em;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4a3a2c;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0e6dc;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 1.2rem;
            list-style: none;
            align-items: center;
        }
        .nav-menu li a {
            font-weight: 600;
            font-size: 0.95rem;
            color: #3d2b1b;
            padding: 0.3rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-menu li a:hover {
            border-bottom-color: #b45309;
            color: #b45309;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            padding: 1rem 0 0.5rem;
            font-size: 0.9rem;
            color: #6b5a4a;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #b45309;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a5c44;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .current {
            color: #1e1e2a;
            font-weight: 600;
        }
        .hero {
            padding: 2.5rem 0 1.5rem;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #1e1e2a;
            margin-bottom: 0.75rem;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #b45309, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero .subtitle {
            font-size: 1.2rem;
            color: #5a4a3a;
            max-width: 720px;
            margin: 0.5rem auto 1.2rem;
        }
        .hero .meta-info {
            font-size: 0.95rem;
            color: #7a6a5a;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
        }
        .hero .meta-info i {
            color: #b45309;
            margin-right: 0.4rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem 2rem;
            padding: 1.5rem 0 3rem;
        }
        .main-article {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 1.5rem;
            align-self: start;
        }
        .sidebar-card {
            background: #fff8f2;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid #eaddcf;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
            color: #3d2b1b;
            border-bottom: 2px solid #eaddcf;
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card ul li {
            padding: 0.35rem 0;
            border-bottom: 1px solid #f0e6dc;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-size: 0.95rem;
            display: block;
            padding: 0.2rem 0;
        }
        .sidebar-card ul li a::before {
            content: "🎯 ";
            font-size: 0.8rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem;
            color: #2d1f12;
            border-left: 5px solid #b45309;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2rem 0 0.75rem;
            color: #3d2b1b;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.5rem 0 0.5rem;
            color: #4a3a2c;
        }
        p {
            margin-bottom: 1.2rem;
            color: #2a2a36;
        }
        .main-article p strong {
            color: #7c2d12;
        }
        .main-article ul,
        .main-article ol {
            margin: 1rem 0 1.5rem 1.8rem;
        }
        .main-article li {
            margin-bottom: 0.5rem;
        }
        .highlight-box {
            background: #fef3e7;
            border-left: 6px solid #d97706;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .image-wrapper {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            background: #f0e6dc;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .image-wrapper figcaption {
            padding: 0.75rem 1.2rem;
            font-size: 0.9rem;
            color: #5a4a3a;
            background: #fff8f2;
            border-top: 1px solid #eaddcf;
            font-style: italic;
        }
        .player-quote {
            background: #fff8f2;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #eaddcf;
            position: relative;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
        }
        .player-quote::before {
            content: "💬";
            font-size: 2rem;
            position: absolute;
            top: -0.8rem;
            left: 1.2rem;
            background: #faf8f5;
            padding: 0 0.4rem;
        }
        .player-quote p {
            font-style: italic;
            font-size: 1.05rem;
        }
        .player-quote .attribution {
            font-weight: 600;
            color: #7c2d12;
            margin-top: 0.5rem;
            font-style: normal;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #fff8f2;
            padding: 1rem 0.8rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #eaddcf;
        }
        .stat-card .number {
            font-size: 1.8rem;
            font-weight: 800;
            color: #b45309;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #5a4a3a;
            margin-top: 0.2rem;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
            padding: 1.5rem 0;
            border-top: 2px solid #eaddcf;
            border-bottom: 2px solid #eaddcf;
        }
        .interaction-card {
            background: #fff8f2;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #eaddcf;
        }
        .interaction-card h4 {
            margin-top: 0;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: #3d2b1b;
        }
        .interaction-card form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .interaction-card input,
        .interaction-card textarea,
        .interaction-card select {
            flex: 1 1 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #d4c5b5;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #fffdfb;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .interaction-card input:focus,
        .interaction-card textarea:focus,
        .interaction-card select:focus {
            border-color: #b45309;
            outline: none;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
        }
        .interaction-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interaction-card .btn {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .interaction-card .btn:hover {
            background: #7c2d12;
            transform: translateY(-1px);
        }
        .interaction-card .btn i {
            font-size: 0.9rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.5rem 0 0.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #d4c5b5;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label::before {
            content: "★";
        }
        .star-rating input:checked~label {
            color: #d97706;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #d97706;
        }
        .site-footer {
            padding: 2rem 0 1.5rem;
            border-top: 2px solid #eaddcf;
            margin-top: 2rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.5rem;
            font-size: 0.95rem;
            padding: 0.8rem 0;
        }
        friend-link a {
            color: #5a4a3a;
            padding: 0.15rem 0.3rem;
        }
        friend-link a:hover {
            color: #b45309;
        }
        friend-link::before {
            content: "🔗 Friends: ";
            font-weight: 600;
            color: #3d2b1b;
            width: 100%;
            margin-bottom: 0.2rem;
        }
        .copyright {
            font-size: 0.9rem;
            color: #6b5a4a;
            padding: 0.8rem 0;
            text-align: center;
            border-top: 1px solid #eaddcf;
            margin-top: 1rem;
            width: 100%;
        }
        .copyright strong {
            color: #3d2b1b;
        }
        @media (max-width: 800px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 1rem 0 0.5rem;
                gap: 0.6rem;
            }
            .nav-menu.show {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.5rem 0.8rem;
                border-radius: 8px;
                display: block;
                background: #f8f0e8;
            }
            .nav-menu li a:hover {
                background: #f0e6dc;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.6rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo small {
                font-size: 0.7rem;
            }
            .interaction-card {
                padding: 1rem;
            }
            .star-rating label {
                font-size: 1.3rem;
            }
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #b45309;
            color: #fff;
            padding: 0.6rem 1.2rem;
            border-radius: 0 0 8px 8px;
            z-index: 1000;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
