:root {
    --primary: #e6192b; 
    --primary-dark: #b9101f;
    --secondary: #facc15; 
    --secondary-dark: #eab308;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --green: #22c55e;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: var(--bg-dark); color: var(--text-main); background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); min-height: 100vh; }
.text-yellow { color: var(--secondary); }
.text-red { color: var(--primary); }
.font-bold { font-weight: 800; }
.hidden { display: none !important; }
.mt-3 { margin-top: 20px; }

header {
    text-align: center; padding: 30px 15px; background: linear-gradient(135deg, rgba(230,25,43,0.9), rgba(15,23,42,0.9));
    border-bottom: 4px solid var(--secondary); box-shadow: 0 4px 20px rgba(230,25,43,0.4);
}
.main-title { font-size: 3rem; font-weight: 900; color: white; text-shadow: 3px 3px 0px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; letter-spacing: 2px; margin-bottom: 5px; }
.badge { display: inline-block; background: var(--secondary); color: #000; font-weight: 900; padding: 5px 15px; border-radius: 20px; font-size: 1.2rem; box-shadow: 0 4px 10px rgba(250,204,21,0.5); border: 2px solid #fff; }

.container { max-width: 800px; margin: 0 auto; padding: 20px 15px; }

.game-card { background: var(--bg-card); border-radius: 20px; border: 2px solid #334155; box-shadow: 0 10px 30px rgba(0,0,0,0.5); overflow: hidden; margin-bottom: 40px; }
.card-header { background: rgba(0,0,0,0.3); padding: 20px; border-bottom: 1px solid #334155; }
.card-header h2 { font-size: 2rem; margin-bottom: 5px; color: #fff; }
.attempts-left { background: rgba(255,0,0,0.1); display: inline-block; padding: 5px 15px; border-radius: 10px; margin-top: 10px; border: 1px solid var(--primary); }
.card-body { padding: 40px 20px; }
.text-center { text-align: center; }

/* Dice Game UI */
.dice-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    perspective: 1000px;
}

.die {
    font-size: 8rem;
    color: white;
    background: #e6192b;
    border-radius: 20px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0px 0px 20px rgba(0,0,0,0.5), 0px 10px 20px rgba(0,0,0,0.5);
    border: 4px solid #fff;
    transition: transform 0.1s;
}

/* Rolling Animation */
.rolling {
    animation: roll 0.5s infinite linear;
}

@keyframes roll {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1); }
    25% { transform: rotateX(90deg) rotateY(90deg) rotateZ(45deg) scale(1.1); }
    50% { transform: rotateX(180deg) rotateY(180deg) rotateZ(90deg) scale(1); }
    75% { transform: rotateX(270deg) rotateY(270deg) rotateZ(135deg) scale(1.1); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(180deg) scale(1); }
}

/* Buttons */
.btn-primary { display: inline-block; width: 100%; background: linear-gradient(to bottom, var(--primary), var(--primary-dark)); color: white; border: 2px solid #ff4d4d; padding: 18px; font-size: 1.4rem; font-weight: 900; text-transform: uppercase; border-radius: 12px; cursor: pointer; transition: all 0.3s; box-shadow: 0 5px 15px rgba(230,25,43,0.4); text-decoration: none; border-bottom: 6px solid #8e0b17; }
.btn-primary:active { transform: translateY(4px); border-bottom-width: 2px; }
.btn-massive { font-size: 1.8rem; padding: 25px; }

.btn-pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(230,25,43, 0.7); } 50% { box-shadow: 0 0 0 20px rgba(230,25,43, 0); } 100% { box-shadow: 0 0 0 0 rgba(230,25,43, 0); } }

/* Winning View */
.jackpot-icon { font-size: 6rem; margin-bottom: 10px; animation: tada 1s infinite; }
@keyframes tada { 0% {transform: scale(1);} 10%, 20% {transform: scale(0.9) rotate(-3deg);} 30%, 50%, 70%, 90% {transform: scale(1.2) rotate(3deg);} 40%, 60%, 80% {transform: scale(1.2) rotate(-3deg);} 100% {transform: scale(1);} }
.huge-text { font-size: 3rem; margin-bottom: 10px; text-shadow: 0 0 20px rgba(250,204,21,0.5); }
.win-msg { font-size: 1.2rem; margin-bottom: 30px; }

.claim-form { background: rgba(0,0,0,0.4); padding: 30px; border-radius: 15px; border: 1px solid #475569; }
.instruction { font-size: 1.1rem; margin-bottom: 15px; font-weight: bold; }
.input-wrapper { position: relative; margin-bottom: 20px; }
.input-wrapper .icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 1.2rem; }
.input-wrapper input { width: 100%; background: #0f172a; border: 2px solid #475569; color: white; padding: 15px 15px 15px 45px; border-radius: 12px; font-size: 1.2rem; outline: none; transition: all 0.3s; }
.input-wrapper input:focus { border-color: var(--secondary); box-shadow: 0 0 15px rgba(250,204,21,0.2); }

/* Processing View */
.loader-spinner { width: 60px; height: 60px; border: 6px solid #334155; border-top-color: var(--secondary); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }
.progress-bar-container { background: #1e293b; height: 10px; width: 100%; border-radius: 5px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--secondary); width: 0%; transition: width 0.3s; }

/* Modal */
.modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
.modal-content { background: var(--bg-card); border: 3px solid var(--secondary); border-radius: 20px; padding: 40px 30px; max-width: 500px; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.8); animation: slideDown 0.5s ease-out; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }
.huge-icon { font-size: 5rem; margin-bottom: 20px; animation: shake 2s infinite; }
@keyframes shake { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(-10deg); } 75% { transform: rotate(10deg); } }
.modal-content h2 { font-size: 2.2rem; margin-bottom: 15px; }
.alert-box { background: rgba(230,25,43,0.1); padding: 15px; border-left: 4px solid var(--primary); border-radius: 5px; margin-top: 20px; font-size: 0.95rem; text-align: left; }
.small-text { font-size: 0.95rem; color: var(--text-muted); }

/* Social & SEO */
.live-activity { margin-bottom: 40px; }
.live-activity h3 { text-align: center; margin-bottom: 15px; color: var(--secondary); font-size: 1.5rem; }
.activity-feed { height: 150px; overflow: hidden; position: relative; background: var(--bg-card); border-radius: 12px; border: 1px solid #334155; padding: 10px; }
.activity-item { display: flex; align-items: center; gap: 15px; padding: 10px; border-bottom: 1px solid #334155; animation: slideUp 0.5s ease-out; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.activity-item img { width: 40px; height: 40px; border-radius: 50%; }
.activity-details { flex: 1; font-size: 0.95rem; }
.activity-time { font-size: 0.8rem; color: var(--text-muted); }

.comments-section { background: #fff; color: #1c1e21; border-radius: 12px; padding: 20px; margin-bottom: 40px; }
.comments-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e4e6eb; padding-bottom: 10px; margin-bottom: 20px; }
.comment { display: flex; gap: 10px; margin-bottom: 15px; }
.avatar img { width: 40px; height: 40px; border-radius: 50%; }
.comment-content { flex: 1; }
.comment-content .text { background: #f0f2f5; padding: 10px 15px; border-radius: 18px; font-size: 0.95rem; display: inline-block; }
.comment-content .name { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; color: #050505; }
.comment-meta { font-size: 0.8rem; color: #65676b; margin-top: 5px; margin-left: 10px; font-weight: 600; }

.seo-article { background: var(--bg-card); padding: 30px; border-radius: 12px; border: 1px solid #334155; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.seo-article h2, .seo-article h3 { color: #fff; margin-bottom: 15px; margin-top: 25px; }
.seo-article h2 { font-size: 1.5rem; border-bottom: 1px solid #334155; padding-bottom: 10px;}
footer { text-align: center; padding: 30px 15px; color: var(--text-muted); font-size: 0.9rem; border-top: 1px solid #334155; margin-top: 40px; }
.disclaimer { font-size: 0.75rem; margin-top: 10px; opacity: 0.6; }

@media (max-width: 600px) {
    .main-title { font-size: 2.2rem; }
    .die { width: 90px; height: 90px; font-size: 6rem; }
    .huge-text { font-size: 2.2rem; }
}

/* === LIVE BANNER === */
.live-banner {
    background: linear-gradient(90deg, #0f172a, #1e1b02, #0f172a);
    border-bottom: 2px solid var(--secondary);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 999;
    animation: bannerPulse 4s infinite;
}
@keyframes bannerPulse { 0%,100% { border-color: var(--secondary); } 50% { border-color: var(--primary); } }
.live-dot {
    display: inline-block;
    width: 10px; height: 10px;
    background: var(--green);
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 1s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* === MODAL TIMER BAR === */
.modal-timer-bar { width: 100%; height: 8px; background: #334155; border-radius: 4px; margin-bottom: 20px; overflow: hidden; }
.modal-timer-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); width: 100%; transition: width 1s linear; }

/* === COUNTDOWN BOX (Modal) === */
.countdown-box {
    background: #0f172a;
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 15px 20px;
    margin: 15px 0;
    text-align: center;
}
.countdown-label { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 8px; }
.countdown-digits { display: flex; align-items: center; justify-content: center; gap: 5px; }
.digit-block { display: flex; flex-direction: column; align-items: center; }
.digit-block span { font-size: 3rem; font-weight: 900; color: var(--primary); line-height: 1; animation: tickFlip 1s infinite; }
@keyframes tickFlip { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(0.95); } }
.digit-block small { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 2px; margin-top: 2px; }
.digit-sep { font-size: 3rem; font-weight: 900; color: var(--primary); margin-bottom: 15px; }

/* === VERIFY STEPS (Modal) === */
.verify-steps { display: flex; flex-direction: column; gap: 8px; margin: 15px 0; text-align: left; }
.vstep { padding: 10px 15px; border-radius: 8px; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.vstep.done { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }
.vstep.active { background: rgba(250,204,21,0.1); color: var(--secondary); border: 1px solid rgba(250,204,21,0.3); }

/* === WINNERS GALLERY === */
.winners-gallery { margin-bottom: 40px; }
.gallery-title { text-align: center; font-size: 1.5rem; margin-bottom: 5px; }
.gallery-subtitle { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { background: var(--bg-card); border: 1px solid #334155; border-radius: 12px; overflow: hidden; }
.gallery-mock-screen { background: #000; }
.mock-header { background: #1e293b; padding: 8px 10px; font-size: 0.75rem; color: #94a3b8; display: flex; align-items: center; gap: 5px; border-bottom: 1px solid #334155; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-dot.r { background: #ef4444; }
.mock-dot.y { background: #f59e0b; }
.mock-dot.g { background: #22c55e; }
.mock-body { padding: 15px; text-align: center; }
.mock-game-ui { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.mock-dice-icon { font-size: 2.5rem; }
.mock-balance { font-size: 0.9rem; color: #ccc; }
.mock-added { background: rgba(34,197,94,0.2); color: var(--green); padding: 3px 10px; border-radius: 10px; font-size: 0.85rem; font-weight: bold; border: 1px solid var(--green); }
.gallery-user { display: flex; align-items: center; gap: 8px; padding: 10px; border-top: 1px solid #334155; font-size: 0.82rem; color: var(--text-muted); }
.gallery-user img { width: 28px; height: 28px; border-radius: 50%; }

/* === COIN MASTER PAGE === */
.cm-header { background: linear-gradient(135deg, rgba(30,120,200,0.9), rgba(10,20,50,0.95)); border-bottom: 4px solid #f59e0b; }
.cm-badge { background: #2563eb; color: #fff; }
.spin-container { display: flex; justify-content: center; margin-bottom: 30px; }
.spin-wheel-wrap { position: relative; width: 260px; height: 260px; }
.spin-wheel { width: 100%; height: 100%; border-radius: 50%; background: conic-gradient(#ef4444 0deg 60deg, #f59e0b 60deg 120deg, #22c55e 120deg 180deg, #3b82f6 180deg 240deg, #a855f7 240deg 300deg, #ec4899 300deg 360deg); border: 6px solid #fff; box-shadow: 0 0 30px rgba(255,255,255,0.3); transition: transform 3s cubic-bezier(0.17, 0.67, 0.12, 0.99); }
.spin-pointer { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); font-size: 2.5rem; z-index: 10; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.spin-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: #fff; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 0 10px rgba(0,0,0,0.3); }
.wheel-prize-label { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.prize-tag { background: #1e293b; border: 1px solid #334155; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; }

/* === CASH APP PAGE === */
.ca-header { background: linear-gradient(135deg, rgba(0,200,80,0.9), rgba(0,60,20,0.95)); border-bottom: 4px solid #00c853; }
.ca-badge { background: #00c853; color: #000; }
.cashapp-logo { font-size: 5rem; margin-bottom: 10px; }
.amount-selection { display: flex; gap: 10px; justify-content: center; margin-bottom: 25px; flex-wrap: wrap; }
.amount-card { flex: 1; min-width: 120px; background: #0f172a; border: 2px solid #334155; border-radius: 12px; padding: 15px 10px; text-align: center; cursor: pointer; transition: all 0.3s; }
.amount-card .amount-val { font-size: 1.8rem; font-weight: 900; color: #00c853; }
.amount-card.active { border-color: #00c853; background: rgba(0,200,80,0.1); box-shadow: 0 0 20px rgba(0,200,80,0.3); }
.btn-cashapp { background: linear-gradient(to bottom, #00c853, #009624); border-color: #00e676; box-shadow: 0 5px 15px rgba(0,200,80,0.4); }

/* === FAQ SECTION === */
.faq-section { margin-bottom: 40px; }
.faq-title { text-align: center; font-size: 1.5rem; margin-bottom: 5px; color: #fff; }
.faq-subtitle { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 25px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-card); border: 1px solid #334155; border-radius: 12px; overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: var(--secondary); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; cursor: pointer; font-weight: 600; font-size: 1rem; color: #fff; gap: 15px; }
.faq-question:hover { background: rgba(250,204,21,0.05); }
.faq-icon { color: var(--secondary); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; padding: 0 20px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 20px 18px; }
.faq-answer strong { color: var(--secondary); }

/* ================================================
   💥 WEAPON 1: TOAST NOTIFICATIONS
   ================================================ */
.toast-notif {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #1e293b;
    border: 1px solid #334155;
    border-left: 4px solid var(--green);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    z-index: 9999;
    transform: translateX(-400px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.toast-notif.show { transform: translateX(0); }
.toast-notif img { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.toast-text { display: flex; flex-direction: column; font-size: 0.82rem; }
.toast-text strong { color: var(--secondary); margin-bottom: 2px; }
.toast-text span { color: var(--text-muted); }

/* ================================================
   💥 WEAPON 2: SCARCITY BAR
   ================================================ */
.scarcity-bar {
    background: linear-gradient(90deg, rgba(230,25,43,0.15), rgba(230,25,43,0.05));
    border: 1px solid rgba(230,25,43,0.4);
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ff6b6b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: scarcityPulse 2s infinite;
}
.scarcity-bar strong { color: var(--primary); font-size: 1.2rem; animation: countBlink 1s infinite; }
@keyframes scarcityPulse { 0%,100%{ background: linear-gradient(90deg, rgba(230,25,43,0.15), rgba(230,25,43,0.05)); } 50%{ background: linear-gradient(90deg, rgba(230,25,43,0.25), rgba(230,25,43,0.1)); } }
@keyframes countBlink { 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.15); color: #fff; } }

/* ================================================
   💥 WEAPON 4: EXIT INTENT POPUP
   ================================================ */
.exit-popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.exit-popup.hidden { display: none !important; }
.exit-popup-content {
    background: var(--bg-card);
    border: 3px solid var(--primary);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 480px;
    text-align: center;
    animation: shakeIn 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
    box-shadow: 0 0 60px rgba(230,25,43,0.4);
}
@keyframes shakeIn {
    0%  { transform: scale(0.5) rotate(-5deg); opacity: 0; }
    60% { transform: scale(1.05) rotate(2deg); }
    80% { transform: scale(0.98) rotate(-1deg); }
    100%{ transform: scale(1) rotate(0); opacity: 1; }
}
.exit-icon { font-size: 5rem; margin-bottom: 10px; animation: shake 0.5s infinite; }
.exit-popup-content h2 { font-size: 1.8rem; margin-bottom: 15px; }
.exit-popup-content p { margin-bottom: 15px; }
.exit-skip { font-size: 0.8rem; color: #475569; cursor: pointer; margin-top: 15px; text-decoration: underline; }
.exit-skip:hover { color: #94a3b8; }

/* ================================================
   TRUST BADGES STRIP
   ================================================ */
.trust-strip {
    background: #0f172a;
    border-bottom: 1px solid #1e293b;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
}
.trust-item i { color: var(--green); }
.trust-item .fa-tiktok { color: #fff; }
.trust-item .fa-reddit { color: #ff4500; }
.trust-item .fa-ban { color: var(--primary); }

/* ================================================
   ADMIN REPLY STYLE
   ================================================ */
.admin-reply {
    margin-top: 10px;
    margin-left: 10px;
    border-left: 3px solid var(--secondary);
    padding-left: 10px;
}



