        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: #1e1e2a;
            background: #f8f9fc;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #1a1a2e;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-bottom: 4px solid #c0392b;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #c0392b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.2rem;
            color: #34495e;
        }
        p {
            margin-bottom: 1.2rem;
            color: #2d2d3f;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        header {
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f1c40f;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(241, 196, 15, 0.3);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f1c40f;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            color: #bdc3c7;
            font-weight: 400;
            letter-spacing: 2px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        nav a {
            color: #ecf0f1;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s;
            position: relative;
        }
        nav a:hover {
            background: rgba(241, 196, 15, 0.15);
            color: #f1c40f;
            text-decoration: none;
        }
        nav a i {
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f1c40f;
            color: #f1c40f;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #f1c40f;
            color: #0f0f1a;
        }
        #nav-toggle {
            display: none;
        }
        #nav-toggle:checked~nav {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-top: 1rem;
            background: #1a1a2e;
            padding: 1rem 0;
            border-radius: 12px;
        }
        #nav-toggle:checked~nav a {
            padding: 0.7rem 1.5rem;
            border-radius: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            background: #fff;
            padding: 0.7rem 0;
            border-bottom: 1px solid #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #7f8c8d;
        }
        .breadcrumb a:hover {
            color: #c0392b;
        }
        .breadcrumb span {
            color: #2c3e50;
            font-weight: 500;
        }
        .breadcrumb i {
            color: #bdc3c7;
            font-size: 0.7rem;
        }
        .search-section {
            background: #fff;
            padding: 1.5rem 0;
            border-bottom: 1px solid #e9ecef;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.5rem;
            border: 2px solid #e9ecef;
            border-right: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input:focus {
            border-color: #c0392b;
        }
        .search-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .search-form button:hover {
            background: #a93226;
        }
        .hero {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 3rem 0 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎰 ♠️ ♥️ ♦️ ♣️ 🎲";
            position: absolute;
            bottom: -10px;
            right: -10px;
            font-size: 8rem;
            opacity: 0.04;
            pointer-events: none;
            transform: rotate(-10deg);
        }
        .hero h1 {
            color: #f1c40f;
            border-bottom: none;
            font-size: 2.8rem;
            display: block;
            text-shadow: 0 4px 20px rgba(241, 196, 15, 0.2);
        }
        .hero p {
            color: #d5dbe8;
            font-size: 1.15rem;
            max-width: 780px;
            margin: 1rem auto 2rem;
        }
        .hero .badge {
            display: inline-block;
            background: rgba(241, 196, 15, 0.15);
            color: #f1c40f;
            padding: 0.3rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            border: 1px solid rgba(241, 196, 15, 0.2);
        }
        .hero .last-updated {
            color: #95a5a6;
            font-size: 0.85rem;
            margin-top: 1.5rem;
        }
        .hero .last-updated i {
            margin-right: 6px;
        }
        main {
            background: #fff;
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-area p,
        .content-area li {
            font-size: 1.05rem;
        }
        .content-area img.featured {
            border-radius: 16px;
            margin: 2rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            width: 100%;
        }
        .sidebar {
            background: #f8f9fc;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            border: 1px solid #e9ecef;
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 3px solid #c0392b;
            padding-bottom: 0.6rem;
            margin-bottom: 1.2rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #e9ecef;
        }
        .sidebar ul li:last-child {
            border-bottom: none;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #2c3e50;
            font-weight: 500;
        }
        .sidebar ul li a:hover {
            color: #c0392b;
            text-decoration: none;
        }
        .sidebar ul li a i {
            color: #c0392b;
            font-size: 0.8rem;
            width: 18px;
            text-align: center;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .data-table thead {
            background: #1a1a2e;
            color: #fff;
        }
        .data-table th {
            padding: 0.9rem 1.2rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid #e9ecef;
        }
        .data-table tbody tr:hover {
            background: #f1f2f6;
        }
        .data-table .highlight {
            background: #fef9e7;
        }
        .comment-section,
        .rating-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #e9ecef;
        }
        .comment-section h2,
        .rating-section h2 {
            border-left-color: #f1c40f;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.4rem;
            color: #2c3e50;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            transition: 0.3s;
            background: #fff;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #c0392b;
            outline: none;
            box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.08);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        .btn {
            display: inline-block;
            background: #c0392b;
            color: #fff;
            padding: 0.8rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn:hover {
            background: #a93226;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(192, 57, 43, 0.25);
        }
        .btn i {
            margin-right: 8px;
        }
        .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: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f1c40f;
        }
        .rating-value {
            margin-left: 1rem;
            font-weight: 600;
            color: #2c3e50;
        }
        footer {
            background: #0f0f1a;
            color: #bdc3c7;
            padding: 2.5rem 0 1.5rem;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        footer h4 {
            color: #f1c40f;
            margin-top: 0;
            font-size: 1.1rem;
        }
        footer a {
            color: #95a5a6;
        }
        footer a:hover {
            color: #f1c40f;
        }
        footer .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.9rem;
            color: #7f8c8d;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.5rem;
            color: #95a5a6;
        }
        friend-link a:hover {
            color: #f1c40f;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
            footer .container {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: inline-block;
            }
            nav {
                display: none;
                width: 100%;
            }
            #nav-toggle:checked~nav {
                display: flex;
            }
            header .container {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero {
                padding: 2rem 0 2.5rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .breadcrumb .container {
                font-size: 0.8rem;
            }
            .search-form input {
                padding: 0.7rem 1rem;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0 1.2rem;
            }
            footer .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.7rem;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.1rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .sidebar {
                padding: 1.2rem;
            }
        }
        .text-accent {
            color: #c0392b;
        }
        .text-gold {
            color: #f1c40f;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 5px solid #f1c40f;
            padding: 1.2rem 1.8rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .inline-icon {
            margin-right: 6px;
            color: #c0392b;
        }
