.qq-poker-app-container {
            all: initial; /* Reset properti warisan dari web luar */
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #0f0f0f;
            color: #e5e5e5;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }

        .qq-poker-app-container * {
            box-sizing: border-box;
        }

        .qq-poker-app-container .wrapper-main {
            max-width: 800px;
            margin: 2rem auto;
            background-color: #1a1a1a;
            border: 1px solid #333;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            flex: 1;
            border-radius: 0.5rem;
            overflow: hidden;
            width: 95%; /* Responsif default */
        }

        /* TYPOGRAPHY */
        .qq-poker-app-container h1 {
            background: linear-gradient(to right, #d32f2f, #b71c1c);
            color: white;
            padding: 20px;
            text-align: center;
            font-weight: bold;
            font-size: 1.5rem;
            text-transform: uppercase;
            border-bottom: 3px solid #fbc02d;
            margin: 0;
            display: block;
        }

        .qq-poker-app-container h2 {
            color: #ff5252;
            border-left: 4px solid #fbc02d;
            padding-left: 10px;
            margin: 25px 0 15px 0;
            font-size: 1.25rem;
            font-weight: bold;
            display: block;
        }

        .qq-poker-app-container .content-padding {
            padding: 20px;
        }

        .qq-poker-app-container p {
            margin-bottom: 1rem;
            display: block;
        }

        .qq-poker-app-container .quote {
            background-color: #310101;
            border-left: 5px solid #d32f2f;
            padding: 15px;
            font-style: italic;
            margin: 20px 0;
            border-radius: 4px;
        }

        .qq-poker-app-container a {
            color: #ff5252;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        .qq-poker-app-container a:hover {
            color: #fbc02d;
        }

        .qq-poker-app-container ul {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 1.5rem;
        }

        .qq-poker-app-container li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }

        .qq-poker-app-container li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #fbc02d;
            font-weight: bold;
        }

        .qq-poker-app-container .dateline {
            font-weight: bold;
            color: #fbc02d;
        }

        /* REVIEW & FAQ */
        .qq-poker-app-container .review-card {
            background: #252525;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            border: 1px solid #333;
        }

        .qq-poker-app-container .stars {
            color: #fbc02d;
            margin-bottom: 5px;
        }

        .qq-poker-app-container details {
            background: #252525;
            margin-bottom: 10px;
            border-radius: 5px;
            border: 1px solid #333;
            overflow: hidden;
        }

        .qq-poker-app-container summary {
            padding: 15px;
            cursor: pointer;
            font-weight: bold;
            color: #fff;
            list-style: none;
            position: relative;
        }

        .qq-poker-app-container summary::after {
            content: '+';
            position: absolute;
            right: 15px;
            color: #fbc02d;
        }

        .qq-poker-app-container details[open] summary::after {
            content: '-';
        }

        .qq-poker-app-container .faq-content {
            padding: 15px;
            border-top: 1px solid #333;
            background: #1d1d1d;
            font-size: 0.95rem;
        }

        /* FLOATING BUTTONS */
        .qq-poker-app-container .floating-btn {
            position: fixed;
            left: 20px;
            width: 55px;
            height: 55px;
            z-index: 9999;
            border-radius: 50%;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
        }

        .qq-poker-app-container .floating-btn:hover {
            transform: scale(1.1);
        }

        .qq-poker-app-container #whatsapp { bottom: 35px; }
        .qq-poker-app-container .rtp-icon { bottom: 100px; box-shadow: #ff0000 0px 0 15px 0px; border: 1px solid transparent; }
        .qq-poker-app-container .tg-icon { bottom: 157px; box-shadow: #ff0000 0px 0 15px 0px; border: 1px solid transparent; }
        .qq-poker-app-container .ls-icon { bottom: 223px; box-shadow: #ff0000 0px 0 15px 0px; border: 1px solid #ff0000; }

        .qq-poker-app-container .floating-btn img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            display: block;
        }

        /* FOOTER */
        .qq-poker-app-container footer {
            background-color: #050505;
            border-top: 2px solid #333;
            padding: 40px 20px;
            margin-top: 50px;
            width: 100%;
        }

        .qq-poker-app-container .footer-content {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .qq-poker-app-container .footer-section h4 {
            color: #fbc02d;
            font-weight: bold;
            margin: 0 0 15px 0;
            text-transform: uppercase;
            font-size: 0.9rem;
            display: block;
        }

        .qq-poker-app-container .footer-bottom {
            max-width: 800px;
            margin: 30px auto 0;
            padding-top: 20px;
            border-top: 1px solid #222;
            text-align: center;
            color: #666;
            font-size: 0.8rem;
        }

        /* BUTTONS */
        .qq-poker-app-container .btn-primary {
            display: inline-block;
            background-color: #d32f2f;
            color: white !important;
            padding: 0.75rem 2rem;
            border-radius: 9999px;
            font-weight: bold;
            transition: background-color 0.3s;
            margin-top: 1rem;
            text-align: center;
        }

        /* MEDIA QUERIES (MOBILE OPTIMIZATION) */
        @media (max-width: 640px) {
            .qq-poker-app-container .wrapper-main {
                margin: 10px auto;
            }
            .qq-poker-app-container h1 {
                font-size: 1.2rem;
                padding: 15px;
            }
            .qq-poker-app-container h2 {
                font-size: 1.1rem;
            }
            .qq-poker-app-container .content-padding {
                padding: 15px;
            }
            .qq-poker-app-container .floating-btn {
                width: 45px;
                height: 45px;
                left: 10px;
            }
            .qq-poker-app-container #whatsapp { bottom: 20px; }
            .qq-poker-app-container .rtp-icon { bottom: 75px; }
            .qq-poker-app-container .tg-icon { bottom: 130px; }
            .qq-poker-app-container .ls-icon { bottom: 185px; }
            .qq-poker-app-container .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 20px;
            }
        }