        *,
        *::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;
            background: #0f0f1a;
            color: #e8e8f0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #f0c75e;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #f0c75e;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0c75e;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid rgba(240, 199, 94, 0.25);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f7d97e;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #e8d5a3;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .text-muted {
            color: #a0a0b8;
        }
        .text-gold {
            color: #f0c75e;
        }
        .text-small {
            font-size: 0.875rem;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-bottom: 2px solid rgba(240, 199, 94, 0.2);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f0c75e;
            letter-spacing: -0.03em;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #e74c3c;
        }
        .my-logo:hover {
            color: #ffd966;
            text-decoration: none;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            padding: 0.5rem 0.9rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #c8c8e0;
            transition: background 0.25s, color 0.25s;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: rgba(240, 199, 94, 0.15);
            color: #f0c75e;
            text-decoration: none;
        }
        .nav-menu a.active {
            color: #f0c75e;
            background: rgba(240, 199, 94, 0.1);
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            color: #f0c75e;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(240, 199, 94, 0.12);
        }
        .nav-close {
            display: none;
            background: transparent;
            border: none;
            color: #f0c75e;
            font-size: 1.4rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            padding: 0.75rem 0 0.3rem 0;
            font-size: 0.85rem;
            color: #8a8aa8;
        }
        .breadcrumb a {
            color: #c8c8e0;
        }
        .breadcrumb a:hover {
            color: #f0c75e;
        }
        .breadcrumb .separator {
            color: #5a5a78;
            font-size: 0.7rem;
        }
        .breadcrumb .current {
            color: #f0c75e;
            font-weight: 500;
        }
        .hero {
            padding: 3rem 0 2.5rem 0;
            background: radial-gradient(ellipse at 20% 50%, rgba(240, 199, 94, 0.06), transparent 60%);
        }
        .hero h1 {
            font-size: 2.8rem;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: #b8b8d0;
            max-width: 740px;
            margin-bottom: 1.5rem;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            font-size: 0.9rem;
            color: #8a8aa8;
            border-top: 1px solid rgba(240, 199, 94, 0.12);
            padding-top: 1.2rem;
            margin-top: 0.5rem;
        }
        .hero-meta i {
            color: #f0c75e;
            margin-right: 0.4rem;
        }
        .search-section {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 1.5rem 1.8rem;
            margin: 1.8rem 0 2.5rem 0;
            border: 1px solid rgba(240, 199, 94, 0.12);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 600;
            color: #f0c75e;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.05rem;
        }
        .search-form {
            display: flex;
            flex: 1 1 320px;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #2a2a4a;
            background: #0f0f1a;
            color: #e8e8f0;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #f0c75e;
        }
        .search-form button {
            padding: 0.7rem 1.4rem;
            background: #f0c75e;
            color: #0f0f1a;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .content-area {
            padding: 0.5rem 0 3rem 0;
            flex: 1;
        }
        .content-area .container {
            max-width: 800px;
        }
        .content-area .featured-image {
            border-radius: 14px;
            margin: 1.8rem 0 2.2rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(240, 199, 94, 0.1);
        }
        .content-area .featured-image figcaption {
            font-size: 0.85rem;
            color: #8a8aa8;
            text-align: center;
            padding-top: 0.6rem;
            font-style: italic;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 2rem 0 2.5rem 0;
        }
        .stat-card {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 1.2rem 1rem;
            text-align: center;
            border: 1px solid rgba(240, 199, 94, 0.08);
            transition: transform 0.2s, border-color 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-3px);
            border-color: rgba(240, 199, 94, 0.3);
        }
        .stat-card .number {
            font-size: 2rem;
            font-weight: 800;
            color: #f0c75e;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #a0a0b8;
            margin-top: 0.25rem;
        }
        .user-feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 3rem 0 2rem 0;
        }
        .feedback-card {
            background: #1a1a2e;
            border-radius: 14px;
            padding: 1.6rem 1.8rem;
            border: 1px solid rgba(240, 199, 94, 0.08);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #f0c75e;
        }
        .feedback-card textarea,
        .feedback-card input {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #2a2a4a;
            background: #0f0f1a;
            color: #e8e8f0;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
            margin-bottom: 0.8rem;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #f0c75e;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 0.6rem 1.5rem;
            background: #f0c75e;
            color: #0f0f1a;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .feedback-card button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.25rem;
            margin-bottom: 0.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #3a3a5a;
            cursor: pointer;
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c75e;
            transform: scale(1.05);
        }
        .star-rating label i {
            pointer-events: none;
        }
        .rating-display {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            color: #f0c75e;
            font-size: 1rem;
            margin-top: 0.3rem;
        }
        .linked-casinos {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 1.6rem 1.8rem;
            margin: 2rem 0;
            border-left: 4px solid #f0c75e;
        }
        .linked-casinos ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.5rem 1.2rem;
        }
        .linked-casinos li::before {
            content: "🎰 ";
            font-size: 0.85rem;
        }
        .linked-casinos a {
            font-weight: 500;
        }
        friend-link {
            display: block;
            padding: 1.8rem 0;
            border-top: 1px solid rgba(240, 199, 94, 0.12);
            margin-top: 2.5rem;
        }
        friend-link h3 {
            font-size: 1.1rem;
            color: #f0c75e;
            margin-top: 0;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
        }
        friend-link .friend-list a {
            font-size: 0.9rem;
            padding: 0.2rem 0;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        friend-link .friend-list a:hover {
            border-bottom-color: #f0c75e;
        }
        .site-footer {
            background: #0a0a16;
            border-top: 2px solid rgba(240, 199, 94, 0.1);
            padding: 2.2rem 0 1.8rem 0;
            margin-top: auto;
            text-align: center;
            font-size: 0.9rem;
            color: #7a7a9a;
        }
        .site-footer .copyright {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.3rem 1.2rem;
            align-items: center;
        }
        .site-footer a {
            color: #c8c8e0;
        }
        .site-footer a:hover {
            color: #f0c75e;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero .subtitle {
                font-size: 1rem;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                border-radius: 12px;
                padding: 0.8rem 0.4rem;
                margin-top: 0.6rem;
                border: 1px solid rgba(240, 199, 94, 0.1);
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1rem;
                width: 100%;
                text-align: left;
            }
            .nav-close {
                display: block;
                align-self: flex-end;
                margin-bottom: 0.3rem;
            }
            .user-feedback-section {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .linked-casinos ul {
                grid-template-columns: 1fr;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .hero-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .feedback-card {
                padding: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.6rem;
            }
            .stat-card .number {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .highlight-box {
            background: rgba(240, 199, 94, 0.06);
            border-radius: 10px;
            padding: 1.2rem 1.5rem;
            border-left: 4px solid #f0c75e;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .inline-icon {
            margin-right: 0.3rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.8rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1a2e;
            border-radius: 10px;
            overflow: hidden;
            font-size: 0.9rem;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(240, 199, 94, 0.06);
        }
        th {
            background: rgba(240, 199, 94, 0.1);
            color: #f0c75e;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: rgba(240, 199, 94, 0.03);
        }
