:root {
            /* NEW UNIQUE PARTY THEME: Royal Purple, Neon Pink, Sunset Gold & Ice Cyan */
            --gold: #00FFCC;
            /* Electric Teal / Cyan Accent */
            --gold-light: #80FFEC;
            --gold-dark: #00B38F;
            --crimson: #FF007F;
            /* Vibrant Hot Pink / Neon Magenta */
            --crimson-dark: #B30059;
            --emerald: #9D00FF;
            /* Electric Purple */
            --emerald-light: #C466FF;
            --deep-navy: #0C0214;
            /* Deep Royal Purple-Black */
            --navy: #15062B;
            /* Dark Royal Indigo */
            --navy-mid: #220B44;
            /* Dark Amethyst */
            --card-bg: rgba(34, 11, 68, 0.75);
            /* Glass Purple Card Background */
            --glass: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(0, 255, 204, 0.18);
            /* Cyan Glass Border */
            --text-main: #F5F0E8;
            --text-muted: #B3A9C4;
            --text-gold: #00FFCC;
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 10px;
            --shadow-gold: 0 0 32px rgba(0, 255, 204, 0.25);
            --shadow-card: 0 12px 50px rgba(0, 0, 0, 0.7);
            --grad-hero: linear-gradient(135deg, #0C0214 0%, #220B44 40%, #440066 70%, #0C0214 100%);
            --grad-gold: linear-gradient(135deg, #00FFCC, #0099FF, #00FFCC);
            /* Electric Neon Cyan-Blue gradient */
            --grad-btn: linear-gradient(135deg, #FF007F 0%, #FF5E00 50%, #FF007F 100%);
            /* Neon Party Pink-Orange Sunset */
            --grad-green: linear-gradient(135deg, #9D00FF, #FF007F, #9D00FF);
            --grad-section: linear-gradient(180deg, #0C0214 0%, #15062B 50%, #0C0214 100%);
        }

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

        html {
            scroll-behavior: smooth;
        }

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

        /* SCROLLBAR */
        ::-webkit-scrollbar {
            width: 8px;
        }

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

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

        /* ===================== HEADER ===================== */
        #tpc-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(12, 2, 20, 0.88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            padding: 0 40px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        #tpc-header.scrolled {
            background: rgba(12, 2, 20, 0.98);
            height: 64px;
            box-shadow: 0 4px 30px rgba(0, 255, 204, 0.15);
        }

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

        .header-logo img {
            height: 46px;
            width: 46px;
            object-fit: contain;
            border-radius: 12px;
            border: 1.5px solid var(--glass-border);
            box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
        }

        .header-logo-text {
            font-family: 'Orbitron', monospace;
            font-weight: 900;
            font-size: 1.25rem;
            background: var(--grad-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1.5px;
        }

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

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

        nav a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--grad-gold);
            border-radius: 2px;
            transform: translateX(-50%);
            transition: width 0.25s ease;
        }

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

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

        .nav-download-btn {
            background: var(--grad-btn) !important;
            color: #fff !important;
            padding: 10px 24px !important;
            border-radius: var(--radius-sm) !important;
            font-weight: 800 !important;
            letter-spacing: 0.5px !important;
            box-shadow: 0 4px 16px rgba(255, 0, 127, 0.5);
            transition: all 0.25s ease !important;
        }

        .nav-download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 0, 127, 0.7) !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: 72px;
            left: 0;
            right: 0;
            background: rgba(12, 2, 20, 0.98);
            backdrop-filter: blur(20px);
            padding: 24px;
            z-index: 999;
            border-bottom: 1px solid var(--glass-border);
            flex-direction: column;
            gap: 8px;
        }

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

        .mobile-nav a {
            color: var(--text-main);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 700;
            padding: 14px 18px;
            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);
        }

        /* ===================== HERO SECTION ===================== */
        #tpc-home {
            min-height: 100dvh;
            /* Animated Background Gradient */
            background: linear-gradient(-45deg, #0C0214, #1B0530, #3E0660, #15062B, #0C0214);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-top: 72px;
        }

        @keyframes gradientBG {
            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 30% 30%, rgba(255, 0, 127, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(0, 255, 204, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(157, 0, 255, 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.8rem;
            opacity: 0.08;
            animation: floatSuit linear infinite;
        }

        /* Different timings for suits to make float natural */
        .suit:nth-child(1) {
            left: 8%;
            top: 15%;
            animation-duration: 11s;
        }

        .suit:nth-child(2) {
            left: 18%;
            top: 75%;
            animation-duration: 14s;
            animation-delay: -3s;
        }

        .suit:nth-child(3) {
            left: 32%;
            top: 35%;
            animation-duration: 9s;
            animation-delay: -5s;
        }

        .suit:nth-child(4) {
            left: 68%;
            top: 22%;
            animation-duration: 13s;
            animation-delay: -2s;
        }

        .suit:nth-child(5) {
            left: 82%;
            top: 65%;
            animation-duration: 10s;
            animation-delay: -7s;
        }

        .suit:nth-child(6) {
            left: 52%;
            top: 82%;
            animation-duration: 15s;
            animation-delay: -1s;
        }

        .suit:nth-child(7) {
            left: 42%;
            top: 12%;
            animation-duration: 12s;
            animation-delay: -4s;
        }

        .suit:nth-child(8) {
            left: 91%;
            top: 40%;
            animation-duration: 8s;
            animation-delay: -6s;
        }

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

            50% {
                opacity: 0.15;
            }

            100% {
                transform: translateY(-40px) rotate(35deg) scale(1.1);
                opacity: 0.04;
            }
        }

        .hero-inner {
            max-width: 900px;
            /* Centered narrow width for impactful readability */
            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(0, 255, 204, 0.12);
            border: 1.5px solid rgba(0, 255, 204, 0.4);
            border-radius: 40px;
            padding: 8px 20px;
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 28px;
            box-shadow: 0 0 20px rgba(0, 255, 204, 0.15);
        }

        .hero-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2.4rem, 6vw, 4.2rem);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #FFFFFF 20%, #00FFCC 60%, #FF007F 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        }

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

        .hero-subtitle strong {
            color: var(--gold);
            text-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
        }

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

        .bonus-chip {
            background: linear-gradient(135deg, rgba(34, 11, 68, 0.9), rgba(12, 2, 20, 0.9));
            border: 1.5px solid var(--glass-border);
            border-radius: var(--radius-md);
            padding: 18px 24px;
            text-align: center;
            flex: 1;
            min-width: 160px;
            box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: transform 0.3s, border-color 0.3s;
        }

        .bonus-chip:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 255, 204, 0.5);
            box-shadow: 0 8px 30px rgba(0, 255, 204, 0.15);
        }

        .bonus-amount {
            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;
            display: block;
        }

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

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

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--grad-btn);
            color: #fff;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.15rem;
            padding: 18px 38px;
            border-radius: var(--radius-md);
            box-shadow: 0 6px 30px rgba(255, 0, 127, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 36px rgba(255, 0, 127, 0.7);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.04);
            color: var(--gold);
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            padding: 17px 34px;
            border-radius: var(--radius-md);
            border: 2px solid rgba(0, 255, 204, 0.4);
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .btn-secondary:hover {
            background: rgba(0, 255, 204, 0.12);
            border-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
        }

        /* ===================== SECTIONS COMMON ===================== */
        .section-wrap {
			background:linear-gradient(180deg, rgba(21, 6, 43, 0.7) 0%, rgba(12, 2, 20, 0.95) 100%);
            padding: 100px 40px;
            position: relative;
        }

        .section-wrap.alt {
            background: linear-gradient(180deg, rgba(21, 6, 43, 0.7) 0%, rgba(12, 2, 20, 0.95) 100%);
            border-top: 1.5px solid rgba(157, 0, 255, 0.1);
            border-bottom: 1.5px solid rgba(157, 0, 255, 0.1);
        }

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

        .section-tag {
            display: inline-block;
            background: rgba(255, 0, 127, 0.12);
            border: 1.5px solid rgba(255, 0, 127, 0.3);
            color: #FF66B2;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 18px;
            box-shadow: 0 0 15px rgba(255, 0, 127, 0.1);
        }

        .section-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .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: 1.05rem;
            max-width: 680px;
            line-height: 1.8;
        }

        .gold-divider {
            width: 80px;
            height: 4px;
            background: var(--grad-gold);
            border-radius: 4px;
            margin: 20px 0;
        }

        /* ===================== RE-DESIGNED APP SPECS ===================== */
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            background: transparent;
            border: none;
            box-shadow: none;
            margin-top: 50px;
        }

        .spec-row {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 24px;
            background: var(--card-bg);
            border: 1.5px solid var(--glass-border);
            border-radius: var(--radius-md);
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .spec-row::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--grad-gold);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .spec-row:hover {
            transform: translateY(-6px);
            border-color: rgba(0, 255, 204, 0.4);
            box-shadow: 0 12px 35px rgba(0, 255, 204, 0.12);
        }

        .spec-row:hover::before {
            transform: scaleX(1);
        }

        .spec-icon {
            width: 46px;
            height: 46px;
            background: rgba(0, 255, 204, 0.15);
            border: 1.5px solid rgba(0, 255, 204, 0.3);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.15rem;
            margin-bottom: 6px;
        }

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

        .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(0, 255, 204, 0.2);
        }

        /* ===================== TABLE OF CONTENTS ===================== */
        .toc-section {
            background: linear-gradient(135deg, rgba(34, 11, 68, 0.85) 0%, rgba(12, 2, 20, 0.95) 100%);
            border: 1.5px solid rgba(157, 0, 255, 0.25);
            border-radius: var(--radius-lg);
            padding: 40px;
            margin-top: 60px;
            backdrop-filter: blur(15px);
            box-shadow: var(--shadow-card);
        }

        .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 1fr;
            gap: 12px;
        }

        .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: 1.5px solid rgba(255, 255, 255, 0.03);
            background: rgba(255, 255, 255, 0.02);
            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: #FF007F;
            /* Vibrant Pink Index color */
            min-width: 30px;
            font-weight: 700;
        }

        .toc-list {
            counter-reset: toc-counter;
        }

        .toc-list li a:hover {
            color: var(--gold);
            background: rgba(0, 255, 204, 0.08);
            border-color: rgba(0, 255, 204, 0.3);
            transform: translateX(4px);
        }

        /* ===================== RE-DESIGNED ABOUT ===================== */
        #tpc-about .about-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            /* Swap sizes and visual hierarchy */
            gap: 60px;
            align-items: center;
            margin-top: 50px;
        }

        .about-img-wrap {
            position: relative;
            order: 2;
            /* Move image to the right side */
        }

        .about-img-inner {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 15px 45px rgba(157, 0, 255, 0.2), 0 0 30px rgba(0, 255, 204, 0.1);
            border: 2px solid var(--glass-border);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }

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

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

        .about-badge-wrap {
            position: absolute;
            top: -20px;
            left: -20px;
            /* Swap from bottom-right to top-left */
            bottom: auto;
            right: auto;
            background: var(--grad-btn);
            border-radius: var(--radius-md);
            padding: 18px 28px;
            box-shadow: 0 10px 30px rgba(255, 0, 127, 0.5);
            text-align: center;
            z-index: 10;
        }

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

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

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

        .bonus-stat-box {
            background: linear-gradient(135deg, rgba(34, 11, 68, 0.9), rgba(12, 2, 20, 0.9));
            border: 1.5px solid var(--glass-border);
            border-radius: var(--radius-md);
            padding: 24px;
            text-align: left;
            /* Left align for a clean, structural change */
            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(255, 0, 127, 0.4);
            box-shadow: 0 12px 36px rgba(255, 0, 127, 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;
        }

        /* ===================== FEATURES ===================== */
        #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(255, 0, 127, 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: 1.5px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            text-align: left;
            /* Shift alignment from center to left for variety */
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .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(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 204, 0.15);
            border-color: rgba(0, 255, 204, 0.35);
        }

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

        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(0, 255, 204, 0.15), rgba(157, 0, 255, 0.15));
            border: 1.5px solid rgba(0, 255, 204, 0.3);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 0 24px 0;
            /* Left align icon layout */
            font-size: 1.6rem;
            color: var(--gold);
            transition: all 0.35s ease;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, rgba(0, 255, 204, 0.35), rgba(157, 0, 255, 0.3));
            box-shadow: 0 0 25px rgba(0, 255, 204, 0.3);
            transform: rotate(8deg);
        }

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

        .feature-desc {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.75;
        }

        /* GAMES LIST */
        .games-section {
            margin-top: 80px;
            background: rgba(34, 11, 68, 0.3);
            padding: 40px;
            border-radius: var(--radius-lg);
            border: 1.5px solid rgba(157, 0, 255, 0.15);
        }

        .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-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
            /* Balanced column grid */
            gap: 12px;
        }

        .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(0, 255, 204, 0.12);
            border-radius: 40px;
            padding: 12px 20px;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-main);
            transition: all 0.25s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

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

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

        /* ===================== HOW TO PLAY ===================== */
        #tpc-how-to-play {
            background: linear-gradient(135deg, #0C0214 0%, #15062B 50%, #29024D 100%);
        }

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

        .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(34, 11, 68, 0.8), rgba(21, 6, 43, 0.8));
            border: 1.5px solid var(--glass-border);
            border-radius: var(--radius-md);
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
        }

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

        .step-num {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            font-weight: 900;
            background: var(--grad-btn);
            /* Shifted from gold to crimson gradient */
            -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 */
        .hand-rankings {
            background: linear-gradient(135deg, rgba(21, 6, 43, 0.9), rgba(12, 2, 20, 0.95));
            border: 1.5px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-card);
        }

        .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: 1.5px solid rgba(157, 0, 255, 0.15);
            background: rgba(255, 255, 255, 0.01);
            transition: all 0.3s ease;
        }

        .ranking-list li:hover {
            background: rgba(0, 255, 204, 0.05);
            border-color: rgba(0, 255, 204, 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);
        }

        /* ===================== INSTALL SECTION ===================== */
        #tpc-install {
            position: relative;
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.06) 0%, rgba(12, 2, 20, 0.98) 50%, rgba(0, 255, 204, 0.06) 100%);
        }

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

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

        .install-card:hover {
            border-color: rgba(157, 0, 255, 0.35);
            box-shadow: 0 15px 45px rgba(157, 0, 255, 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-btn);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', monospace;
            font-size: 0.9rem;
            font-weight: 800;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(255, 0, 127, 0.5);
        }

        .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);
        }

        /* ===================== BLOG / RELATED POSTS ===================== */
        #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: 1.5px 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: var(--shadow-card);
        }

        .blog-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 255, 204, 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;
            overflow: hidden;
        }

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

        .blog-card-img img {
            width: 100%;
            height: 100%;
            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-btn);
            color: #fff;
            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(255, 0, 127, 0.4);
            letter-spacing: 0.5px;
        }

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

        /* ===================== CONCLUSION & POLICIES ===================== */
        .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(34, 11, 68, 0.8), rgba(12, 2, 20, 0.9));
            border: 1.5px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 30px;
            backdrop-filter: blur(8px);
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }

        .policy-card:hover {
            border-color: rgba(0, 255, 204, 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 ===================== */
        footer {
            background: linear-gradient(180deg, #0C0214 0%, #030008 100%);
            border-top: 2px solid rgba(0, 255, 204, 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(0, 255, 204, 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: 12px;
            border: 1.5px solid var(--glass-border);
        }

        .footer-logo-text {
            font-family: 'Orbitron', monospace;
            font-size: 1.25rem;
            font-weight: 900;
            background: var(--grad-gold);
            -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(255, 0, 127, 0.15);
            border: 1px solid rgba(255, 0, 127, 0.3);
            border-radius: 20px;
            padding: 8px 18px;
            font-size: 0.82rem;
            font-weight: 800;
            color: #FF66B2;
        }

        /* ===================== SCROLL TOP ===================== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--grad-btn);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 1.1rem;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(255, 0, 127, 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(255, 0, 127, 0.7);
        }

        /* ===================== RESPONSIVE STYLES ===================== */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

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

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

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

            nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

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

            .section-desc {
                max-width: 100%;
            }

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

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

            .about-img-wrap {
                order: -1;
                /* Reset on mobile to show image first */
            }

            .about-badge-wrap {
                bottom: auto;
                top: -10px;
                right: auto;
                left: 10px;
            }

            .toc-list {
                grid-template-columns: 1fr;
            }

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

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

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

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

            .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;
            }

            .btn-primary {
                padding: 15px 28px;
                font-size: 1rem;
            }

            .btn-secondary {
                padding: 14px 24px;
                font-size: 0.95rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

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

            .install-grid {
                margin-top: 28px;
            }

            .blog-card-body {
                padding: 16px 14px 18px;
            }

            .blog-card-name {
                font-size: 0.95rem;
            }

            .blog-card-btn {
                font-size: 0.8rem;
                padding: 10px 10px;
            }

            .blog-card-btn i {
                display: none;
            }

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

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

            .toc-section {
                padding: 24px 18px;
            }

            .toc-list {
                grid-template-columns: 1fr;
            }

            .bonus-stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .stat-num {
                font-size: 1.8rem;
            }

            .spec-row {
                padding: 20px;
            }

            .spec-key {
                font-size: 0.78rem;
            }

            .install-card {
                padding: 24px 20px;
            }

            .hand-rankings {
                padding: 24px 18px;
            }

            .policy-grid {
                gap: 16px;
            }

            .policy-card {
                padding: 20px;
            }

            .footer-copy {
                font-size: 0.8rem;
            }

            .section-title {
                font-size: 1.7rem;
            }

            .hero-bonuses {
                gap: 12px;
            }

            .bonus-chip {
                padding: 14px 16px;
            }

            .mobile-nav {
                top: 62px;
            }

            .scroll-top {
                bottom: 20px;
                right: 16px;
                width: 44px;
                height: 44px;
                font-size: 0.95rem;
            }

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

            .blog-card-img {
                margin-top: 10px;
                border-radius: 16px;
            }

        }