:root {
            --gold: #E6C687;
            --gold-light: #F9E7B9;
            --gold-dark: #B38F43;
            --gold-glow: rgba(230, 198, 135, 0.4);
            --stone-light: #2C2A2D;
            --stone-dark: #1A191C;
            --stone-deep: #0F0E11;
            --card-bg: rgba(26, 25, 28, 0.95);
            --glass: rgba(255, 255, 255, 0.02);
            --glass-border: rgba(230, 198, 135, 0.22);
            --text-main: #F2EFE9;
            --text-muted: #A39E99;
            --radius-lg: 20px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --grad-gold: linear-gradient(135deg, #E6C687 0%, #B38F43 50%, #F9E7B9 100%);
            --grad-section: linear-gradient(180deg, #0F0E11 0%, #1A191C 50%, #0F0E11 100%);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            background: var(--stone-deep);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.7;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--stone-dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gold-dark);
            border-radius: 3px;
        }

        #tpc-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(15, 14, 17, 0.95);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 2px solid var(--glass-border);
            padding: 0 40px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .container {
            margin: auto;
        }

        #tpc-header.scrolled {
            background: rgba(15, 14, 17, 0.99);
            height: 62px;
            box-shadow: 0 4px 30px rgba(230, 198, 135, 0.12);
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .header-logo img {
            height: 46px;
            width: 46px;
            object-fit: contain;
            border-radius: 10px;
            border: 2px solid var(--glass-border);
            box-shadow: 0 0 15px rgba(230, 198, 135, 0.3);
        }

        .header-logo-text {
            font-family: 'Orbitron', monospace;
            font-weight: 900;
            font-size: 1.3rem;
            background: linear-gradient(135deg, #E6C687 0%, #B38F43 50%, #F9E7B9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1.5px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        nav a {
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            transition: all 0.25s ease;
            position: relative;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #E6C687 0%, #B38F43 100%);
            border-radius: 2px;
            transform: translateX(-50%);
            transition: width 0.25s ease;
        }

        nav a:hover {
            color: var(--gold-light);
        }

        nav a:hover::after {
            width: 60%;
        }

        .nav-download-btn {
            background: linear-gradient(135deg, #B38F43 0%, #E6C687 50%, #B38F43 100%) !important;
            color: #1a191c !important;
            padding: 9px 22px !important;
            border-radius: var(--radius-sm) !important;
            font-weight: 800 !important;
            letter-spacing: 0.5px !important;
            box-shadow: 0 4px 16px rgba(179, 143, 67, 0.4);
            transition: all 0.25s ease !important;
        }

        .nav-download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(230, 198, 135, 0.6) !important;
        }

        .nav-download-btn::after {
            display: none !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 62px;
            left: 0;
            right: 0;
            background: rgba(15, 14, 17, 0.99);
            backdrop-filter: blur(20px);
            padding: 20px;
            z-index: 999;
            border-bottom: 2px solid var(--glass-border);
            flex-direction: column;
            gap: 4px;
        }

        .mobile-nav.open {
            display: flex;
        }

        .mobile-nav a {
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            padding: 14px 16px;
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }

        .mobile-nav a:hover {
            color: var(--gold);
            background: var(--glass);
            border-color: var(--glass-border);
        }

        #tpc-home {
            min-height: 100dvh;
            background: linear-gradient(-45deg, #0F0E11, #212024, #2C2A2D, #1A191C);
            background-size: 400% 400%;
            animation: gradientShift 12s ease infinite;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 72px;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .hero-bg-pattern {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 50% 50%, rgba(230, 198, 135, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }

        .floating-suits {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .suit {
            position: absolute;
            font-size: 1.5rem;
            opacity: 0.04;
            animation: floatSuit linear infinite;
        }

        .suit:nth-child(1) {
            left: 8%;
            top: 20%;
            animation-duration: 12s;
            font-size: 2rem;
            color: var(--gold);
        }

        .suit:nth-child(2) {
            left: 18%;
            top: 65%;
            animation-duration: 15s;
            font-size: 1.2rem;
        }

        .suit:nth-child(3) {
            left: 28%;
            top: 38%;
            animation-duration: 10s;
        }

        .suit:nth-child(4) {
            left: 72%;
            top: 18%;
            animation-duration: 14s;
            font-size: 2.5rem;
        }

        .suit:nth-child(5) {
            left: 82%;
            top: 58%;
            animation-duration: 11s;
        }

        .suit:nth-child(6) {
            left: 58%;
            top: 78%;
            animation-duration: 16s;
        }

        .suit:nth-child(7) {
            left: 42%;
            top: 12%;
            animation-duration: 13s;
            font-size: 1.8rem;
        }

        .suit:nth-child(8) {
            left: 88%;
            top: 32%;
            animation-duration: 9s;
        }

        @keyframes floatSuit {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.04;
            }

            50% {
                opacity: 0.1;
            }

            100% {
                transform: translateY(-50px) rotate(30deg);
                opacity: 0.04;
            }
        }

        .hero-inner {
            max-width: 900px;
            margin: 0 auto;
            padding: 80px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(230, 198, 135, 0.08);
            border: 2px solid rgba(230, 198, 135, 0.45);
            border-radius: 40px;
            padding: 8px 24px;
            font-size: 0.8rem;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 28px;
            box-shadow: 0 0 25px rgba(230, 198, 135, 0.15);
            backdrop-filter: blur(5px);
        }

        .hero-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2.5rem, 6.5vw, 4.5rem);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #FFFFFF 10%, #E6C687 50%, #B38F43 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.35rem);
            color: var(--text-muted);
            margin-bottom: 40px;
            line-height: 1.8;
            max-width: 760px;
        }

        .hero-subtitle strong {
            color: var(--gold-light);
            text-shadow: 0 0 10px rgba(230, 198, 135, 0.3);
        }

        .hero-bonuses {
            display: flex;
            gap: 20px;
            margin-bottom: 44px;
            width: 100%;
            max-width: 720px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .bonus-chip {
            background: linear-gradient(135deg, rgba(44, 42, 45, 0.95), rgba(26, 25, 28, 0.95));
            border: 2px solid rgba(230, 198, 135, 0.3);
            border-radius: var(--radius-md);
            padding: 18px 24px;
            text-align: center;
            flex: 1;
            min-width: 160px;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .bonus-chip:hover {
            transform: translateY(-6px);
            border-color: var(--gold);
            box-shadow: 0 12px 35px rgba(230, 198, 135, 0.25);
        }

        .bonus-amount {
            font-family: 'Orbitron', monospace;
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #E6C687 0%, #B38F43 50%, #F9E7B9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .bonus-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-top: 4px;
        }

        .hero-btns {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--grad-gold);
            color: #1A191C;
            text-decoration: none;
            font-weight: 800;
            font-size: 1rem;
            padding: 16px 36px;
            border-radius: var(--radius-md);
            box-shadow: 0 6px 25px rgba(179, 143, 67, 0.35);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            letter-spacing: 0.5px;
            border: 2px solid rgba(255, 255, 255, 0.15);
            text-transform: uppercase;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(230, 198, 135, 0.6);
            background: linear-gradient(135deg, #E6C687 0%, #F9E7B9 50%, #E6C687 100%);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.02);
            color: var(--gold);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 15px 32px;
            border-radius: var(--radius-md);
            border: 2px solid rgba(230, 198, 135, 0.45);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-secondary:hover {
            background: rgba(230, 198, 135, 0.1);
            border-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(230, 198, 135, 0.15);
        }

        .section-wrap {
            padding: 100px 40px;
            position: relative;
			background:linear-gradient(180deg, rgba(26, 25, 28, 0.7) 0%, rgba(15, 14, 17, 0.95) 100%);
        }

        .section-wrap.alt {
            background: linear-gradient(180deg, rgba(26, 25, 28, 0.7) 0%, rgba(15, 14, 17, 0.95) 100%);
            border-top: 2px solid rgba(230, 198, 135, 0.08);
            border-bottom: 2px solid rgba(230, 198, 135, 0.08);
        }

        .section-tag {
            display: inline-block;
            background: rgba(230, 198, 135, 0.1);
            border: 1px solid rgba(230, 198, 135, 0.25);
            color: var(--gold);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 14px;
        }

        .section-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 14px;
            color: #fff;
        }

        .section-title span {
            background: var(--grad-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-desc {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 620px;
            line-height: 1.8;
        }

        .gold-divider {
            width: 60px;
            height: 3.5px;
            background: var(--grad-gold);
            border-radius: 3px;
            margin: 16px 0;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 50px;
        }

        .spec-row {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 28px 24px;
            background: linear-gradient(135deg, #1A191C 0%, #0F0E11 100%);
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-md);
            gap: 12px;
            transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .spec-row::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(230, 198, 135, 0.12), transparent);
            transition: all 0.6s ease;
        }

        .spec-row:hover::before {
            left: 100%;
        }

        .spec-row:hover {
            transform: translateY(-8px);
            border-color: rgba(230, 198, 135, 0.6);
            box-shadow: 0 15px 35px rgba(230, 198, 135, 0.2);
        }

        .spec-icon {
            width: 52px;
            height: 52px;
            background: rgba(230, 198, 135, 0.12);
            border: 1.5px solid rgba(230, 198, 135, 0.3);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 6px;
            box-shadow: inset 0 0 10px rgba(230, 198, 135, 0.1);
        }

        .spec-key {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .spec-val {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--text-main);
        }

        .spec-val.gold {
            color: var(--gold);
            text-shadow: 0 0 10px rgba(230, 198, 135, 0.2);
        }

        .toc-container {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 40px;
            margin-top: 60px;
        }

        .toc-image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--radius-lg);
            border: 2px solid var(--glass-border);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
        }

        .toc-section {
            background: linear-gradient(135deg, rgba(44, 42, 45, 0.85) 0%, rgba(15, 14, 17, 0.95) 100%);
            border: 2px solid rgba(230, 198, 135, 0.25);
            border-radius: var(--radius-lg);
            padding: 40px;
            backdrop-filter: blur(15px);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
        }

        .toc-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: 0.5px;
        }

        .toc-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            counter-reset: toc-counter;
        }

        .toc-list li a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            border-radius: var(--radius-sm);
            border: 2px solid rgba(255, 255, 255, 0.03);
            background: rgba(255, 255, 255, 0.01);
            transition: all 0.25s ease;
        }

        .toc-list li a::before {
            content: counter(toc-counter, decimal-leading-zero);
            font-family: 'Orbitron', monospace;
            font-size: 0.8rem;
            color: var(--gold-dark);
            min-width: 30px;
            font-weight: 700;
        }

        .toc-list li a:hover {
            color: var(--gold-light);
            background: rgba(230, 198, 135, 0.08);
            border-color: rgba(230, 198, 135, 0.3);
            transform: translateX(4px);
        }

        #tpc-about .about-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            margin-top: 50px;
        }

        .about-img-wrap {
            position: relative;
            order: 2;
        }

        .about-img-inner {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 15px 45px rgba(179, 143, 67, 0.25), 0 0 30px rgba(230, 198, 135, 0.1);
            border: 2px solid var(--glass-border);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
            height: 100%;
        }

        .about-img-wrap:hover .about-img-inner {
            transform: perspective(1000px) rotateY(0deg);
        }

        .about-img-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .about-badge-wrap {
            position: absolute;
            top: -20px;
            left: -20px;
            bottom: auto;
            right: auto;
            background: var(--grad-gold);
            border-radius: var(--radius-md);
            padding: 18px 28px;
            box-shadow: 0 10px 30px rgba(179, 143, 67, 0.5);
            text-align: center;
            z-index: 10;
        }

        .about-badge-num {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            font-weight: 900;
            color: #1a191c;
            display: block;
        }

        .about-badge-lbl {
            font-size: 0.75rem;
            color: rgba(26, 25, 28, 0.9);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 800;
        }

        .bonus-stat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 32px 0;
        }

        .bonus-stat-box {
            background: linear-gradient(135deg, rgba(44, 42, 45, 0.95), rgba(26, 25, 28, 0.95));
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-md);
            padding: 24px;
            text-align: left;
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
            position: relative;
        }

        .bonus-stat-box::after {
            content: '';
            position: absolute;
            left: 24px;
            bottom: 18px;
            width: 30px;
            height: 2px;
            background: var(--gold);
        }

        .bonus-stat-box:hover {
            transform: scale(1.03);
            border-color: rgba(230, 198, 135, 0.5);
            box-shadow: 0 12px 36px rgba(230, 198, 135, 0.15);
        }

        .stat-num {
            font-family: 'Orbitron', monospace;
            font-size: 2.2rem;
            font-weight: 900;
            background: var(--grad-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 8px;
        }

        .stat-lbl {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        #tpc-features {
            background: var(--grad-section);
            position: relative;
            overflow: hidden;
        }

        #tpc-features::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(230, 198, 135, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--card-bg);
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 30px 24px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            height: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--grad-gold);
            transform: scaleX(0);
            transition: transform 0.35s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(230, 198, 135, 0.25);
            border-color: rgba(230, 198, 135, 0.5);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card-content {
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            transform: translateY(35px);
        }

        .feature-card:hover .feature-card-content {
            transform: translateY(0px);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(230, 198, 135, 0.15), rgba(44, 42, 45, 0.15));
            border: 2px solid rgba(230, 198, 135, 0.3);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.6rem;
            color: var(--gold);
            transition: all 0.35s ease;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, rgba(230, 198, 135, 0.35), rgba(44, 42, 45, 0.3));
            box-shadow: 0 0 25px rgba(230, 198, 135, 0.3);
            transform: rotate(8deg);
        }

        .feature-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0px;
            letter-spacing: 0.5px;
        }

        .feature-desc {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin-top: 12px;
        }

        .feature-card:hover .feature-desc {
            opacity: 1;
            transform: translateY(0px);
        }

        .games-section {
            margin-top: 80px;
            background: rgba(33, 31, 35, 0.4);
            padding: 40px;
            border-radius: var(--radius-lg);
            border: 2px solid rgba(230, 198, 135, 0.15);
            overflow: hidden;
        }

        .games-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: 0.5px;
        }

        .games-ticker-container {
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        .games-ticker-wrapper {
            display: flex;
            width: max-content;
        }

        .games-ticker {
            display: flex;
            gap: 15px;
            padding-right: 15px;
            animation: scrollTicker 25s linear infinite;
        }

        @keyframes scrollTicker {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .games-ticker-container:hover .games-ticker {
            animation-play-state: paused;
        }

        .game-chip {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            background: rgba(255, 255, 255, 0.02);
            border: 1.5px solid rgba(230, 198, 135, 0.12);
            border-radius: 40px;
            padding: 12px 24px;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-main);
            transition: all 0.25s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
        }

        .game-chip:hover {
            background: linear-gradient(135deg, rgba(230, 198, 135, 0.12), rgba(179, 143, 67, 0.1));
            color: var(--gold-light);
            border-color: var(--gold);
            transform: scale(1.04) translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 198, 135, 0.15);
        }

        .game-chip i {
            color: var(--gold);
            font-size: 0.9rem;
        }

        #tpc-how-to-play {
            background: linear-gradient(135deg, #0F0E11 0%, #1A191C 50%, #2D2C2F 100%);
        }

        .how-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 50px;
        }

        .how-image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--radius-lg);
            border: 2px solid var(--glass-border);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8);
        }

        .play-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .play-step {
            display: flex;
            gap: 24px;
            align-items: flex-start;
            padding: 24px;
            background: linear-gradient(135deg, rgba(44, 42, 45, 0.8), rgba(26, 25, 28, 0.8));
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-md);
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .play-step:hover {
            border-color: rgba(230, 198, 135, 0.4);
            transform: translateX(8px);
            box-shadow: 0 10px 30px rgba(230, 198, 135, 0.1);
        }

        .step-num {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            font-weight: 900;
            background: var(--grad-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            flex-shrink: 0;
            line-height: 1;
            min-width: 44px;
        }

        .step-content h4 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.15rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }

        .step-content p {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .hand-rankings-layout {
            display: grid;
            grid-template-columns: 0.80fr 1.2fr;
            gap: 50px;
            margin-top: 60px;
        }

        .hand-image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--radius-lg);
            border: 2px solid var(--glass-border);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8);
        }

        .hand-rankings {
            background: linear-gradient(135deg, rgba(26, 25, 28, 0.9), rgba(15, 14, 17, 0.95));
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            backdrop-filter: blur(10px);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
        }

        .hand-rankings h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: 0.5px;
        }

        .ranking-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ranking-list li {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
            padding: 16px 20px;
            border-radius: var(--radius-md);
            border: 2px solid rgba(230, 198, 135, 0.15);
            background: rgba(255, 255, 255, 0.01);
            transition: all 0.3s ease;
        }

        .ranking-list li:hover {
            background: rgba(230, 198, 135, 0.05);
            border-color: rgba(230, 198, 135, 0.4);
            transform: scale(1.02);
        }

        .rank-badge {
            font-family: 'Orbitron', monospace;
            font-size: 0.85rem;
            font-weight: 800;
            background: var(--grad-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            min-width: 24px;
            text-align: center;
        }

        .rank-name {
            font-weight: 800;
            font-size: 1rem;
            color: #fff;
            min-width: 140px;
        }

        .rank-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        #tpc-install {
            position: relative;
            background: linear-gradient(135deg, rgba(230, 198, 135, 0.06) 0%, rgba(15, 14, 17, 0.98) 50%, rgba(179, 143, 67, 0.06) 100%);
        }

        .install-layout-wrapper {
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 50px;
            margin-top: 50px;
            margin-bottom: 50px;
        }

        .install-img-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--radius-lg);
            border: 2px solid var(--glass-border);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8);
        }

        .install-grid {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .install-card {
            background: var(--card-bg);
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 44px;
            backdrop-filter: blur(10px);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
            transition: all 0.3s ease;
        }

        .install-card:hover {
            border-color: rgba(230, 198, 135, 0.4);
            box-shadow: 0 15px 45px rgba(230, 198, 135, 0.15);
        }

        .install-card-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 14px;
            letter-spacing: 0.5px;
        }

        .install-card-title i {
            color: var(--gold);
        }

        .install-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .install-step {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .install-step-num {
            width: 40px;
            height: 40px;
            background: var(--grad-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', monospace;
            font-size: 0.9rem;
            font-weight: 800;
            color: #1a191c;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(230, 198, 135, 0.4);
        }

        .install-step-text {
            padding-top: 6px;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .install-step-text strong {
            color: var(--text-main);
        }

        #tpc-blog {
            background: var(--grad-section);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 50px;
        }

        .blog-card {
            background: var(--card-bg);
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
        }

        .blog-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(230, 198, 135, 0.2);
            border-color: var(--gold);
        }

        .blog-card-img {
            width: 140px;
            height: 140px;
            margin: auto;
            margin-top: 24px;
            display: block;
            border-radius: 28px;
            border: 2px solid var(--glass-border);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: transform 0.4s;
        }

        .blog-card:hover .blog-card-img {
            transform: scale(1.06) rotate(3deg);
            border-color: var(--gold);
        }

        .blog-card-img img {
            width: 100%;
            height: 100%;
            border-radius: 26px;
            object-fit: cover;
        }

        .blog-card-body {
            padding: 24px 20px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .blog-card-name {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.15rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.4;
            text-align: center;
            letter-spacing: 0.3px;
        }

        .blog-card-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--grad-gold);
            color: #1a191c;
            text-decoration: none;
            font-weight: 800;
            font-size: 0.9rem;
            padding: 13px 20px;
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: auto;
            box-shadow: 0 6px 16px rgba(179, 143, 67, 0.4);
            letter-spacing: 0.5px;
        }

        .blog-card-btn:hover {
            box-shadow: 0 10px 24px rgba(230, 198, 135, 0.6);
            transform: scale(1.02);
        }

        .conclusion-wrap {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .conclusion-text {
            font-size: 1.15rem;
            color: var(--text-muted);
            line-height: 1.9;
            margin-bottom: 44px;
        }

        .policy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            margin-top: 50px;
            text-align: left;
        }

        .policy-card {
            background: linear-gradient(135deg, rgba(44, 42, 45, 0.8), rgba(15, 14, 17, 0.9));
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 30px;
            backdrop-filter: blur(8px);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
            transition: all 0.3s ease;
        }

        .policy-card:hover {
            border-color: rgba(230, 198, 135, 0.35);
            transform: translateY(-5px);
        }

        .policy-card h4 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .policy-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.75;
        }

        footer {
            background: linear-gradient(180deg, #151417 0%, #080709 100%);
            border-top: 2px solid rgba(230, 198, 135, 0.15);
            padding: 80px 40px 30px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(230, 198, 135, 0.08);
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-logo img {
            width: 48px;
            height: 48px;
            object-fit: contain;
            border-radius: 10px;
            border: 2px solid var(--glass-border);
        }

        .footer-logo-text {
            font-family: 'Orbitron', monospace;
            font-size: 1.25rem;
            font-weight: 900;
            background: linear-gradient(135deg, #E6C687 0%, #B38F43 50%, #F9E7B9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-desc {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 300px;
        }

        .footer-col h4 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 22px;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col ul li a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col ul li a:hover {
            color: var(--gold);
        }

        .footer-col ul li a i {
            font-size: 0.75rem;
            color: var(--gold);
            opacity: 0.6;
        }

        .footer-bottom {
            padding-top: 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-copy {
            font-size: 0.88rem;
            color: var(--text-muted);
        }

        .footer-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(230, 198, 135, 0.15);
            border: 1px solid rgba(230, 198, 135, 0.3);
            border-radius: 20px;
            padding: 8px 18px;
            font-size: 0.82rem;
            font-weight: 800;
            color: var(--gold-light);
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--grad-gold);
            border: none;
            border-radius: 50%;
            color: #1a191c;
            font-size: 1.1rem;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(179, 143, 67, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
            z-index: 999;
        }

        .scroll-top.visible {
            display: flex;
        }

        .scroll-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 28px rgba(230, 198, 135, 0.7);
        }

        /* FADE-UP OBSERVER CLASS */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-1 {
            transition-delay: 0.1s;
        }

        .stagger-2 {
            transition-delay: 0.2s;
        }

        .stagger-3 {
            transition-delay: 0.3s;
        }

        .stagger-4 {
            transition-delay: 0.4s;
        }

        @media (max-width: 1024px) {

            .features-grid,
            .specs-grid,
            .blog-grid,
            .footer-top {
                grid-template-columns: repeat(2, 1fr);
            }

            .toc-container,
            .how-grid,
            .hand-rankings-layout,
            .install-layout-wrapper {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            #tpc-header {
                padding: 0 20px;
            }

            nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-inner {
                padding: 60px 20px;
            }

            #tpc-about .about-grid {
                grid-template-columns: 1fr;
            }

            .about-img-wrap {
                order: -1;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .section-wrap {
                padding: 80px 24px;
            }
        }

        @media (max-width: 480px) {
            #tpc-header {
                padding: 0 16px;
                height: 62px;
            }

            .header-logo-text {
                font-size: 1.05rem;
            }

            .header-logo img {
                height: 38px;
                width: 38px;
            }

            .hero-inner {
                padding: 30px 16px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 0.95rem;
            }

            .bonus-amount {
                font-size: 1.6rem;
            }

            .features-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .section-wrap {
                padding: 40px 16px;
            }

            footer {
                padding: 40px 16px 30px;
            }

            .policy-grid {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
            }

            .conclusion-wrap .btn-primary {
                font-size: 14px;
                padding: 16px 16px;
            }

            .blog-grid {
                gap: 14px;
                grid-template-columns: 1fr 1fr;
            }

            .blog-card-img {
                width: 120px;
                height: 120px;
                margin-top: 16px;
            }

            .blog-card-body {
                gap: 10px;
                padding: 12px 12px 12px;
            }

            .blog-card-btn {
                font-size: 12px;
                padding: 12px 12px;
            }

            .blog-card-body .blog-card-btn i,
            .install-card .btn-primary i {
                display: none;
            }

            .install-card,
            .hand-rankings,
            .games-section,
            .toc-section {
                padding: 24px;
            }

            .bonus-stat-box {
                padding: 16px;
            }

            .install-step {
                display: flex;
                gap: 6px;
                flex-direction: column;
            }

            .ranking-list li {
                gap: 8px;
            }

            .rank-badge {
                min-width: fit-content;
                text-align: left;
            }

            .about-badge-wrap {
                padding: 12px 12px;
                left: unset;
                bottom: auto;
                right: 0;
            }

            .about-badge-num {
                font-size: 20px;
                line-height: normal;
            }

            .spec-row {
                padding: 16px;
                gap: 6px;
            }

            .spec-val {
                font-size: 14px;
            }

            .hero-badge {
                flex-direction: column;
            }

        }