* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f7f5f2;
            color: #1e1e2a;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #c44c7c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #9e2f5a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #2d1b3d, #1e1228);
            color: #fff;
            padding: 16px 0;
            border-bottom: 4px solid #f5b342;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5b342, #f28e2b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(245, 179, 66, 0.3);
            font-style: italic;
            text-transform: uppercase;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .main-nav {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8dff0;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: all 0.2s;
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            background: rgba(245, 179, 66, 0.15);
            border-color: #f5b342;
            color: #f5b342;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            gap: 10px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .nav-mobile a {
            color: #e8dff0;
            padding: 10px 0;
            font-size: 1.05rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .nav-mobile a:hover {
            color: #f5b342;
        }
        .breadcrumb {
            background: #f0ebe4;
            padding: 10px 0;
            font-size: 0.85rem;
            color: #5a4e66;
            border-bottom: 1px solid #e2d8d0;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #7a5a8a;
        }
        .breadcrumb a:hover {
            color: #c44c7c;
        }
        .breadcrumb span {
            color: #3b2a4a;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(120deg, #2d1b3d 0%, #4a2a5e 100%);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎮🫘";
            font-size: 14rem;
            position: absolute;
            right: -30px;
            bottom: -40px;
            opacity: 0.06;
            pointer-events: none;
            transform: rotate(-8deg);
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            max-width: 900px;
            margin: 0 auto 16px;
            line-height: 1.15;
            background: linear-gradient(135deg, #f5b342, #f7d684);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 12px;
            opacity: 0.88;
            font-weight: 300;
        }
        .hero .badge {
            display: inline-block;
            background: #f5b342;
            color: #1e1228;
            padding: 6px 24px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-top: 10px;
            letter-spacing: 0.5px;
        }
        .content-wrap {
            display: flex;
            gap: 40px;
            padding: 40px 0 50px;
        }
        .main-content {
            flex: 2;
            min-width: 0;
        }
        .sidebar {
            flex: 1;
            min-width: 260px;
            background: #fff;
            border-radius: 20px;
            padding: 28px 22px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            color: #2d1b3d;
            border-bottom: 3px solid #f5b342;
            padding-bottom: 10px;
            margin-bottom: 18px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            margin-bottom: 10px;
        }
        .sidebar ul li a {
            color: #4a2a5e;
            font-weight: 500;
            display: block;
            padding: 6px 0;
            border-bottom: 1px solid #f0ebe4;
        }
        .sidebar ul li a:hover {
            color: #c44c7c;
            padding-left: 6px;
        }
        section {
            background: #fff;
            border-radius: 24px;
            padding: 32px 34px;
            margin-bottom: 32px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
            transition: box-shadow 0.2s;
        }
        section:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
        }
        h2 {
            font-size: 2rem;
            color: #1e1228;
            margin-bottom: 18px;
            font-weight: 800;
            letter-spacing: -0.3px;
            border-left: 6px solid #f5b342;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            color: #2d1b3d;
            margin: 28px 0 14px;
            font-weight: 700;
        }
        h4 {
            font-size: 1.2rem;
            color: #3b2a4a;
            margin: 20px 0 10px;
            font-weight: 600;
        }
        p {
            margin-bottom: 16px;
            color: #2c2c3a;
        }
        .highlight {
            background: #fef6e7;
            padding: 4px 12px;
            border-radius: 12px;
            font-weight: 600;
            color: #b2651e;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .data-box {
            background: #f5f0fa;
            border-radius: 18px;
            padding: 22px 26px;
            margin: 20px 0;
            border-left: 6px solid #7a5a8a;
        }
        .data-box strong {
            color: #2d1b3d;
        }
        .btn {
            display: inline-block;
            background: #c44c7c;
            color: #fff;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #9e2f5a;
            transform: translateY(-2px);
            text-decoration: none;
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #c44c7c;
            color: #c44c7c;
        }
        .btn-outline:hover {
            background: #c44c7c;
            color: #fff;
        }
        .feature-img {
            border-radius: 20px;
            margin: 24px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
        }
        .search-box {
            display: flex;
            gap: 8px;
            max-width: 520px;
            margin: 16px 0 8px;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            min-width: 180px;
        }
        .search-box input:focus {
            border-color: #c44c7c;
        }
        .search-box button {
            padding: 14px 28px;
            border: none;
            background: #c44c7c;
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 1rem;
        }
        .search-box button:hover {
            background: #9e2f5a;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 600px;
            margin: 18px 0;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            padding: 14px 18px;
            border: 2px solid #e0d8e8;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
            background: #fcfafc;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form select:focus {
            border-color: #c44c7c;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-form select {
            max-width: 200px;
        }
        .comment-list {
            margin-top: 24px;
            border-top: 2px solid #f0ebe4;
            padding-top: 18px;
        }
        .comment-item {
            padding: 14px 0;
            border-bottom: 1px solid #f0ebe4;
        }
        .comment-item strong {
            color: #2d1b3d;
        }
        .comment-item small {
            color: #8a7a9a;
            font-size: 0.8rem;
        }
        .site-footer {
            background: #1e1228;
            color: #d0c8d8;
            padding: 40px 0 30px;
            margin-top: 20px;
            border-top: 4px solid #f5b342;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
        }
        .footer-links a {
            color: #b8a8c8;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #f5b342;
        }
        .footer-copy {
            width: 100%;
            text-align: center;
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.85rem;
            color: #8a7a9a;
        }
        friend-link {
            display: block;
            margin: 12px 0;
            font-weight: 500;
            color: #f5b342;
        }
        friend-link a {
            color: #f5b342;
            margin: 0 6px;
        }
        friend-link a:hover {
            color: #ffd966;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .nav-mobile.open {
                display: flex;
            }
            .content-wrap {
                flex-direction: column;
            }
            .sidebar {
                position: static;
                width: 100%;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            section {
                padding: 22px 18px;
            }
            h2 {
                font-size: 1.6rem;
                padding-left: 12px;
            }
            .search-box {
                max-width: 100%;
            }
            .search-box input {
                min-width: 140px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            section {
                padding: 16px 12px;
                border-radius: 16px;
            }
            .data-box {
                padding: 14px 16px;
            }
            .footer-links {
                flex-direction: column;
                gap: 8px;
            }
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .flex {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .gap-sm {
            gap: 6px;
        }
        .text-muted {
            color: #7a6a8a;
            font-size: 0.9rem;
        }
        .updated {
            display: inline-block;
            background: #e8e0f0;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #3b2a4a;
            font-weight: 500;
        }
