/* BloxCrush Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;900&family=Righteous&display=swap');

:root {
  --pink: #ff2d78;
  --purple: #c44dff;
  --dark: #0a0a0f;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --green: #4dff91;
  --red: #ff6b6b;
  --gold: #ffd700;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--dark); color: #fff; font-family: 'Raleway', sans-serif; overflow-x: hidden; min-height: 100vh; }

/* BLOBS */
.blob { position: fixed; border-radius: 50%; filter: blur(130px); opacity: .12; pointer-events: none; z-index: 0; }
.blob-1 { width: 600px; height: 600px; background: var(--pink); top: -200px; left: -100px; }
.blob-2 { width: 500px; height: 500px; background: var(--purple); bottom: -100px; right: -100px; }

/* BUTTONS */
.btn-primary { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; border: none; padding: .85rem 2rem; border-radius: 50px; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: .92rem; cursor: pointer; transition: transform .2s, opacity .2s; }
.btn-primary:hover { transform: scale(1.04); opacity: .92; }
.btn-secondary { background: rgba(255,255,255,.05); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.1); padding: .85rem 2rem; border-radius: 50px; font-family: 'Raleway', sans-serif; font-weight: 600; font-size: .92rem; cursor: pointer; transition: background .2s; }
.btn-secondary:hover { background: rgba(255,255,255,.09); }

/* LOGO */
.logo-text { font-family: 'Righteous', cursive; background: linear-gradient(135deg, var(--pink), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* CARDS */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.25rem; }
.card:hover { border-color: rgba(255,45,120,.3); }

/* OVERLAYS */
.overlay { position: fixed; inset: 0; background: rgba(5,5,10,.96); z-index: 1000; display: flex; align-items: center; justify-content: center; }
.modal { background: rgba(18,8,28,.99); border: 1px solid rgba(255,45,120,.25); border-radius: 24px; padding: 2.25rem 2rem; max-width: 420px; width: 92%; text-align: center; max-height: 92vh; overflow-y: auto; }
.modal input, .modal select, .modal textarea { width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: .72rem .9rem; color: #fff; font-family: 'Raleway', sans-serif; font-size: .86rem; margin-bottom: .55rem; outline: none; display: block; }
.modal input:focus, .modal select:focus { border-color: rgba(255,45,120,.45); }
.modal input::placeholder { color: rgba(255,255,255,.25); }

/* TOAST */
.toast { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); background: rgba(20,8,30,.95); border: 1px solid rgba(255,45,120,.3); color: #fff; padding: .75rem 1.4rem; border-radius: 50px; font-size: .82rem; font-weight: 600; z-index: 9999; display: none; white-space: nowrap; }

/* TIER BADGES */
.tier-free { background: rgba(255,255,255,.06); color: rgba(255,255,255,.4); font-size: .65rem; font-weight: 800; padding: .2rem .55rem; border-radius: 50px; }
.tier-vip { background: rgba(196,77,255,.12); color: #d490ff; border: 1px solid rgba(196,77,255,.2); font-size: .65rem; font-weight: 800; padding: .2rem .55rem; border-radius: 50px; }
.tier-elite { background: rgba(255,45,120,.12); color: #ff7aaa; border: 1px solid rgba(255,45,120,.2); font-size: .65rem; font-weight: 800; padding: .2rem .55rem; border-radius: 50px; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: .85rem 1.75rem; border-bottom: 1px solid var(--border); backdrop-filter: blur(24px); background: rgba(10,5,15,.7); }
.nav-logo { display: flex; align-items: center; gap: .55rem; cursor: pointer; text-decoration: none; }
.nav-logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg, var(--pink), var(--purple)); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-text { font-family: 'Righteous', cursive; font-size: 1.3rem; background: linear-gradient(135deg, var(--pink), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-logo-sub { font-size: .52rem; color: rgba(255,255,255,.25); letter-spacing: 2px; text-transform: uppercase; display: block; margin-top: -3px; }
.nav-links { display: flex; gap: 1rem; align-items: center; }
.nav-link { color: rgba(255,255,255,.45); text-decoration: none; font-size: .78rem; font-weight: 600; cursor: pointer; padding: .3rem .5rem; border-radius: 8px; transition: color .2s; border: none; background: none; font-family: 'Raleway', sans-serif; }
.nav-link:hover, .nav-link.active { color: var(--pink); }
.nav-link-btn { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff !important; padding: .42rem 1.1rem; border-radius: 50px; font-weight: 700 !important; }
.nav-avatar { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,45,120,.15); border: 1.5px solid rgba(255,45,120,.35); display: flex; align-items: center; justify-content: center; font-size: .9rem; cursor: pointer; overflow: hidden; }
.nav-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* ANIMATIONS */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes slideIn { from{transform:translateX(120%);opacity:0} to{transform:translateX(0);opacity:1} }
@keyframes heartbeat { 0%{transform:scale(1)} 100%{transform:scale(1.12)} }
@keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
