* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8f6f2;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 28px;
            padding: 20px 28px 40px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 2px solid #f0eadd;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-decoration: none;
            color: #c0392b;
            background: linear-gradient(145deg, #b83227, #e74c3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #c0392b;
            font-size: 1.8rem;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #1e2a3a;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0eadd;
        }
        nav {
            display: flex;
            gap: 10px 24px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        nav a:hover {
            border-bottom-color: #c0392b;
            color: #c0392b;
        }
        nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 12px;
            padding: 14px 0 8px;
            font-size: 0.85rem;
            color: #5d6d7e;
        }
        .breadcrumb a {
            color: #8e44ad;
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #7f8c8d;
        }
        .breadcrumb .current {
            color: #1e2a3a;
            font-weight: 600;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 24px 0 16px;
            color: #1a1a2e;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #c0392b;
            margin-right: 10px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 40px 0 14px;
            padding-bottom: 6px;
            border-bottom: 3px solid #f0eadd;
            color: #1a1a2e;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 28px 0 10px;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: #34495e;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2c3e50;
        }
        .highlight {
            background: #fef9e7;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .insight-box {
            background: #f1f8ff;
            border-left: 6px solid #2980b9;
            padding: 18px 22px;
            border-radius: 0 16px 16px 0;
            margin: 24px 0;
            font-style: normal;
        }
        .insight-box strong {
            color: #1a5276;
        }
        .interview-block {
            background: #fdf2e9;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 28px 0;
            border: 1px solid #f0d5b8;
        }
        .interview-block .quote {
            font-size: 1.2rem;
            font-style: italic;
            font-weight: 500;
            color: #935116;
        }
        .interview-block .attribution {
            margin-top: 12px;
            font-weight: 600;
            color: #1e2a3a;
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin: 24px 0 30px;
        }
        .data-card {
            background: #fafafa;
            padding: 20px 18px;
            border-radius: 18px;
            border: 1px solid #eaeaea;
            transition: transform 0.2s, box-shadow 0.2s;
            text-align: center;
        }
        .data-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        }
        .data-card i {
            font-size: 2.2rem;
            color: #c0392b;
            margin-bottom: 10px;
        }
        .data-card h4 {
            margin: 6px 0 4px;
            font-size: 1.1rem;
        }
        .data-card .stat {
            font-size: 1.5rem;
            font-weight: 800;
            color: #c0392b;
        }
        .game-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 16px;
            margin: 20px 0 28px;
        }
        .game-item {
            background: #ffffff;
            border: 1px solid #e8e0d4;
            border-radius: 16px;
            padding: 18px 20px;
            transition: 0.2s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        }
        .game-item:hover {
            border-color: #c0392b;
            box-shadow: 0 8px 20px rgba(192, 57, 43, 0.08);
        }
        .game-item a {
            text-decoration: none;
            color: #1e2a3a;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .game-item a i {
            color: #c0392b;
            font-size: 1.2rem;
        }
        .game-item a:hover {
            color: #c0392b;
        }
        .feature-img {
            width: 100%;
            border-radius: 24px;
            margin: 28px 0 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            display: block;
            max-height: 520px;
            object-fit: cover;
        }
        .search-section {
            background: #faf6f0;
            border-radius: 24px;
            padding: 28px 30px;
            margin: 36px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }
        .search-section label {
            font-weight: 700;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section form {
            flex: 1;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 18px;
            border: 2px solid #ddd;
            border-radius: 60px;
            font-size: 1rem;
            background: #fff;
            transition: 0.2s;
            outline: none;
        }
        .search-section input[type="text"]:focus {
            border-color: #c0392b;
            box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1);
        }
        .search-section button {
            padding: 14px 32px;
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #a93226;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 36px 0 20px;
        }
        @media (max-width: 768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .rating-box {
            background: #faf6f0;
            border-radius: 24px;
            padding: 24px 28px;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-box form,
        .rating-box form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .comment-box textarea {
            padding: 14px 16px;
            border: 2px solid #ddd;
            border-radius: 16px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: 0.2s;
            outline: none;
        }
        .comment-box textarea:focus {
            border-color: #c0392b;
            box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.08);
        }
        .comment-box input[type="text"] {
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 60px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .comment-box input[type="text"]:focus {
            border-color: #c0392b;
        }
        .comment-box button,
        .rating-box button {
            padding: 12px 28px;
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            align-self: flex-start;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #a93226;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd;
            transition: 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f1c40f;
        }
        footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #f0eadd;
        }
        friend-link {
            display: block;
            padding: 18px 0 10px;
            font-style: normal;
        }
        friend-link .fl-head {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: #1e2a3a;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
        }
        friend-link a {
            color: #8e44ad;
            text-decoration: none;
            font-weight: 500;
            transition: 0.2s;
        }
        friend-link a:hover {
            color: #c0392b;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 8px;
            font-size: 0.9rem;
            color: #7f8c8d;
            border-top: 1px solid #f0eadd;
            margin-top: 18px;
        }
        .copyright strong {
            color: #2c3e50;
        }
        @media (max-width: 768px) {
            .container {
                padding: 14px 16px 30px;
                border-radius: 18px;
                margin-top: 10px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            header {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 12px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                font-size: 1.05rem;
                padding: 8px 0;
                width: 100%;
                border-bottom: 1px solid #f0eadd;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 20px;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section button {
                justify-content: center;
            }
            .data-grid {
                grid-template-columns: 1fr 1fr;
            }
            .game-list {
                grid-template-columns: 1fr;
            }
            .feature-img {
                max-height: 240px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 10px 12px 24px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .data-grid {
                grid-template-columns: 1fr;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .text-small {
            font-size: 0.9rem;
            color: #7f8c8d;
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #eafaf1;
            padding: 6px 16px 6px 12px;
            border-radius: 60px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #1e8449;
            margin-bottom: 16px;
        }
        .update-badge i {
            font-size: 1rem;
        }
