.elementor-922 .elementor-element.elementor-element-45bf6d3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-7c1d50f */:root {
            --dark-bg: #0a0f1e;
            --card-bg: #161e31;
            --primary-gold: #f59e0b;
            --success-green: #10b981;
            --text-main: #e2e8f0;
            --accent-blue: #3b82f6;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
        }

        .rtp-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .rtp-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .rtp-header h1 {
            color: var(--primary-gold);
            font-size: 2.2rem;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        /* RTP Grid System */
        .rtp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 25px;
        }

        .game-card {
            background: var(--card-bg);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease;
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-blue);
        }

        .game-img {
            width: 100%;
            height: 180px;
            background: #232d45; /* Placeholder jika gambar belum diinput */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .game-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .rtp-info {
            padding: 15px;
            text-align: center;
        }

        .game-title {
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #fff;
        }

        /* Progress Bar */
        .progress-container {
            background: #000;
            border-radius: 10px;
            height: 20px;
            width: 100%;
            margin: 10px 0;
            overflow: hidden;
            border: 1px solid #333;
        }

        .progress-bar {
            height: 100%;
            text-align: center;
            font-size: 12px;
            line-height: 20px;
            font-weight: bold;
            color: #fff;
            transition: width 1s ease-in-out;
        }

        .high { background: linear-gradient(90deg, #10b981, #34d399); }
        .medium { background: linear-gradient(90deg, #f59e0b, #fbbf24); }

        .btn-pola {
            display: block;
            background: var(--accent-blue);
            color: white;
            padding: 8px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 0.9rem;
            margin-top: 10px;
            transition: 0.3s;
        }

        .btn-pola:hover { background: #2563eb; }

        @media (max-width: 600px) {
            .rtp-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
            .rtp-header h1 { font-size: 1.5rem; }
        }/* End custom CSS */