﻿/* TURBO FAUCET - NEO-BRUTALISM DESIGN SYSTEM */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --bg-primary: #FFF5E1; --bg-secondary: #FFF0D4; --bg-card: #FFFFFF;
    --border-color: #000000; --border-width: 3px;
    --shadow-color: #000000; --shadow-offset: 5px;
    --text-primary: #1A1A1A; --text-secondary: #4A4A4A; --text-muted: #777777;
    --primary: #FF6B35; --primary-hover: #E55A25;
    --secondary: #F7931A; --accent: #E91E63;
    --success: #00C853; --success-dark: #00A844;
    --warning: #FFB300; --danger: #FF1744; --info: #2979FF;
    --radius: 12px; --radius-sm: 8px; --radius-lg: 16px;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--shadow-color);
    --shadow-sm: 3px 3px 0px var(--shadow-color);
    --shadow-hover: 2px 2px 0px var(--shadow-color);
    --transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); min-height: 100vh; line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.header { background: var(--bg-card); border-bottom: var(--border-width) solid var(--border-color); padding: 14px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 var(--shadow-offset) 0px var(--shadow-color); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-primary); transition: var(--transition); }
.logo:hover { transform: translateY(-1px); }
.logo-icon { font-size: 28px; color: var(--primary); font-weight: 700; text-shadow: 2px 2px 0px var(--shadow-color); }
.logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; letter-spacing: -0.03em; }
.logo-img { max-height: 40px; max-width: 160px; object-fit: contain; border-radius: var(--radius-sm); border: 2px solid var(--border-color); }
.nav { display: flex; gap: 6px; }
.nav-link { padding: 8px 16px; border-radius: var(--radius-sm); border: 2px solid transparent; text-decoration: none; color: var(--text-secondary); font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; transition: var(--transition); }
.nav-link:hover { color: var(--text-primary); border-color: var(--border-color); background: var(--bg-primary); box-shadow: var(--shadow-sm); transform: translate(-1px, -1px); }
.nav-link.active { color: #fff; background: var(--primary); border-color: var(--border-color); box-shadow: var(--shadow-sm); }

/* HERO */
.hero { text-align: center; padding: 48px 0 28px; }
.hero h1 { font-family: var(--font-heading); font-size: clamp(2.2rem, 6vw, 3.5rem); font-weight: 700; color: var(--text-primary); margin-bottom: 12px; letter-spacing: -0.04em; line-height: 1.1; text-shadow: 3px 3px 0px var(--primary); }
.hero-sub { color: var(--text-secondary); font-size: 1.15rem; font-weight: 500; max-width: 500px; margin: 0 auto; }

/* CARDS */
.card { background: var(--bg-card); border: var(--border-width) solid var(--border-color); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: var(--transition); animation: brutalistFadeIn 0.4s ease both; }
.card:hover { box-shadow: var(--shadow-hover); transform: translate(3px, 3px); }
.card-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 14px; border-bottom: var(--border-width) solid var(--border-color); letter-spacing: -0.02em; text-transform: uppercase; }
.claim-grid { display: grid; grid-template-columns: 1fr; gap: 24px; padding-bottom: 24px; }
.recent-payments-section { margin-top: 16px; margin-bottom: 40px; }

/* PROGRESS STEPS */
.progress-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 28px; }
.step { display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0.35; transition: var(--transition); }
.step.active, .step.done { opacity: 1; }
.step-num { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-primary); border: var(--border-width) solid var(--border-color); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; transition: var(--transition); box-shadow: var(--shadow-sm); }
.step.active .step-num { background: var(--primary); color: #fff; transform: scale(1.1); box-shadow: var(--shadow); }
.step.done .step-num { background: var(--success); color: #fff; box-shadow: var(--shadow-sm); }
.step-label { font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.step-line { width: 50px; height: var(--border-width); background: var(--border-color); margin: 0 10px 22px; opacity: 0.3; transition: var(--transition); }
.step-line.done { background: var(--success); opacity: 1; }

/* FORM */
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input[type="email"], .form-group input[type="text"], .form-group input[type="number"], .form-group input[type="password"], .captcha-input { width: 100%; padding: 14px 16px; background: var(--bg-card); border: var(--border-width) solid var(--border-color); border-radius: var(--radius-sm); color: var(--text-primary); font-family: var(--font-body); font-size: 1rem; font-weight: 500; outline: none; transition: var(--transition); box-shadow: var(--shadow-sm); }
.form-group input:focus, .captcha-input:focus { border-color: var(--primary); box-shadow: 4px 4px 0px var(--primary); transform: translate(-1px, -1px); }
.form-group input::placeholder { color: var(--text-muted); font-weight: 400; }

/* COIN SELECTOR */
.coin-selector { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.coin-option { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--bg-card); border: var(--border-width) solid var(--border-color); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); position: relative; box-shadow: var(--shadow-sm); font-weight: 600; }
.coin-option:hover { background: var(--bg-primary); box-shadow: var(--shadow-hover); transform: translate(1px, 1px); }
.coin-option.selected { background: var(--primary); color: #fff; box-shadow: var(--shadow); transform: translate(-2px, -2px); }
.coin-option.selected .coin-name { color: #fff; }
.coin-option.selected .coin-reward { color: rgba(255,255,255,0.8); }
.coin-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.coin-icon-img { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; border: 2px solid var(--border-color); }
.coin-icon-fallback { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; flex-shrink: 0; border: 2px solid var(--border-color); }
.coin-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; }
.coin-reward { font-size: 0.72rem; color: var(--text-muted); margin-left: auto; font-weight: 600; }

/* BUTTONS */
.btn { padding: 14px 28px; border: var(--border-width) solid var(--border-color); border-radius: var(--radius-sm); font-family: var(--font-heading); font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: var(--shadow); position: relative; }
.btn:hover:not(:disabled) { box-shadow: var(--shadow-hover); transform: translate(3px, 3px); }
.btn:active:not(:disabled) { box-shadow: none; transform: translate(5px, 5px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-block { width: 100%; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--primary-hover); }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover:not(:disabled) { background: var(--success-dark); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; color: var(--primary); }
.btn-outline:hover:not(:disabled) { background: var(--primary); color: #fff; }

/* CLAIM RESULT */
.claim-result { padding: 18px; border: var(--border-width) solid var(--border-color); border-radius: var(--radius-sm); margin-top: 18px; font-size: 0.95rem; font-weight: 600; text-align: center; box-shadow: var(--shadow-sm); animation: brutalistFadeIn 0.3s ease; }
.claim-result.success { background: #E8F5E9; color: #1B5E20; }
.claim-result.error { background: #FFEBEE; color: #B71C1C; }
.shortlink-status { text-align: center; padding: 24px; margin-top: 18px; background: var(--bg-primary); border: var(--border-width) solid var(--border-color); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.status-icon { font-size: 2.5rem; margin-bottom: 10px; animation: brutalistBounce 1.5s ease-in-out infinite; }
.cooldown-timer { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 18px; margin-top: 18px; background: #FFF8E1; border: var(--border-width) solid var(--border-color); border-radius: var(--radius-sm); color: #E65100; font-weight: 700; font-family: var(--font-heading); box-shadow: var(--shadow-sm); }
.timer-icon { font-size: 1.4rem; }

/* REFERRAL */
.referral-card { margin-top: 24px; animation-delay: 0.1s; }
.referral-link-box { display: flex; gap: 8px; margin: 14px 0; }
.referral-input { flex: 1; padding: 12px 14px; background: var(--bg-primary); border: var(--border-width) solid var(--border-color); border-radius: var(--radius-sm); color: var(--text-primary); font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; box-shadow: inset 2px 2px 0px rgba(0,0,0,0.05); }

/* PAYMENTS */
.payments-card { animation-delay: 0.15s; }
.payments-list { max-height: 500px; overflow-y: auto; }
.payment-item { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 2px solid var(--border-color); font-size: 0.88rem; transition: var(--transition); }
.payment-item:nth-child(even) { background: var(--bg-primary); margin: 0 -28px; padding-left: 28px; padding-right: 28px; }
.payment-item:last-child { border-bottom: none; }
.payment-coin-icon { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; border: 2px solid var(--border-color); }
.payment-amount { font-family: var(--font-heading); font-weight: 700; color: var(--success-dark); }
.payment-to { color: var(--text-muted); margin-left: auto; font-size: 0.8rem; font-weight: 500; }

/* CAPTCHA */
.captcha-wrapper { margin-top: 6px; padding: 16px; background: var(--bg-primary); border: 2px dashed var(--border-color); border-radius: var(--radius-sm); }
.internal-captcha { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.captcha-label { font-family: var(--font-heading) !important; font-size: 1rem !important; font-weight: 700 !important; color: var(--primary) !important; white-space: nowrap; }

/* AD SLOTS */
.ad-slot { text-align: center; overflow: hidden; line-height: 0; position: relative; }
.ad-slot::after { content: 'AD'; position: absolute; top: 4px; right: 8px; font-family: var(--font-heading); font-size: 9px; font-weight: 700; letter-spacing: 2px; color: var(--text-muted); opacity: 0.4; line-height: 1; pointer-events: none; }
.ad-top { background: var(--bg-card); border-bottom: 2px solid var(--border-color); padding: 10px 0; }
.ad-header { padding: 14px 0; border-bottom: 2px solid var(--border-color); background: var(--bg-secondary); }
.ad-sidebar { position: fixed; top: 50%; transform: translateY(-50%); width: 170px; max-height: calc(100vh - 120px); z-index: 50; overflow-y: auto; overflow-x: hidden; display: flex; flex-direction: column; gap: 12px; padding: 4px; scrollbar-width: none; }
.ad-sidebar::-webkit-scrollbar { display: none; }
.ad-sidebar-left { left: 8px; }
.ad-sidebar-right { right: 8px; }
.ad-sidebar .ad-unit { text-align: center; line-height: 0; flex-shrink: 0; border-radius: var(--radius-sm); background: var(--bg-card); border: 2px solid var(--border-color); padding: 6px; overflow: hidden; box-shadow: var(--shadow-sm); }
@media (max-width: 1400px) { .ad-sidebar, .ad-left, .ad-right { display: none !important; } }
.ad-claim { margin: 20px 0; padding: 14px; border-radius: var(--radius); background: var(--bg-primary); border: 2px dashed var(--border-color); position: relative; }
.ad-bottom { padding: 20px 0; margin-top: 8px; border-top: 2px solid var(--border-color); background: var(--bg-secondary); }
.ad-footer { margin-bottom: 14px; padding: 10px 0; border-radius: var(--radius-sm); background: var(--bg-primary); border: 2px solid var(--border-color); }

/* FOOTER */
.footer { padding: 28px 0; text-align: center; color: var(--text-secondary); font-size: 0.88rem; border-top: var(--border-width) solid var(--border-color); background: var(--bg-card); font-weight: 500; }
.powered-by { margin-top: 8px; font-size: 0.8rem; }
.turbo-link { color: var(--primary); text-decoration: none; font-family: var(--font-heading); font-weight: 700; transition: var(--transition); padding: 2px 6px; border-radius: 4px; }
.turbo-link:hover { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-small { font-size: 0.8rem; }

/* ALERTS */
.alert { padding: 14px 18px; border: var(--border-width) solid var(--border-color); border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.alert-info { background: #E3F2FD; color: #0D47A1; }
.alert-success { background: #E8F5E9; color: #1B5E20; }
.alert-warning { background: #FFF8E1; color: #E65100; }
.alert-danger { background: #FFEBEE; color: #B71C1C; }

/* ANIMATIONS */
@keyframes brutalistFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes brutalistBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.card:nth-child(1) { animation-delay: 0s; }
.card:nth-child(2) { animation-delay: 0.08s; }
.card:nth-child(3) { animation-delay: 0.16s; }

/* RESPONSIVE */
@media (max-width: 768px) { .coin-selector { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); } .hero h1 { font-size: 1.8rem; text-shadow: 2px 2px 0px var(--primary); } .header-inner { flex-wrap: wrap; gap: 12px; } .step-line { width: 24px; } .card { padding: 20px; } .btn { padding: 12px 20px; font-size: 0.9rem; } :root { --shadow-offset: 4px; } }
@media (max-width: 480px) { .coin-selector { grid-template-columns: 1fr 1fr; } .hero { padding: 32px 0 20px; } .step-num { width: 36px; height: 36px; font-size: 0.85rem; } .referral-link-box { flex-direction: column; } }
