* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0f0f12;
            color: #e8e6e3;
            line-height: 1.75;
            padding: 0 1rem;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #1a1a22;
            box-shadow: 0 0 60px rgba(0, 0, 0, 0.7);
            border-radius: 28px 28px 0 0;
            overflow: hidden;
        }
        a {
            color: #f5b342;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            text-shadow: 0 0 8px rgba(245, 179, 66, 0.3);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            display: block;
        }
        .container {
            padding: 0 2rem 2rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem 1.5rem;
            }
            body {
                padding: 0 0.25rem;
            }
        }
        .header {
            background: linear-gradient(145deg, #1e1e2a, #12121a);
            padding: 1.2rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #2c2c3a;
            position: relative;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f5b342, #f7d06a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            font-family: 'Trebuchet MS', sans-serif;
        }
        .my-logo span {
            font-weight: 300;
            -webkit-text-fill-color: #ccc;
            color: #ccc;
            font-size: 1.6rem;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            background: none;
            border: none;
            color: #f5b342;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
        }
        .nav-menu {
            display: flex;
            gap: 1.8rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            font-weight: 600;
            font-size: 1rem;
            padding: 0.4rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            color: #ddd;
        }
        .nav-menu a:hover {
            border-bottom-color: #f5b342;
            color: #f5b342;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.8rem;
                padding: 1.2rem 0 0.5rem;
                border-top: 1px solid #2c2c3a;
                margin-top: 1rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .header {
                padding: 1rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        .breadcrumb {
            padding: 0.9rem 2rem;
            background: #15151d;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a2a36;
            color: #aaa;
        }
        .breadcrumb a {
            color: #f5b342;
        }
        .breadcrumb span {
            color: #666;
            margin: 0 0.4rem;
        }
        .search-bar {
            display: flex;
            max-width: 500px;
            margin: 2rem auto 1.5rem;
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid #333;
            background: #1e1e2a;
            transition: 0.3s;
        }
        .search-bar:focus-within {
            border-color: #f5b342;
            box-shadow: 0 0 20px rgba(245, 179, 66, 0.15);
        }
        .search-bar input {
            flex: 1;
            padding: 0.9rem 1.5rem;
            background: transparent;
            border: none;
            color: #eee;
            font-size: 1rem;
            outline: none;
        }
        .search-bar input::placeholder {
            color: #777;
        }
        .search-bar button {
            background: #f5b342;
            border: none;
            padding: 0 1.6rem;
            color: #111;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-bar button:hover {
            background: #ffcd6a;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5b342, #f7d06a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 1.8rem 0 1rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #f5b342;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2c2c3a;
        }
        h3 {
            font-size: 1.5rem;
            color: #f7d06a;
            margin: 2rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #e8d5a3;
            margin: 1.5rem 0 0.5rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d5d3d0;
        }
        .highlight {
            background: rgba(245, 179, 66, 0.08);
            border-left: 4px solid #f5b342;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .emoji-big {
            font-size: 1.6rem;
            margin-right: 0.3rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #22222e;
            padding: 1.5rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #333;
            transition: 0.2s;
        }
        .stat-card:hover {
            border-color: #f5b342;
            transform: translateY(-3px);
        }
        .stat-card .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #f5b342;
            display: block;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #aaa;
            margin-top: 0.3rem;
        }
        .feature-img {
            margin: 2.2rem 0;
            border-radius: 18px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .interaction-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0 2rem;
            padding: 2rem;
            background: #181820;
            border-radius: 24px;
            border: 1px solid #2a2a36;
        }
        @media (max-width: 700px) {
            .interaction-section {
                grid-template-columns: 1fr;
                padding: 1.2rem;
            }
        }
        .interaction-section h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: #f5b342;
        }
        .comment-form textarea,
        .rating-form select,
        .rating-form button,
        .comment-form button {
            width: 100%;
            padding: 0.8rem 1rem;
            margin-top: 0.6rem;
            border-radius: 12px;
            border: 1px solid #333;
            background: #1e1e2a;
            color: #eee;
            font-size: 1rem;
            transition: 0.2s;
        }
        .comment-form textarea:focus,
        .rating-form select:focus {
            border-color: #f5b342;
            outline: none;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-form select {
            appearance: auto;
            cursor: pointer;
        }
        .btn-gold {
            background: #f5b342;
            color: #111;
            font-weight: 700;
            border: none;
            cursor: pointer;
            padding: 0.8rem 1.8rem;
            border-radius: 40px;
            transition: 0.2s;
            font-size: 1rem;
        }
        .btn-gold:hover {
            background: #ffcd6a;
            transform: scale(1.02);
        }
        .comment-list {
            margin-top: 1.5rem;
            max-height: 280px;
            overflow-y: auto;
            padding-right: 0.5rem;
        }
        .comment-list::-webkit-scrollbar {
            width: 4px;
        }
        .comment-list::-webkit-scrollbar-thumb {
            background: #f5b342;
            border-radius: 10px;
        }
        .comment-item {
            background: #22222e;
            padding: 0.8rem 1.2rem;
            border-radius: 12px;
            margin-bottom: 0.6rem;
            border-left: 3px solid #f5b342;
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: #888;
        }
        .footer {
            background: #12121a;
            padding: 2.5rem 2rem 1.5rem;
            border-top: 2px solid #2c2c3a;
            margin-top: 2rem;
        }
        .footer friend-link {
            display: block;
            margin-bottom: 1.2rem;
            font-weight: 600;
            color: #f5b342;
        }
        .footer friend-link a {
            color: #ddd;
            font-weight: 400;
            margin: 0 0.6rem 0 0;
            display: inline-block;
        }
        .footer friend-link a:hover {
            color: #f5b342;
        }
        .copyright {
            text-align: center;
            color: #777;
            font-size: 0.9rem;
            border-top: 1px solid #222;
            padding-top: 1.5rem;
            margin-top: 1rem;
        }
        .copyright strong {
            color: #aaa;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 0.75rem 1rem;
            }
            .header {
                padding: 0.8rem;
            }
            .breadcrumb {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
            }
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a22;
        }
        ::-webkit-scrollbar-thumb {
            background: #f5b342;
            border-radius: 10px;
        }
        .poker-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            background: #1e1e2a;
            border-radius: 16px;
            overflow: hidden;
        }
        .poker-table th {
            background: #2c2c3a;
            color: #f5b342;
            padding: 0.9rem 1rem;
            text-align: left;
            font-weight: 700;
        }
        .poker-table td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #2a2a36;
            color: #ccc;
        }
        .poker-table tr:hover td {
            background: #252533;
        }
        friend-link {
            display: block;
        }
