@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --gold: #b8862a;
  --gold-light: #d4a84b;
  --gold-pale: #eddfa0;
  --gold-bg: #fdf8ee;
  --bronze: #9a6c1f;
  --bg: #faf8f4;
  --bg-card: #ffffff;
  --bg-surface: #f3efe6;
  --text-primary: #1a1714;
  --text-second: #6b6459;
  --text-muted: #a09585;
  --border: rgba(184,134,42,0.18);
  --border-strong: rgba(184,134,42,0.38);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text-primary); font-family: 'DM Sans', sans-serif; font-weight: 400; line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
a { text-decoration: none; }
.oim-nav { position: sticky; top: 0; z-index: 200; background: rgba(250,248,244,0.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); padding: 0 2.5rem; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.oim-nav-logo img { height: 36px; display: block; }
.oim-nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.oim-nav-links a { color: var(--text-second); font-size: 14px; transition: color 0.18s; }
.oim-nav-links a:hover, .oim-nav-links a.active { color: var(--gold); }
.oim-nav-right { display: flex; gap: 0.6rem; align-items: center; }
.obtn { display: inline-flex; align-items: center; gap: 0.35rem; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; padding: 0.5rem 1.25rem; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.15s; border: 1px solid transparent; white-space: nowrap; line-height: 1; }
.obtn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.obtn-gold:hover { background: var(--bronze); border-color: var(--bronze); color: #fff; }
.obtn-outline { background: transparent; color: var(--gold); border-color: var(--border-strong); }
.obtn-outline:hover { background: var(--gold-bg); color: var(--gold); }
.obtn-ghost { background: transparent; color: var(--text-second); border-color: rgba(0,0,0,0.1); }
.obtn-ghost:hover { background: var(--bg-surface); color: var(--text-primary); }
.obtn-lg { font-size: 15px; padding: 0.75rem 2rem; border-radius: var(--radius-md); }
.oim-alert { display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 1.25rem; border-radius: var(--radius-md); font-size: 14px; margin-bottom: 1rem; }
.oim-alert-success { background: #edfaf4; color: #1a6b42; border: 1px solid #b6e8cd; }
.oim-alert-warning { background: var(--gold-bg); color: var(--bronze); border: 1px solid var(--gold-pale); }
.oim-alert-danger { background: #fdf0f0; color: #8b1c1c; border: 1px solid #f5b3b3; }
.oim-footer { border-top: 1px solid var(--border); background: var(--bg-surface); padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.oim-footer img { height: 26px; opacity: 0.65; }
.oim-footer-text { font-size: 12px; color: var(--text-muted); }
.oim-footer-links { display: flex; gap: 1.5rem; }
.oim-footer-links a { font-size: 12px; color: var(--text-muted); transition: color 0.15s; }
.oim-footer-links a:hover { color: var(--gold); }
.oim-section { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.oim-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; display: block; }
.oim-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--text-primary); line-height: 1.15; margin-bottom: 0.75rem; }
.oim-desc { color: var(--text-second); font-size: 15px; line-height: 1.75; max-width: 520px; }
.oim-progress { height: 5px; background: var(--bg-surface); border-radius: 3px; overflow: hidden; }
.oim-progress-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.oim-badge { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 20px; }
.oim-badge-gold { background: var(--gold-bg); color: var(--gold); border: 1px solid var(--gold-pale); }
.oim-badge-green { background: #edfaf4; color: #1a6b42; border: 1px solid #b6e8cd; }
.oim-badge-gray { background: var(--bg-surface); color: var(--text-muted); border: 1px solid rgba(0,0,0,0.07); }
.oim-input { width: 100%; padding: 0.65rem 0.9rem; border: 1px solid rgba(0,0,0,0.12); border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 14px; background: #fff; color: var(--text-primary); transition: border-color 0.15s, box-shadow 0.15s; outline: none; }
.oim-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,134,42,0.12); }
.oim-label { font-size: 13px; font-weight: 500; color: var(--text-second); margin-bottom: 0.4rem; display: block; }
.oim-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.oim-table th { text-align: left; padding: 0.7rem 1rem; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.oim-table td { padding: 0.7rem 1rem; border-bottom: 1px solid rgba(0,0,0,0.04); color: var(--text-second); }
.oim-table tr.my-row td { color: var(--gold); font-weight: 500; background: var(--gold-bg); }
.oim-table tr:last-child td { border-bottom: none; }
.oim-winner { text-align: center; padding: 4rem 2rem; background: linear-gradient(135deg, #fffdf5, #fdf8ee); border: 1px solid var(--gold-pale); border-radius: var(--radius-lg); }
.oim-winner-trophy { font-size: 4rem; margin-bottom: 0.75rem; animation: bounce 2s infinite; }
.oim-winner-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.oim-winner-name { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--gold); }
.oim-winner-sub { font-size: 13px; color: var(--text-muted); margin-top: 0.3rem; }
.hero { min-height: calc(100vh - 64px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 6rem 2rem 4rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(184,134,42,0.09) 0%, transparent 70%); pointer-events: none; }
.hero-label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-pale); padding: 0.35rem 1rem; border-radius: 20px; background: var(--gold-bg); margin-bottom: 2rem; animation: fadeUp 0.6s ease both; }
.hero-label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; animation: pulse 1.8s infinite; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; line-height: 1.0; color: var(--text-primary); animation: fadeUp 0.6s 0.08s ease both; margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.15rem); font-weight: 300; color: var(--text-second); max-width: 500px; line-height: 1.75; animation: fadeUp 0.6s 0.16s ease both; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.6s 0.24s ease both; margin-bottom: 3.5rem; }
.hero-jackpot { animation: fadeUp 0.6s 0.32s ease both; }
.hero-jackpot-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.hero-jackpot-amount { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; color: var(--gold); line-height: 1; }
.hero-jackpot-sub { font-size: 12px; color: var(--text-muted); margin-top: 0.3rem; }
.live-counter { display: flex; gap: 5px; justify-content: center; align-items: center; margin-top: 2rem; animation: fadeUp 0.6s 0.4s ease both; }
.digit-box { width: 44px; height: 56px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--text-primary); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.digit-sep { color: var(--text-muted); font-size: 1.2rem; padding-bottom: 4px; }
.counter-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.6rem; text-align: center; }
.stats-strip { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 2rem; }
.stats-inner { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 2rem; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 0.3rem; }
.stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.step { background: var(--bg-card); padding: 2.25rem 1.75rem; position: relative; transition: background 0.18s; }
.step:hover { background: var(--gold-bg); }
.step-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: rgba(184,134,42,0.12); position: absolute; top: 1.25rem; right: 1.25rem; line-height: 1; }
.step-icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.step-title { font-size: 16px; font-weight: 500; color: var(--text-primary); margin-bottom: 0.5rem; }
.step-desc { font-size: 13px; color: var(--text-second); line-height: 1.65; }
.rooms-preview { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 1rem; }
.room-preview-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; display: block; color: inherit; transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s; }
.room-preview-card:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,134,42,0.08); }
.room-mode-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.room-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.room-players-txt { font-size: 13px; color: var(--text-muted); margin-bottom: 1rem; }
.room-prize-val { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.room-prize-sub { font-size: 11px; color: var(--text-muted); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem; }
.trust-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.75rem; }
.trust-icon { font-size: 1.5rem; margin-bottom: 0.9rem; display: block; }
.trust-title { font-size: 15px; font-weight: 500; color: var(--text-primary); margin-bottom: 0.4rem; }
.trust-desc { font-size: 13px; color: var(--text-second); line-height: 1.6; }
.cta-banner { background: linear-gradient(135deg, var(--gold-bg), #fff9f0); border: 1px solid var(--gold-pale); border-radius: var(--radius-lg); padding: 4rem 3rem; text-align: center; max-width: 1060px; margin: 0 auto 5rem; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; }
.cta-desc { color: var(--text-second); font-size: 15px; max-width: 480px; margin: 0 auto 2rem; line-height: 1.75; }
.rooms-hero { background: var(--bg-surface); border-bottom: 1px solid var(--border); padding: 3.5rem 2rem 3rem; text-align: center; }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.mode-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s; }
.mode-card:hover { border-color: var(--border-strong); box-shadow: 0 6px 24px rgba(184,134,42,0.08); transform: translateY(-2px); }
.mode-card-header { padding: 1.5rem 1.75rem 1.25rem; border-bottom: 1px solid var(--border); background: var(--gold-bg); }
.mode-card-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.mode-card-sub { font-size: 12px; color: var(--text-muted); }
.mode-card-body { padding: 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.mode-card-footer { padding: 1rem 1.75rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.mode-card-footer a { font-size: 13px; color: var(--text-muted); transition: color 0.15s; }
.mode-card-footer a:hover { color: var(--gold); }
.room-info-row { display: flex; justify-content: space-between; align-items: center; }
.room-info-label { font-size: 12px; color: var(--text-muted); }
.room-info-value { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.prize-display { text-align: center; padding: 1rem; background: var(--bg-surface); border-radius: var(--radius-md); }
.prize-display-val { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); display: block; }
.prize-display-label { font-size: 11px; color: var(--text-muted); }
.empty-state { text-align: center; padding: 5rem 2rem; color: var(--text-muted); grid-column: 1 / -1; }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
.empty-title { font-size: 18px; font-weight: 500; color: var(--text-second); margin-bottom: 0.5rem; }
.lobby-layout { max-width: 900px; margin: 0 auto; padding: 3rem 2rem; display: grid; grid-template-columns: 1fr 320px; gap: 1.5rem; align-items: start; }
.lobby-main { display: flex; flex-direction: column; gap: 1.5rem; }
.lobby-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.page-back { font-size: 13px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 0.35rem; margin-bottom: 0.5rem; transition: color 0.15s; }
.page-back:hover { color: var(--gold); }
.room-headline { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.room-status-row { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.waiting-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.waiting-progress-label { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); margin-bottom: 0.6rem; }
.join-section { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.table-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.table-card-header { padding: 1.1rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.table-card-title { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.info-card-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); background: var(--gold-bg); }
.info-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.info-card-body { padding: 1.25rem 1.5rem; }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 0.55rem 0; border-bottom: 1px solid rgba(0,0,0,0.04); font-size: 14px; }
.info-row:last-child { border-bottom: none; }
.info-row-label { color: var(--text-muted); }
.info-row-value { font-weight: 500; color: var(--text-primary); }
.my-number-card { background: var(--gold-bg); border: 1px solid var(--gold-pale); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; }
.my-number-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.my-number-val { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--text-primary); line-height: 1; }
.my-number-sub { font-size: 12px; color: var(--text-muted); margin-top: 0.4rem; }
.prize-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; background: linear-gradient(135deg, #fffdf5, var(--gold-bg)); }
.prize-card-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.prize-card-val { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.prize-card-sub { font-size: 12px; color: var(--text-muted); margin-top: 0.3rem; }
.auth-wrap { min-height: calc(100vh - 130px); display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; }
.auth-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem 2.25rem; width: 100%; max-width: 440px; box-shadow: 0 4px 32px rgba(0,0,0,0.05); }
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo img { height: 52px; }
.auth-title { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--text-primary); text-align: center; margin-bottom: 0.4rem; }
.auth-sub { font-size: 14px; color: var(--text-muted); text-align: center; margin-bottom: 2rem; }
.auth-form { display: flex; flex-direction: column; gap: 1.1rem; }
.auth-form p { margin: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.auth-form label { font-size: 13px; font-weight: 500; color: var(--text-second); }
.auth-form input[type="text"], .auth-form input[type="email"], .auth-form input[type="password"] { width: 100%; padding: 0.65rem 0.9rem; border: 1px solid rgba(0,0,0,0.12); border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 14px; background: #fff; color: var(--text-primary); transition: border-color 0.15s, box-shadow 0.15s; outline: none; }
.auth-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,134,42,0.12); }
.auth-form ul.errorlist { list-style: none; padding: 0; margin: 0; }
.auth-form ul.errorlist li { font-size: 12px; color: #8b1c1c; background: #fdf0f0; border: 1px solid #f5b3b3; border-radius: var(--radius-sm); padding: 0.35rem 0.7rem; margin-top: 0.25rem; }
.auth-form .helptext { font-size: 11px; color: var(--text-muted); line-height: 1.5; }
.auth-footer { text-align: center; margin-top: 1.5rem; font-size: 13px; color: var(--text-muted); }
.auth-footer a { color: var(--gold); }
.auth-footer a:hover { text-decoration: underline; }
.prize-teaser { display: flex; align-items: center; gap: 0.75rem; background: var(--gold-bg); border: 1px solid var(--gold-pale); border-radius: var(--radius-md); padding: 0.9rem 1.1rem; margin-bottom: 1.75rem; }
.prize-teaser-icon { font-size: 1.5rem; flex-shrink: 0; }
.prize-teaser-text { font-size: 13px; color: var(--bronze); line-height: 1.5; }
.prize-teaser-text strong { color: var(--gold); }
.profile-layout { max-width: 860px; margin: 0 auto; padding: 3rem 2rem; display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem; align-items: start; }
.avatar-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.avatar-circle { width: 72px; height: 72px; border-radius: 50%; background: var(--gold-bg); border: 2px solid var(--gold-pale); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); margin: 0 auto 1rem; }
.avatar-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.avatar-joined { font-size: 12px; color: var(--text-muted); }
.avatar-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; }
.avatar-stat { background: var(--bg-surface); border-radius: var(--radius-md); padding: 0.75rem 0.5rem; text-align: center; }
.avatar-stat-num { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); display: block; }
.avatar-stat-label { font-size: 11px; color: var(--text-muted); }
.profile-main { display: flex; flex-direction: column; gap: 1.25rem; }
.congrats-card { background: linear-gradient(135deg, var(--gold-bg), #fffdf5); border: 1px solid var(--gold-pale); border-radius: var(--radius-lg); padding: 1.75rem; display: flex; align-items: center; gap: 1.25rem; }
.congrats-icon { font-size: 2.5rem; flex-shrink: 0; }
.congrats-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.congrats-sub { font-size: 13px; color: var(--text-second); }
.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.form-card-header { padding: 1.25rem 1.75rem; border-bottom: 1px solid var(--border); background: var(--bg-surface); }
.form-card-title { font-size: 15px; font-weight: 500; color: var(--text-primary); }
.form-card-body { padding: 1.75rem; display: flex; flex-direction: column; gap: 1.1rem; }
.victory-item { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.victory-item:last-child { border-bottom: none; }
.victory-trophy { font-size: 1.3rem; flex-shrink: 0; }
.victory-room { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.victory-room a { color: var(--gold); }
.victory-room a:hover { text-decoration: underline; }
.draw-wrap { min-height: calc(100vh - 130px); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem 2rem; }
.draw-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 3.5rem 2.5rem; text-align: center; max-width: 560px; width: 100%; box-shadow: 0 8px 40px rgba(0,0,0,0.06); }
.draw-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; display: block; }
.draw-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.draw-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 2.5rem; }
.counter-container { display: flex; gap: 6px; justify-content: center; align-items: center; padding: 1rem 1.25rem; background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 2.5rem; }
.reel { width: 56px; height: 80px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.reel-inner { position: absolute; top: 0; left: 0; width: 100%; }
.reel-char { width: 100%; height: 80px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--text-primary); }
.reel-sep { font-size: 1.4rem; color: var(--text-muted); padding-bottom: 4px; flex-shrink: 0; }
.result-display { display: none; text-align: center; padding: 1.5rem; margin-bottom: 2rem; background: var(--gold-bg); border: 1px solid var(--gold-pale); border-radius: var(--radius-md); }
.result-display.show { display: block; }
.result-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.result-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--text-primary); }
#startButton { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; padding: 0.85rem 2.5rem; border-radius: var(--radius-md); background: var(--gold); color: #fff; border: none; cursor: pointer; transition: background 0.15s, transform 0.1s; }
#startButton:hover:not(:disabled) { background: var(--bronze); transform: translateY(-1px); }
#startButton:disabled { background: var(--bg-surface); color: var(--text-muted); cursor: not-allowed; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes bounce { 0%,20%,50%,80%,100% { transform: translateY(0); } 40% { transform: translateY(-16px); } 60% { transform: translateY(-8px); } }
@media (max-width: 720px) { .lobby-layout { grid-template-columns: 1fr; } .profile-layout { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .oim-nav { padding: 0 1.25rem; } .oim-nav-links { display: none; } .oim-footer { padding: 1.5rem 1.25rem; flex-direction: column; text-align: center; } .oim-footer-links { justify-content: center; } .oim-section { padding: 3rem 1.25rem; } .cta-banner { padding: 2.5rem 1.5rem; } }
