* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="%230a0a0a"/><circle cx="10" cy="10" r="1" fill="%231a1a1a"/></svg>');
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
}

/* Topbar */
.top-bar {
    background: linear-gradient(to bottom, #1a0000, #330000);
    border-bottom: 2px solid #ff0000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.7);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.8));
}

.buttons a {
    text-decoration: none;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 3px;
    font-size: 14px;
    margin-left: 5px;
    display: inline-block;
}

.btn-login {
    background: #333;
    color: #fff;
    border: 1px solid #555;
}

.btn-daftar {
    background: linear-gradient(to bottom, #ffcc00, #ff9900);
    color: #000;
    border: 1px solid #ff9900;
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

/* Hero Banner */
.hero-section {
    background: #000;
    padding: 15px 10px;
    border-bottom: 2px solid #ff0000;
    text-align: center;
}

.hero-section img {
    width: 100%;
    max-width: 1000px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(253, 0, 0, 0.4);
}

/* Trust Badge */
.trust-badge {
    text-align: center;
    padding: 25px 10px 15px;
    background: linear-gradient(to bottom, #1a0000, #000);
    border-top: 2px solid #ff0000;
}

.trust-badge h1 {
    font-size: 32px;
    font-weight: 900;
    color: #ffcc00;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 5px;
    font-style: italic;
}

.trust-badge p {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Marquee */
.running-text {
    display: flex;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 2px solid #555;
}

.rt-title {
    background: #ff0000;
    color: #fff;
    padding: 10px 15px;
    white-space: nowrap;
    z-index: 10;
}

.running-text marquee {
    padding: 10px;
}

.mq-item {
    margin-right: 30px;
}

.mq-hl {
    color: #cc0000;
}

/* Hero Stats Layout */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 10px;
    align-items: flex-start;
}

/* Speed Board */
.speed-board {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 35%;
}
.speed-item {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.speed-icon {
    font-size: 30px;
    width: 40px;
    text-align: center;
}
.speed-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.speed-info span {
    font-size: 12px;
    color: #aaa;
}
.speed-info strong {
    font-size: 16px;
    color: #fff;
    margin: 3px 0;
}
.speed-bar {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 5px;
}
.fill {
    height: 100%;
    border-radius: 3px;
}
.dep-fill {
    width: 90%;
    background: linear-gradient(90deg, #008800, #00ff00);
    animation: load-dep 2s infinite alternate;
}
.wd-fill {
    width: 70%;
    background: linear-gradient(90deg, #0055aa, #00aaff);
    animation: load-wd 3s infinite alternate;
}
@keyframes load-dep {
    0% { width: 80%; }
    100% { width: 95%; }
}
@keyframes load-wd {
    0% { width: 60%; }
    100% { width: 85%; }
}

/* Top Games Board */
.top-games-board {
    width: 65%;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}
.top-games-list {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tg-item {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #333;
}
.tg-rank {
    font-size: 20px;
    font-weight: 900;
    width: 40px;
    color: #888;
}
.tg-name {
    flex: 1;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}
.tg-bar-container {
    width: 40%;
    height: 8px;
    background: #000;
    border-radius: 4px;
    margin: 0 15px;
    overflow: hidden;
}
.tg-bar {
    height: 100%;
    border-radius: 4px;
}
.tg-percent {
    width: 50px;
    text-align: right;
    font-weight: 900;
    color: #00ff00;
}

/* WA Slider */
.wa-testi-container {
    margin-top: 30px;
}
.wa-slider-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #25D366 #111;
}
.wa-slider {
    display: inline-flex;
    gap: 20px;
}
.wa-card {
    background: #efeae2;
    border-radius: 12px;
    width: 320px;
    min-width: 320px;
    white-space: normal;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border: 2px solid #25D366;
}
.wa-header {
    background: #075e54;
    color: #fff;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wa-header img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
}
.wa-contact {
    display: flex;
    flex-direction: column;
}
.wa-contact strong {
    font-size: 15px;
}
.wa-contact span {
    font-size: 12px;
    color: #d1ffd6;
}
.wa-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: cover;
}
.chat-bubble {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    max-width: 85%;
    line-height: 1.4;
    position: relative;
    color: #000;
}
.chat-bubble.player {
    background: #fff;
    align-self: flex-start;
    border-top-left-radius: 0;
}
.chat-bubble.cs {
    background: #dcf8c6;
    align-self: flex-end;
    border-top-right-radius: 0;
}

/* SEO Container */
.seo-container {
    margin-top: 30px;
    background: #111;
    border: 1px solid #333;
    padding: 20px;
    color: #ccc;
    line-height: 1.6;
    font-size: 13px;
    text-align: justify;
}
.seo-container h1 {
    color: #ffcc00;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px dashed #444;
    padding-bottom: 10px;
    text-transform: uppercase;
}
.seo-container h2 {
    color: #00ff00;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.seo-content ul {
    padding-left: 20px;
    margin-top: 10px;
}
.seo-content li {
    margin-bottom: 8px;
}
.seo-content strong {
    color: #fff;
}

/* Footer */
.wa-testi-container {
    margin-top: 30px;
}
.wa-slider-wrapper {
    overflow-x: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.wa-slider-wrapper::-webkit-scrollbar {
    display: none;
}
.wa-slider {
    display: flex;
    gap: 20px;
    width: max-content;
}
.wa-card {
    background: #efeae2;
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    flex-shrink: 0;
    font-family: Arial, sans-serif;
}
.wa-header {
    background: #008069;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wa-header img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
}
.wa-contact {
    display: flex;
    flex-direction: column;
}
.wa-contact strong {
    color: #fff;
    font-size: 15px;
}
.wa-contact span {
    color: #d1ffd6;
    font-size: 11px;
}
.wa-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: cover;
    height: 250px;
    overflow-y: auto;
}
.chat-bubble {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
    color: #000;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.chat-bubble.player {
    align-self: flex-end;
    background: #d9fdd3;
    border-top-right-radius: 0;
}
.chat-bubble.cs {
    align-self: flex-start;
    background: #ffffff;
    border-top-left-radius: 0;
}

/* Content Container */
.container {
    max-width: 1000px;
    margin: 20px auto;
    background: #111;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.panel-title {
    background: linear-gradient(to right, #333, #111);
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #ffcc00;
    border-bottom: 2px solid #ff0000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-blink {
    color: #00ff00;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #00ff00;
    border-radius: 50%;
    display: inline-block;
    margin-left: 8px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Table */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.wd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: center;
}

.wd-table th {
    background: #222;
    color: #fff;
    padding: 12px;
    border-bottom: 2px solid #444;
}

.wd-table td {
    padding: 12px;
    border-bottom: 1px solid #222;
    vertical-align: middle;
}

.wd-table tr:nth-child(even) {
    background: #151515;
}

.wd-table tr:hover {
    background: #2a2a2a;
}

.t-game {
    color: #ffcc00;
    font-weight: bold;
}

.t-bank {
    color: #fff;
    font-weight: bold;
    background: #333;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
}

.t-amount {
    color: #00ff00;
    font-size: 16px;
    font-weight: bold;
}

.t-status {
    background: #008800;
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 5px #00ff00;
}

.btn-bukti {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
}

.btn-bukti:hover {
    background: #0055aa;
}

/* Pagination */
.pagination {
    text-align: center;
    padding: 20px;
}

#btn-more {
    background: #444;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
}

#btn-more:hover {
    background: #666;
}

/* Base Modal Settings */
.modal {
    display: none;
    position: fixed;
    z-index: 100000; /* Fixed: harus di atas top-bar (10000) */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    background-color: #fff;
    margin: 40px auto;
    width: 360px;
    max-width: 95%;
    height: 720px; /* Dikembalikan jadi tinggi statis agar bentuknya memanjang seperti HP */
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden; /* Dikembalikan agar layout app-nya tidak bocor ke luar sudut membulat */
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.close-btn-global {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 9999;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

/* ================================ */
/* EXACT APP MOCKUPS CSS            */
/* ================================ */

/* 1. BNI */
.app-bni {
    font-family: Arial, sans-serif;
    background: #fff;
    min-height: 100%;
    padding-bottom: 20px;
    color: #000;
}

.bni-plane-box {
    margin: 40px auto 20px;
    width: 120px;
    height: 80px;
    background: #e0f2f1;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bni-check-circle {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: #00c853;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border: 3px solid #fff;
}

.bni-title {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.bni-amount {
    text-align: center;
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.bni-date {
    text-align: center;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
}

.bni-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.bni-action {
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    color: #000;
}

.bni-icon-box {
    width: 50px;
    height: 50px;
    background: #f47b20;
    border-radius: 12px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 8px;
}

.bni-label {
    font-size: 12px;
    font-weight: bold;
    margin: 0 20px 5px;
    color: #000;
}

.bni-box {
    margin: 0 20px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
}

.bni-box-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.bni-box-desc {
    font-size: 13px;
    color: #555;
}

.bni-footer-btn {
    margin: 30px 20px;
    background: #4db6ac;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}

/* 2. Mandiri */
.app-mandiri {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    min-height: 100%;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.man-top {
    padding: 40px 20px 20px;
    text-align: center;
    width: 100%;
}

.man-check {
    font-size: 60px;
    color: #4ade80;
    margin-bottom: 15px;
}

.man-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.man-date {
    font-size: 12px;
    color: #888;
}

.man-card {
    background: #fff;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid #eee;
}

.man-card-top {
    padding: 15px;
    border-bottom: 1px dashed #eee;
    font-size: 12px;
    color: #666;
    font-weight: bold;
}

.man-label {
    font-size: 12px;
    color: #888;
    margin: 20px 0 5px;
}

.man-name {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
}

.man-bank {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.man-divider {
    width: 100%;
    height: 60px;
    background-image: radial-gradient(circle at 10px 10px, #f0f0f0 2px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.5;
}

.man-amount {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 5px;
}

.man-sender {
    font-size: 12px;
    color: #888;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.man-share-btn {
    margin: 0 20px;
    padding: 12px;
    border: 1px solid #0066cc;
    color: #0066cc;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

/* 3. BCA */
.app-bca {
    font-family: Arial, sans-serif;
    background: #fff;
    min-height: 100%;
    position: relative;
}

.app-bca::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="10" y="50" font-size="20" font-family="Arial" font-weight="bold" fill="%23f0f4f8" transform="rotate(-30 50 50)">BCA</text></svg>');
    z-index: 1;
    pointer-events: none;
}

.bca-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.bca-nav {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px;
}

.bca-logo {
    font-size: 24px;
    font-weight: 900;
    color: #0056a6;
    font-style: italic;
    margin-left: auto;
    margin-right: auto;
}

.bca-main {
    text-align: center;
    margin-bottom: 30px;
}

.bca-check-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #009688;
    border: 4px solid #fff;
    outline: 3px solid #009688;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bca-check-wrap i {
    color: #fff;
    font-size: 30px;
}

.bca-title {
    font-size: 18px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 5px;
}

.bca-date {
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
}

.bca-amount {
    font-size: 22px;
    font-weight: 900;
    color: #003366;
}

.bca-details {
    font-size: 13px;
    color: #333;
    margin-bottom: 40px;
}

.bca-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.bca-row .b-right {
    font-weight: bold;
    max-width: 60%;
    text-align: right;
}

.bca-detail-link {
    text-align: center;
    color: #0056a6;
    font-weight: bold;
    font-size: 12px;
    margin-top: 20px;
}

.bca-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bca-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #0056a6;
    color: #0056a6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.bca-selesai {
    flex-grow: 1;
    background: #0056a6;
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}

/* 4. BRI */
.app-bri {
    font-family: Arial, sans-serif;
    background: #f5f6f8;
    min-height: 100%;
    position: relative;
}

.bri-top-bg {
    background: #0b5eaf;
    color: #fff;
    text-align: center;
    padding: 40px 20px 80px;
    position: relative;
}

.bri-top-bg::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: #0b5eaf;
    border-radius: 50%;
    z-index: 1;
}

.bri-check-circle {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    position: relative;
    z-index: 2;
}

.bri-check-circle i {
    color: #0b5eaf;
    font-size: 30px;
}

.bri-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.bri-date {
    font-size: 12px;
    position: relative;
    z-index: 2;
}

.bri-card {
    background: #fff;
    margin: -50px 20px 20px;
    border-radius: 12px;
    position: relative;
    z-index: 3;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bri-c-label {
    font-size: 12px;
    color: #777;
    text-align: center;
    margin-bottom: 5px;
}

.bri-c-amount {
    font-size: 24px;
    font-weight: 900;
    color: #0b5eaf;
    text-align: center;
    margin-bottom: 20px;
}

.bri-c-ref {
    font-size: 12px;
    color: #777;
    margin-bottom: 15px;
}

.bri-divider {
    border-bottom: 1px dashed #ccc;
    margin: 15px 0;
}

.bri-flex {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.bri-circle {
    width: 35px;
    height: 35px;
    background: #0b5eaf;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 15px;
}

.bri-circle-grey {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    color: #0b5eaf;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 15px;
    border: 1px solid #ccc;
}

.bri-text-col {
    font-size: 12px;
    line-height: 1.4;
    color: #000;
}

.bri-detail-link {
    text-align: center;
    color: #0b5eaf;
    font-weight: bold;
    font-size: 13px;
    margin-top: 20px;
}

.bri-bottom-actions {
    display: flex;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.bri-btn-outline {
    flex: 1;
    border: 1px solid #0b5eaf;
    color: #0b5eaf;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
}

.bri-btn-solid {
    flex: 1;
    background: #0b5eaf;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

/* 5. SeaBank */
.app-sea {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    min-height: 100%;
    color: #000;
}

.sea-top-amount {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    padding: 40px 20px 20px;
}

.sea-card {
    background: #fff;
    margin: 0 15px;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid #eee;
}

.sea-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.sea-left {
    font-size: 14px;
    color: #666;
    width: 30%;
}

.sea-right {
    font-size: 14px;
    width: 70%;
    text-align: right;
    font-weight: 500;
}

.sea-sub {
    font-size: 12px;
    color: #777;
    display: block;
    margin-top: 4px;
}

.sea-divider {
    border-bottom: 1px solid #f0f0f0;
    margin: 15px 0;
}

.sea-row-simple {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
    color: #555;
}

.sea-row-simple span:last-child {
    font-weight: 500;
    color: #000;
}

.sea-help {
    text-align: center;
    color: #00a8e8;
    font-size: 14px;
    margin-top: 30px;
    font-weight: 500;
    cursor: pointer;
}

/* Jackpot */
.jackpot-container {
    background: linear-gradient(to right, #4a0000, #ff0000, #4a0000);
    text-align: center;
    padding: 15px 10px;
    border-bottom: 3px solid #ffcc00;
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}
.jp-title {
    color: #ffcc00;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px #000;
}
.jp-amount {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    font-family: 'Courier New', Courier, monospace;
    text-shadow: 0 0 10px #ffcc00, 0 2px 5px #000;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #333;
    padding: 30px 20px 80px;
    text-align: center;
    margin-top: 40px;
}
/* Footer Bank Logos */
.link-title {
    font-size: 16px;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
}

.center-bank {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.bank {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #151515;
    padding: 5px;
    border-radius: 6px;
    border: 1px solid #333;
    width: 65px;
    height: 50px;
    justify-content: center;
}

.status-icon {
    height: 12px;
    margin-bottom: 3px;
}

.bank img:not(.status-icon) {
    height: 20px;
    max-width: 100%;
    object-fit: contain;
}
.f-providers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}
.f-prov {
    height: 30px;
    border-radius: 4px;
}
.f-copy {
    color: #666;
    font-size: 12px;
}
.age-warn {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.age-icon {
    background: #ff0000;
    color: #fff;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 12px;
}

/* Floating Action Menu */
.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fab-button {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #cc0000, #ff3333);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.6);
    cursor: pointer;
    animation: fab-pulse 2s infinite;
    border: 3px solid #222;
    transition: transform 0.3s;
}

.fab-button:hover {
    transform: scale(1.1) rotate(5deg);
}

.fab-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

@keyframes fab-pulse {
    0% { box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(204, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(204, 0, 0, 0); }
}

.fab-menu {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #ffcc00;
    border-radius: 12px;
    width: 250px;
    margin-bottom: 15px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    transform-origin: bottom right;
    animation: fab-slide-up 0.3s ease-out forwards;
}

@keyframes fab-slide-up {
    from { opacity: 0; transform: scale(0.5) translateY(50px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.fab-header {
    background: linear-gradient(to right, #660000, #ff0000);
    color: #fff;
    padding: 12px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #ffcc00;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.fab-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: background 0.2s;
}

.fab-item:hover {
    background: rgba(255, 204, 0, 0.1);
}

.fab-item:last-of-type {
    border-bottom: none;
}

.fab-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.fab-text {
    display: flex;
    flex-direction: column;
}

.fab-text strong {
    color: #ffcc00;
    font-size: 13px;
    margin-bottom: 2px;
}

.fab-text span {
    color: #aaa;
    font-size: 11px;
}

.fab-footer {
    background: #111;
    color: #ffcc00;
    font-size: 11px;
    text-align: center;
    padding: 8px;
    border-top: 1px solid #333;
}
/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #050505;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}
.splash-logo {
    height: 60px;
    margin-bottom: 20px;
    animation: pulse-op 1.5s infinite;
}
.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #333;
    border-top: 4px solid #ffcc00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.splash-text {
    color: #ffcc00;
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: 2px;
}
@keyframes pulse-op {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Toast Notification */
.toast-container {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: rgba(15, 15, 15, 0.95);
    border-left: 4px solid #ffcc00;
    padding: 10px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
    z-index: 9998;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.toast-container.show {
    bottom: 20px;
}
.toast-icon {
    color: #ffcc00;
    font-size: 20px;
    animation: bell-ring 2s infinite;
}
.toast-text {
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
}
.toast-text strong {
    color: #ffcc00;
}
@keyframes bell-ring {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50% { transform: rotate(10deg); }
    20%, 40% { transform: rotate(-10deg); }
}

/* RTP Gacor Text inside Table */
.gacor-text {
    font-weight: 900;
    cursor: pointer;
    background: linear-gradient(90deg, #ff0000, #ffcc00, #00ff00, #00aaff, #ff00ff, #ff0000);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow-text 3s linear infinite;
    display: inline-block;
}
.fire-icon {
    font-size: 14px;
    animation: blink-fast 0.5s infinite alternate;
    cursor: pointer;
    margin-left: 5px;
}
@keyframes rainbow-text {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* RTP Modal */
.rtp-content {
    background: linear-gradient(to bottom, #111, #000);
    margin: 100px auto;
    width: 320px;
    max-width: 90%;
    padding: 30px 20px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.4);
    border: 2px solid #ffcc00;
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
}
.rtp-header {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.rtp-meter-container {
    background: #222;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #444;
    margin-bottom: 15px;
}
.rtp-meter {
    height: 20px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #333;
}
.rtp-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff0000, #ffcc00, #00ff00);
    width: 0%;
    transition: width 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.rtp-percent {
    font-size: 36px;
    font-weight: 900;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}
.rtp-status {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}
.blink-gacor {
    color: #ffcc00;
    animation: blink-fast 0.5s infinite alternate;
}

/* Pola Gacor Box */
.pola-container {
    background: #050505;
    border: 1px dashed #ffcc00;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}
.pola-title {
    color: #00ff00;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}
.pola-lines {
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
}
.pola-lines span {
    display: block;
}
.pola-lines span i {
    color: #ffcc00;
    margin-right: 8px;
}

.rtp-play-btn {
    background: linear-gradient(to right, #cc0000, #ff0000);
    color: #fff;
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
}
.rtp-play-btn:hover {
    transform: scale(1.05);
}
@keyframes blink-fast {
    0% { opacity: 1; text-shadow: 0 0 10px #ffcc00; }
    100% { opacity: 0.5; text-shadow: none; }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
    }
    .speed-board, .top-games-board {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .tg-item {
        flex-wrap: wrap;
    }
    .tg-bar-container {
        width: 100%;
        margin: 10px 0 0 0;
        order: 4;
    }
    .container {
        margin: 15px 10px;
        width: calc(100% - 20px);
        border-radius: 8px;
        overflow: hidden;
    }

    .trust-badge h1 {
        font-size: 18px;
    }

    .trust-badge p {
        font-size: 11px;
    }

    .top-bar {
        flex-direction: column;
        gap: 10px;
    }

    .panel-title {
        flex-direction: column;
        align-items: flex-start;
        font-size: 14px;
        gap: 8px;
    }

    .wd-table th,
    .wd-table td {
        font-size: 11px;
        padding: 8px 6px;
        white-space: nowrap;
    }

    .t-amount {
        font-size: 12px;
    }

    .t-status {
        padding: 3px 6px;
        font-size: 10px;
    }

    .btn-bukti {
        padding: 5px 10px;
        font-size: 10px;
    }

    .jp-amount {
        font-size: 24px;
    }
}