        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a1a2e;
            --primary-light: #16213e;
            --accent: #e94560;
            --accent-hover: #ff6b81;
            --gold: #f5c518;
            --gold-light: #ffe082;
            --bg: #f9f9fb;
            --card-bg: #ffffff;
            --text: #1e1e2f;
            --text-light: #4a4a5a;
            --text-muted: #7a7a8a;
            --border: #e0e0e8;
            --radius: 14px;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.10);
            --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            --max-width: 1200px;
            --header-height: 72px;
            --transition: 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding-top: var(--header-height);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus-visible {
            color: var(--accent-hover);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--header-height);
            background: var(--primary);
            color: #fff;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            transition: background var(--transition);
        }
        .header-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.2rem;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--gold) !important;
            text-decoration: none !important;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            white-space: nowrap;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: var(--accent);
        }
        .my-logo span {
            font-weight: 300;
            color: #fff;
            font-size: 0.85rem;
            margin-left: 0.2rem;
        }
        .my-logo:hover {
            filter: brightness(1.1);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        nav.main-nav ul {
            list-style: none;
            display: flex;
            gap: 0.2rem;
            padding: 0;
            margin: 0;
        }
        nav.main-nav ul li a {
            color: #ddd;
            padding: 0.5rem 0.9rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background var(--transition), color var(--transition);
            display: block;
            white-space: nowrap;
        }
        nav.main-nav ul li a:hover,
        nav.main-nav ul li a:focus-visible {
            background: rgba(255, 255, 255, 0.10);
            color: var(--gold);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: background var(--transition);
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .hamburger span {
            display: block;
            width: 26px;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            transition: all var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb-wrap {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            background: transparent;
        }
        .breadcrumb-wrap ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb-wrap ol li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: var(--text-muted);
            font-weight: 600;
        }
        .breadcrumb-wrap a {
            color: var(--text-muted);
        }
        .breadcrumb-wrap a:hover {
            color: var(--accent);
        }
        .breadcrumb-wrap .current {
            color: var(--text);
            font-weight: 600;
        }
        main {
            flex: 1;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.2rem 3rem;
            width: 100%;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: #fff;
            padding: 3rem 2rem;
            border-radius: var(--radius);
            margin: 1.5rem 0 2.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "♠ ♥ ♦ ♣";
            position: absolute;
            bottom: -10px;
            right: -10px;
            font-size: 6rem;
            opacity: 0.04;
            letter-spacing: 1rem;
            pointer-events: none;
            color: var(--gold);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.6rem;
            color: var(--gold);
        }
        .hero h1 i {
            margin-right: 0.3rem;
            color: var(--accent);
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 1rem;
            opacity: 0.9;
            line-height: 1.6;
        }
        .hero .last-updated {
            display: inline-block;
            margin-top: 0.8rem;
            font-size: 0.85rem;
            background: rgba(255, 255, 255, 0.10);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            color: var(--gold-light);
        }
        .hero .last-updated i {
            margin-right: 0.4rem;
        }
        section {
            margin: 2.8rem 0;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--primary);
            margin: 2.2rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid var(--gold);
            display: inline-block;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-light);
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin: 0.8rem 0;
            color: var(--text-light);
        }
        .content-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            box-shadow: var(--shadow);
            margin: 1.8rem 0;
            transition: box-shadow var(--transition);
        }
        .content-card:hover {
            box-shadow: var(--shadow-hover);
        }
        .highlight-box {
            background: linear-gradient(135deg, #fffbe6, #fff3cd);
            border-left: 5px solid var(--gold);
            padding: 1.2rem 1.8rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1.2rem 0;
        }
        .highlight-box strong {
            color: var(--primary);
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 0.3rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #eee;
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            min-height: 240px;
            background: #ddd url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="400" height="250" viewBox="0 0 400 250"%3E%3Crect fill="%23e0e0e8" width="400" height="250"/%3E%3Ctext x="50%25" y="50%25" text-anchor="middle" dy=".3em" font-family="sans-serif" font-size="18" fill="%23888"%3EPoqer at PokerStars India%3C/text%3E%3C/svg%3E') no-repeat center/cover;
        }
        .featured-image figcaption {
            padding: 0.6rem 1rem;
            background: var(--primary);
            color: #ddd;
            font-size: 0.85rem;
            text-align: center;
        }
        .search-section {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border var(--transition);
            background: var(--bg);
        }
        .search-form input[type="text"]:focus {
            border-color: var(--gold);
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: var(--accent);
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2rem 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .rating-box {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            box-shadow: var(--shadow);
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 0.8rem 1rem;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-family: var(--font);
            font-size: 0.95rem;
            resize: vertical;
            outline: none;
            transition: border var(--transition);
            background: var(--bg);
        }
        .comment-form textarea:focus {
            border-color: var(--gold);
        }
        .comment-form .form-row {
            display: flex;
            gap: 0.6rem;
            margin-top: 0.6rem;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 120px;
            padding: 0.6rem 1rem;
            border: 2px solid var(--border);
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            background: var(--bg);
            transition: border var(--transition);
        }
        .comment-form .form-row input:focus {
            border-color: var(--gold);
        }
        .comment-form button {
            padding: 0.6rem 1.6rem;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover {
            background: var(--accent-hover);
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.6rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            font-size: 2rem;
            color: #ddd;
            transition: color var(--transition), transform var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
            transform: scale(1.05);
        }
        .rating-form button {
            padding: 0.6rem 1.6rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .rating-form button:hover {
            background: var(--accent);
            transform: scale(1.02);
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            list-style: none;
            padding: 0;
            margin: 0.6rem 0;
        }
        .link-list-inline li a {
            background: var(--bg);
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid var(--border);
            transition: all var(--transition);
        }
        .link-list-inline li a:hover {
            background: var(--gold);
            color: var(--primary);
            border-color: var(--gold);
            text-decoration: none;
        }
        .toc {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 1.6rem 2rem;
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }
        .toc h3 {
            margin-top: 0;
        }
        .toc ul {
            columns: 2 240px;
            list-style: none;
            padding: 0;
            margin: 0.6rem 0 0;
        }
        .toc ul li {
            padding: 0.25rem 0;
            break-inside: avoid;
        }
        .toc ul li a {
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .toc ul li a::before {
            content: "♠";
            color: var(--accent);
            font-size: 0.7rem;
        }
        .toc ul li a:hover {
            color: var(--accent);
        }
        footer {
            background: var(--primary);
            color: #ccc;
            padding: 2.5rem 1.2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
        }
        .footer-inner>div {
            flex: 1 1 200px;
        }
        footer h4 {
            color: var(--gold);
            font-size: 1rem;
            margin-bottom: 0.6rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 0.3rem;
        }
        footer a {
            color: #bbb;
        }
        footer a:hover {
            color: var(--gold);
        }
        friend-link {
            display: block;
            margin: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1rem;
            padding: 0.2rem 0;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .copyright strong {
            color: #ddd;
        }
        @media (max-width: 900px) {
            .hero h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .content-card {
                padding: 1.2rem 1.2rem;
            }
            .search-section {
                padding: 1.2rem;
            }
            .comment-box,
            .rating-box {
                padding: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            nav.main-nav {
                position: fixed;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: var(--primary);
                padding: 1rem 1.2rem 1.5rem;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
                transform: translateY(-120%);
                opacity: 0;
                transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                pointer-events: none;
                border-radius: 0 0 var(--radius) var(--radius);
            }
            nav.main-nav.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            nav.main-nav ul {
                flex-direction: column;
                gap: 0.2rem;
            }
            nav.main-nav ul li a {
                padding: 0.7rem 1rem;
                font-size: 1rem;
                border-radius: 8px;
            }
            .hero {
                padding: 2rem 1.2rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .toc ul {
                columns: 1;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            :root {
                --header-height: 64px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo span {
                font-size: 0.7rem;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .search-form input[type="text"] {
                min-width: 120px;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            .footer-inner {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .content-card,
        .hero,
        .toc,
        .search-section,
        .feedback-grid>* {
            animation: fadeUp 0.6s ease forwards;
        }
        .content-card:nth-child(2) {
            animation-delay: 0.1s;
        }
        .content-card:nth-child(3) {
            animation-delay: 0.2s;
        }
