@font-face {
    font-family: 'RobloxFont';
    src: local('Arial Black'); /* Fallback for custom font */
}

:root {
    --primary: #00b06f;
    --primary-glow: #00ff87;
    --bg: #0c0d0f;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(0, 176, 111, 0.08), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(0, 176, 111, 0.05), transparent 40%),
        linear-gradient(180deg, #16181b 0%, #0c0d0f 100%);
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
    margin: 0; padding: 0;
    overflow-x: hidden;
    padding-bottom: 80px; /* Space for sticky bar */
}

@media (max-width: 600px) { body { background-attachment: scroll; } }

/* Analytics Banner */
.analytics-banner {
    width: 100%; background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(6px);
    color: #a0a0a0; display: flex; justify-content: space-around; padding: 12px 0;
    font-size: 11px; border-bottom: 1px solid rgba(0, 176, 111, 0.2);
    text-transform: uppercase; font-weight: bold;
}
.pulse-dot {
    width: 8px; height: 8px; background-color: #00b06f; border-radius: 50%;
    display: inline-block; box-shadow: 0 0 10px #00b06f; animation: pulse-green 1.5s infinite; margin-right: 5px;
}
@keyframes pulse-green { 0%, 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 176, 111, 0.7); } 50% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 176, 111, 0); } }

/* Navbar */
.navbar {
    width: 100%; height: 75px; background-color: rgba(26, 27, 29, 0.5);
    backdrop-filter: blur(6px); border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex; align-items: center; justify-content: space-between; padding: 0 5%; box-sizing: border-box;
}
.profile { display: flex; align-items: center; gap: 10px;}
.profileimg img { width: 45px; border-radius: 50%; }
.rainbow-text {
    background: linear-gradient(90deg, #ff007f, #7f00ff, #00d4ff, #00ff00, #ffea00);
    background-size: 300% 300%; -webkit-background-clip: text; color: transparent;
    animation: rainbow-anim 4s ease infinite; font-family: 'RobloxFont', sans-serif; font-size: 18px; margin:0;
}
@keyframes rainbow-anim { 0% { background-position: 0% 50% } 50% { background-position: 100% 50% } 100% { background-position: 0% 50% } }
.badge img { width: 14px; margin-left: 5px; }
.text p { font-size: 12px; color: #b4b4b4; margin: 0; }
.navbar button { background-color: var(--primary); border: none; border-radius: 8px; padding: 8px 18px; color: #fff; font-weight: bold; cursor: pointer; }

/* Main Box */
.boxholder { padding: 40px 10px; display: flex; flex-direction: column; align-items: center;}
.box1 {
    width: 100%; max-width: 480px; background-color: rgba(35, 37, 39, 0.9);
    backdrop-filter: blur(8px); border: 1px solid #393B3D; border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6); display: none; flex-direction: column;
    align-items: center; padding: 25px; text-align: center; margin-bottom: 20px;
}
.active { display: flex; animation: fadeIn 0.4s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.title { font-size: 20px; margin: 15px 0 5px; }
.maintxt { font-size: 14px; color: #b7b1b1; }
.logo img { width: 150px; }

/* Buttons & Inputs */
.device-btn { background: #232527; border: 1px solid #393B3D; border-radius: 8px; color: #fff; padding: 15px; width: 100%; text-align: left; cursor: pointer; font-weight: bold;}
.box1 input { width: 100%; padding: 15px; border: 1px solid #393B3D; border-radius: 8px; background: #111; color: #fff; text-align: center; margin-top: 10px; }
.getrbx, #verify-btn { width: 100%; background: #fff; border: none; padding: 15px; border-radius: 8px; font-weight: bold; color: #000; cursor: pointer; margin-top: 15px; transition: 0.3s; box-shadow: 0 0 15px rgba(255,255,255,0.2);}
.getrbx:hover, #verify-btn:hover { background: #ddd; transform: scale(1.02); }
#verify-btn { background: linear-gradient(135deg, var(--primary), var(--primary-glow)); box-shadow: 0 0 20px rgba(0,176,111,0.4); }

/* Amount Grid */
.amts-grid { display: grid; grid-template-columns: 1fr; gap: 10px; width: 100%; margin-top: 15px; }
.amt-card { background: rgba(0,0,0,0.4); border: 2px solid rgba(255,255,255,0.1); padding: 15px; border-radius: 10px; display: flex; justify-content: space-between; cursor: pointer; position: relative;}
.amt-card.popular { border-color: #ffb800; background: rgba(255,184,0,0.1); }
.amt-badge { position: absolute; top: -10px; right: 10px; background: #ffb800; color: #000; font-size: 10px; padding: 3px 8px; border-radius: 5px; font-weight: bold; }
.amt-badge.bonus { background: #ff4747; color: #fff; }
.price { color: var(--primary); font-weight: bold; }
.robux_total { display: flex; align-items: center; font-size: 18px; font-weight: bold; }

/* Processing & Steps */
.loader { width: 35px; height: 35px; border: 4px solid #222; border-top-color: var(--primary); border-radius: 50%; animation: spin 1s infinite linear; }
@keyframes spin { to { transform: rotate(360deg); } }
.step-list { width: 100%; text-align: left; background: #111; padding: 15px; border-radius: 8px; margin-top: 15px; }
.step-item { font-size: 13px; color: #b7b1b1; margin: 8px 0; font-family: monospace;}
.step-item.done { color: var(--primary); font-weight: bold; }

/* Urgency & Momentum */
.premium-urgency-box { background: rgba(255,71,71,0.1); border: 1px solid rgba(255,71,71,0.4); border-radius: 10px; padding: 15px; width: 100%; margin-bottom: 15px; position: relative; overflow: hidden; }
.premium-urgency-box::before { content: ''; position: absolute; top:0; left:0; width:100%; height:3px; background: repeating-linear-gradient(45deg, #ff4747, #ff4747 10px, transparent 10px, transparent 20px); animation: moveStripes 1s linear infinite; }
@keyframes moveStripes { from { background-position: 0 0; } to { background-position: 40px 0; } }
.countdown-clock { font-size: 30px; font-weight: 900; color: #ff4747; }
.rewards-badge { background: rgba(255,184,0,0.2); color: #ffb800; padding: 5px 10px; border-radius: 15px; font-size: 12px; font-weight: bold; display: inline-block; margin-top: 5px;}

.momentum-steps { background: rgba(0,0,0,0.4); border: 1px solid rgba(0,176,111,0.2); border-radius: 8px; padding: 12px; width: 100%; margin-bottom: 15px; text-align: left;}
.ms-step { font-size: 13px; margin: 5px 0; font-weight: bold; }
.ms-step.done { color: #00c97e; }
.ms-step.pending { color: #ffb800; }

/* Personal Card & Balance */
.live-balance-anim { background: #111; border: 2px solid var(--primary); border-radius: 8px; padding: 10px; display: flex; align-items: center; justify-content: center; width: 100%; margin-bottom: 15px; }
.rbx-number { font-size: 26px; font-weight: bold; margin: 0 5px; }
.rbx-currency { color: var(--primary); font-weight: bold; font-size: 20px; }

.personal-card { background: rgba(10,16,12,0.8); border: 1px solid rgba(0,255,135,0.2); border-radius: 10px; padding: 12px; width: 100%; margin-bottom: 15px; }
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pc-item { background: rgba(255,255,255,0.05); padding: 8px; border-radius: 6px; text-align: center; }
.pc-item:last-child { grid-column: span 2; }
.pc-label { font-size: 10px; color: #888; display: block; text-transform: uppercase; }
.pc-value { font-size: 14px; font-weight: bold; }
.pc-status-tag { color: var(--primary); font-size: 12px; font-weight: bold; display: flex; align-items: center; justify-content: center; gap: 5px; }
.live-dot-pulse { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse-green 1.5s infinite; }

/* Offers Wrap (Progressive) */
.offers-header { font-size: 13px; color: #a0a0a0; margin-bottom: 10px; text-align: left; width: 100%; }
.offers-header strong { color: var(--primary); }
.offers-wrap { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.offer-card { background: #141a1f; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px; text-decoration: none; color: #fff; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.offer-card.recommended { border: 2px solid var(--primary); background: linear-gradient(135deg, #0c1e14, #111d15); }
.offer-recommended-label { background: linear-gradient(90deg, var(--primary), var(--primary-glow)); color: #000; font-size: 10px; font-weight: bold; text-align: center; padding: 3px; position: absolute; top:0; left:0; width:100%; text-transform: uppercase; }
.offer-body { display: flex; align-items: center; gap: 10px; margin-top: 10px;}
.offer-card img { width: 45px; border-radius: 8px; }
.offer-details { flex: 1; text-align: left; }
.offer-title { font-size: 14px; font-weight: bold; }
.offer-desc { font-size: 11px; color: #aaa; margin-top: 3px; }
.offer-btn { background: linear-gradient(135deg, #00c97e, #00ff87); color: #000; padding: 10px 15px; border-radius: 8px; font-weight: bold; font-size: 12px; }
.offer-hidden { display: none !important; }
.offer-visible { display: flex !important; animation: fadeIn 0.4s forwards; }
#see-more-btn { background: rgba(0,176,111,0.1); border: 1px dashed var(--primary); color: var(--primary-glow); width: 100%; padding: 12px; border-radius: 8px; margin-top: 10px; cursor: pointer; font-weight: bold; }

/* SMJ Banner */
.smj-banner { width: 90%; max-width: 500px; margin: 20px auto; }
.smj-inner { background: linear-gradient(145deg, #0a0e1a, #0f1525); border: 1px solid rgba(99,102,241,0.3); border-radius: 15px; padding: 20px; text-align: center; }
.smj-live-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(99,102,241,0.2); padding: 5px 10px; border-radius: 20px; font-size: 10px; color: #a5b4fc; margin-bottom: 10px; }
.smj-live-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; }
.smj-headline { font-size: 18px; margin: 0 0 5px; }
.smj-hl { color: #f472b6; }
.smj-subtext { font-size: 12px; color: #8892a4; }

/* Trust Badges */
.global-trust-badges { background: rgba(26,27,29,0.7); border-radius: 10px; padding: 15px; text-align: center; width: 90%; max-width: 500px; margin: 10px auto; border: 1px solid rgba(255,255,255,0.05); }
.trust-badge-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 5px; }
.t-badge { background: rgba(0,176,111,0.1); color: var(--primary); padding: 5px 10px; border-radius: 5px; font-size: 11px; font-weight: bold; }
.t-stars { color: #ffb800; letter-spacing: 2px; }
.t-users { font-size: 11px; color: #888; }

/* FAQ */
.faq-section { width: 90%; max-width: 500px; margin: 20px auto; text-align: left; }
.faq-details { background: #111; border: 1px solid #333; border-radius: 8px; margin-bottom: 10px; cursor: pointer; }
.faq-summary { padding: 15px; font-size: 14px; font-weight: bold; outline: none; list-style: none; display: flex; justify-content: space-between; }
.faq-summary::-webkit-details-marker { display: none; }
.faq-content { padding: 0 15px 15px; font-size: 12px; color: #aaa; }

/* Comments */
.comments-section { background: rgba(22,24,28,0.8); border-radius: 15px; padding: 20px; width: 90%; max-width: 500px; margin: 20px auto; text-align: left; }
.comments-header-premium { margin-bottom: 15px; }
.cp-top { display: flex; justify-content: space-between; align-items: center; }
.cp-title { color: #FFD700; font-weight: bold; text-transform: uppercase; font-size: 14px; }
.cp-count { background: rgba(255,215,0,0.1); color: #FFD700; padding: 3px 8px; border-radius: 10px; font-size: 11px; }
.cp-glow-line { height: 1px; background: #333; margin-top: 10px; position: relative; }
.cp-glow-line::after { content:''; position:absolute; left:0; top:0; width:40px; height:1px; background:#FFD700; }
.comment { display: flex; gap: 10px; margin-bottom: 15px; }
.comment.reply { margin-left: 40px; }
.comment-avatar { width: 35px; height: 35px; border-radius: 50%; }
.comment-author { font-size: 13px; font-weight: bold; color: #fff; }
.verified-badge { background: var(--primary); color: #000; font-size: 9px; padding: 1px 4px; border-radius: 50%; margin-left: 5px; }
.comment-text { font-size: 12px; color: #ccc; margin-top: 4px; }

/* Sticky Bars */
.sticky-progress { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(10,16,12,0.95); border-top: 1px solid var(--primary); padding: 10px 20px; z-index: 900; display: none; }
.sp-label { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 5px; color: #aaa; }
.sp-bar-bg { width: 100%; height: 6px; background: #333; border-radius: 10px; }
.sp-bar-fill { height: 100%; width: 66%; background: var(--primary); border-radius: 10px; }
.sticky-claim { position: fixed; bottom: 60px; left: 5%; width: 90%; background: linear-gradient(135deg, var(--primary), var(--primary-glow)); border: none; padding: 15px; border-radius: 10px; font-weight: bold; font-size: 15px; z-index: 900; display: none; box-shadow: 0 5px 15px rgba(0,176,111,0.4); }

/* Modals & Notifications */
.modal, .post-click-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 2000; justify-content: center; align-items: center; }
.modal-content, .post-click-box { background: #16181b; padding: 20px; border-radius: 12px; width: 90%; max-width: 400px; border: 1px solid #333; position: relative; text-align: center; }
.close-btn { position: absolute; top: 10px; right: 15px; font-size: 24px; color: #fff; cursor: pointer; }
.exit-btn { background: var(--primary); color: #fff; border: none; padding: 15px; width: 100%; border-radius: 8px; font-weight: bold; cursor: pointer; animation: pulse-green 1.5s infinite; }
.live-notifications { position: fixed; bottom: 20px; left: 10px; z-index: 999; display: flex; flex-direction: column; gap: 5px; }
.notif { background: #111; border-left: 3px solid var(--primary); padding: 10px; border-radius: 5px; font-size: 11px; animation: slideIn 0.3s; }