        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #faf5f0;
            color: #2d1b2e;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        a {
            color: #8b3a8f;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #c97bcf;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        header {
            padding: 1.5rem 0 0.5rem 0;
            border-bottom: 2px solid #e6d3dc;
            margin-bottom: 1rem;
            position: relative;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #8b3a8f, #c97bcf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(139, 58, 143, 0.15);
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #5e3a5e;
            color: #5e3a5e;
            background: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #5e3a5e;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0e4ec;
        }
        nav#main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            align-items: center;
        }
        nav#main-nav a {
            font-weight: 500;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        nav#main-nav a:hover {
            border-bottom-color: #c97bcf;
            text-decoration: none;
        }
        .breadcrumbs {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            padding: 0.6rem 0 0.2rem 0;
            color: #6a4b6a;
        }
        .breadcrumbs li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #b392b0;
        }
        .breadcrumbs a {
            color: #6a4b6a;
        }
        .breadcrumbs a:hover {
            color: #8b3a8f;
        }
        .breadcrumbs .current {
            color: #3d1f3d;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #f3e8f0, #ede0f0);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            margin: 1.8rem 0 2.5rem 0;
            box-shadow: 0 8px 30px rgba(139, 58, 143, 0.08);
            text-align: center;
        }
        .hero h1 {
            font-size: 2.4rem;
            color: #2d1b2e;
            margin-bottom: 0.5rem;
            letter-spacing: -0.3px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #4d2e4d;
            max-width: 750px;
            margin: 0 auto;
        }
        .hero .last-update {
            display: inline-block;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #7a5e7a;
            background: rgba(255, 255, 255, 0.6);
            padding: 0.3rem 1rem;
            border-radius: 30px;
        }
        .search-section {
            background: #ffffffd9;
            backdrop-filter: blur(4px);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede0f0;
        }
        .search-section h2 {
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
            color: #2d1b2e;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            max-width: 600px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #e6d3dc;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: #fff;
        }
        .search-form input[type="text"]:focus {
            border-color: #c97bcf;
        }
        .search-form button {
            background: #8b3a8f;
            color: #fff;
            border: none;
            padding: 0.75rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #a84dac;
            transform: scale(1.02);
        }
        .search-form button:active {
            transform: scale(0.97);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .main-article {
            min-width: 0;
        }
        .sidebar {
            font-size: 0.95rem;
        }
        .sidebar .card {
            background: #ffffffd9;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.8rem;
            border: 1px solid #ede0f0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .sidebar .card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #2d1b2e;
            border-bottom: 2px solid #f0e4ec;
            padding-bottom: 0.4rem;
        }
        .sidebar .card ul {
            list-style: none;
        }
        .sidebar .card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f5edf2;
        }
        .sidebar .card ul li:last-child {
            border-bottom: none;
        }
        .sidebar .card ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar .card ul li a i {
            width: 1.2rem;
            color: #c97bcf;
        }
        .main-article h2 {
            font-size: 1.9rem;
            margin: 2.5rem 0 1rem 0;
            color: #2d1b2e;
            border-left: 5px solid #c97bcf;
            padding-left: 1rem;
        }
        .main-article h3 {
            font-size: 1.4rem;
            margin: 2rem 0 0.8rem 0;
            color: #3d1f3d;
        }
        .main-article h4 {
            font-size: 1.15rem;
            margin: 1.5rem 0 0.5rem 0;
            color: #4d2e4d;
            font-weight: 600;
        }
        .main-article p {
            margin-bottom: 1.2rem;
            color: #2d1b2e;
        }
        .main-article ul,
        .main-article ol {
            margin: 1rem 0 1.5rem 2rem;
        }
        .main-article li {
            margin-bottom: 0.5rem;
        }
        .main-article .highlight-box {
            background: #f7f0f5;
            border-radius: 14px;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
            border-left: 6px solid #c97bcf;
        }
        .main-article .highlight-box strong {
            color: #8b3a8f;
        }
        .main-article .game-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem;
            margin: 1.8rem 0;
            box-shadow: 0 4px 20px rgba(139, 58, 143, 0.06);
            border: 1px solid #ede0f0;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .main-article .game-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(139, 58, 143, 0.12);
        }
        .main-article .game-card .game-rank {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #a07ca0;
            font-weight: 700;
        }
        .main-article .game-card h3 {
            margin-top: 0.3rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #6a4b6a;
            padding: 0.6rem 0 0 0.2rem;
            font-style: italic;
        }
        .interaction-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0 2rem 0;
            padding: 2rem 0;
            border-top: 2px solid #e6d3dc;
        }
        .interaction-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem;
            border: 1px solid #ede0f0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .interaction-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #2d1b2e;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .interaction-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .interaction-card input,
        .interaction-card textarea,
        .interaction-card select {
            padding: 0.7rem 1rem;
            border: 2px solid #e6d3dc;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
            background: #faf5f0;
        }
        .interaction-card input:focus,
        .interaction-card textarea:focus,
        .interaction-card select:focus {
            border-color: #c97bcf;
            background: #fff;
        }
        .interaction-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .interaction-card button {
            background: #8b3a8f;
            color: #fff;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s;
            align-self: flex-start;
        }
        .interaction-card button:hover {
            background: #a84dac;
            transform: scale(1.02);
        }
        .interaction-card button:active {
            transform: scale(0.97);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #e0d0dd;
            cursor: pointer;
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
            transform: scale(1.1);
        }
        footer {
            margin: 3rem 0 1.5rem 0;
            padding-top: 2rem;
            border-top: 2px solid #e6d3dc;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            padding-bottom: 1.5rem;
        }
        .footer-content h4 {
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #2d1b2e;
        }
        .footer-content p,
        .footer-content a {
            font-size: 0.9rem;
            color: #4d2e4d;
        }
        footer friend-link {
            display: block;
            padding: 1rem 0;
            border-top: 1px solid #ede0f0;
            border-bottom: 1px solid #ede0f0;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        footer friend-link a {
            display: inline-block;
            margin: 0.2rem 1.2rem 0.2rem 0;
        }
        .copyright {
            text-align: center;
            padding: 1.2rem 0 0.5rem 0;
            font-size: 0.85rem;
            color: #7a5e7a;
        }
        .copyright strong {
            color: #4d2e4d;
        }
        @media (max-width: 900px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .interaction-section {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 680px) {
            body {
                padding: 0 0.6rem;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .hamburger {
                display: inline-block;
            }
            nav#main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 0.8rem 0 0.4rem 0;
                gap: 0.2rem;
                border-top: 1px solid #ede0f0;
                margin-top: 0.5rem;
            }
            nav#main-nav.open {
                display: flex;
            }
            nav#main-nav a {
                padding: 0.5rem 0.2rem;
                border-bottom: 1px solid #f5edf2;
            }
            nav#main-nav a:last-child {
                border-bottom: none;
            }
            .hero {
                padding: 1.8rem 1.2rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .search-section {
                padding: 1.2rem 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .main-article h2 {
                font-size: 1.5rem;
            }
            .main-article h3 {
                font-size: 1.2rem;
            }
            .interaction-card {
                padding: 1.2rem;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
            .breadcrumbs {
                font-size: 0.75rem;
            }
        }
        @media (min-width: 681px) {
            nav#main-nav {
                display: flex !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        .tag {
            display: inline-block;
            background: #f0e4ec;
            color: #5e3a5e;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 0.4rem;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .table-wrap th,
        .table-wrap td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #f0e4ec;
        }
        .table-wrap th {
            background: #f7f0f5;
            font-weight: 700;
            color: #2d1b2e;
        }
        .table-wrap tr:last-child td {
            border-bottom: none;
        }
        .table-wrap tr:hover td {
            background: #faf5f8;
        }
        .btn-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #8b3a8f;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 16px rgba(139, 58, 143, 0.3);
            border: none;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            z-index: 999;
        }
        .btn-top:hover {
            background: #a84dac;
            transform: translateY(-3px);
        }
        @media (max-width: 480px) {
            .btn-top {
                bottom: 1rem;
                right: 1rem;
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
            }
        }
