/* =====================================================
   DaznBetClub — Design System
   ===================================================== */
:root {
    --bg:  rgb(12, 22, 28);
    --dark: #fff;
    --black: rgb(36, 37, 39);
    --amber-l: rgb(214, 221, 10);
    --amber: rgb(247, 255, 26);
    --amber-pale: #241704;
    --green: #2A7A4B;
    --red: #DC2626;
    --muted: #d7d7d7;
    --border: rgb(250, 248, 246);
    --white: #fff;
    --nav-h: 64px;
    --radius: 12px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(26,18,8,0.08);
    --shadow-lg: 0 20px 60px rgba(26,18,8,0.12);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--bg);
    color: var(--dark);
    font-family: 'Figtree', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: 'Outfit', sans-serif; font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
.eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.7rem; display: block; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.container-sm { max-width: 700px; margin: 0 auto; padding: 0 5vw; }
.section { padding: 5rem 5vw; }
.section-dark { background: var(--black); color: #fff; }
.section-white { background: var(--white); }
 .section-amber { background: var(--amber);color:var(--black) }
/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: var(--nav-h);
    color:#fff;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw;
    background: var(--bg);
    backdrop-filter: blur(14px);
    border-bottom: 1.5px solid var(--border);
}
.navbar-brand { display: flex; align-items: center; gap: 0.6rem; }
.navbar-brand-icon { width: 36px; height: 36px; background: var(--amber); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.navbar-brand-text { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }
.navbar-brand-text span { color: var(--amber); }
.navbar-brand-logo{
        max-width: 100px;
    object-fit: contain;
}
.navbar-links { display: flex; align-items: center; gap: 1.8rem; }
.navbar-links a { font-size: 0.875rem; font-weight: 500;   color:#fff!important;transition: opacity 0.2s, color 0.2s;border-bottom:2px solid transparent!important;  }
.navbar-links a:hover, .navbar-links a.active { opacity: 1; border-bottom:2px solid var(--amber)!important;  }
.navbar-links .btn-ticket { background: var(--amber); color: var(--black) !important; opacity: 1 !important; padding: 0.5rem 1.2rem; border-radius: 100px; font-weight: 600 !important; font-size: 0.85rem; transition: background 0.2s; }
.navbar-links .btn-ticket:hover { background: var(--amber-l); }
.navbar-links .btn-user { display: flex; align-items: center; gap: 0.4rem; background: rgba(26,18,8,0.07); padding: 0.5rem 1rem; border-radius: 100px; font-weight: 600; font-size: 0.85rem; opacity: 1 !important; transition: background 0.2s; }
.navbar-links .btn-user:hover { background: rgba(26,18,8,0.12); border-radius: 0px;}

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border-radius: 6px; background: transparent; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-drawer {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    z-index: 190; background: rgba(36, 37, 39,0.98); backdrop-filter: blur(18px);
    flex-direction: column; padding: 2rem 5vw;
    transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a { display: flex; align-items: center; gap: 1rem; padding: 0.5rem 0; border-bottom: 1.5px solid var(--border); font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.4rem; transition: color 0.2s; }
.mobile-drawer a:last-child { border-bottom: none; }
.mobile-drawer a:hover, .mobile-drawer a.active { color: var(--amber); }
.mobile-drawer .m-icon { font-size: 1.6rem; width: 1.5rem;display:flex; }
.mobile-drawer .m-icon svg{ font-size: 1.6rem; width: 1.5rem; }
.m-icon-style{width: 1.5rem;}
.mobile-drawer .drawer-cta { margin-top: auto; background: var(--amber); color: var(--black); justify-content: center; border-radius: 12px; padding: 1.2rem !important; border-bottom: none !important; font-size: 1.1rem; }

 
.tab-btn { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; cursor: pointer; padding: 0.3rem; color: var(--muted); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; background: none; border: none; }
.tab-btn.active, .tab-btn:hover { color: var(--amber); }
.tab-btn .ti { font-size: 1.3rem; line-height: 1; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; text-decoration: none; }
.btn-primary { background: var(--amber); color:  var(--black); box-shadow: 0 4px 20px rgba(232,130,12,0.35); }
.btn-primary:hover { background: var(--amber-l); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,130,12,0.45); }
.btn-outline { border: 2px solid var(--border) !important; background: transparent; color: var(--dark); }
.btn-outline:hover { border-color: var(--amber) !important; color: var(--amber); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #2d2015; transform: translateY(-1px); }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 0.45rem; }
.form-input, .form-select {
    width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
    padding: 0.8rem 1rem; font-size: 0.95rem; color: var(--dark); background: var(--bg);
    outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(232,130,12,0.12); }
.form-input::placeholder { color: var(--muted); opacity: 0.6; }
.form-input-mono { font-family: 'Courier New', monospace; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-hint { font-size: 0.75rem; color: var(--muted); margin-top: 0.3rem; }
.pw-wrap { position: relative; }
.pw-wrap .form-input { padding-right: 3rem; }
.pw-eye { position: absolute; right: 0.9rem; top: 50%; transform: translateY(-50%); cursor: pointer; opacity: 0.5; font-size: 1rem; transition: opacity 0.2s; border: none; background: none; }
.pw-eye:hover { opacity: 1; }
.strength-bar { height: 4px; background: var(--border); border-radius: 2px; margin-top: 0.4rem; overflow: hidden; }
.strength-fill { height: 100%; border-radius: 2px; transition: width 0.3s, background 0.3s; width: 0; }
.strength-text { font-size: 0.72rem; margin-top: 0.2rem; }
.checkbox-row { display: flex; align-items: flex-start; gap: 0.6rem; }
.checkbox-row input[type=checkbox] { width: auto; margin-top: 3px; accent-color: var(--amber); flex-shrink: 0; }
.checkbox-row label { font-size: 0.82rem; color: var(--muted); cursor: pointer; }
.checkbox-row label a { color: var(--amber); font-weight: 600; }

/* alerts */
.alert { padding: 0.8rem 1rem; border-radius: 8px; font-size: 0.85rem; font-weight: 500; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.alert-error { background: #FEF2F2; border: 1.5px solid #FECACA; color: var(--red); }
.alert-success { background: #F0FFF4; border: 1.5px solid #86EFAC; color: var(--green); }
.alert-info { background: var(--amber-pale); border: 1.5px solid rgba(232,130,12,0.3); color: var(--amber); }

/* ===== CARDS ===== */
.card { background: var(--white); border: 1.5px solid var(--border);   box-shadow: var(--shadow); }
.card-body { padding: 2rem; }
.card-black{background-color: var(--black);}
.card-top-bar { height: 5px; background: linear-gradient(90deg, var(--amber), var(--amber-l));   }

/* ===== PILLS / CHIPS ===== */
.pill { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.3rem 0.8rem; border-radius: 100px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.pill-amber { background: var(--amber-pale); color: var(--amber); border: 1.5px solid rgba(232,130,12,0.3); }
.pill-green { background:var(--green); color: var(--white); }
.pill-dark { background: rgba(26,18,8,0.07); color: var(--muted); }
.pill-white { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }

/* ===== TICKET CHIP ===== */
.ticket-chip { font-family: 'Courier New', monospace; font-size: 0.75rem; font-weight: 700; background: var(--bg); border: 1.5px solid var(--border); border-radius: 6px; padding: 0.2rem 0.55rem; color: var(--dark); }

/* ===== STAT CARD ===== */
.stat-card { background: var(--black); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.4rem; transition: transform 0.2s, border-color 0.2s; }
.stat-card:hover { transform: translateY(-3px); border-color: var(--amber); }
.stat-icon { font-size: 1.7rem; margin-bottom: 0.5rem; }
.stat-val { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; }
.stat-lbl { font-size: 0.75rem; color: var(--white); margin-top: 0.15rem; }

/* ===== DOT LIVE ===== */
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: #5EE87A; display: inline-block; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ===== TOGGLE SWITCH ===== */
.toggle-wrap { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
.toggle-wrap input { opacity: 0; width: 0; height: 0; }
.toggle-track { position: absolute; inset: 0; background: var(--border); border-radius: 100px; transition: background 0.25s; cursor: pointer; }
.toggle-wrap input:checked + .toggle-track { background: var(--amber); }
.toggle-thumb { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: #fff; top: 3px; left: 3px; transition: transform 0.25s; box-shadow: 0 1px 4px rgba(0,0,0,0.2); pointer-events: none; }
.toggle-wrap input:checked ~ .toggle-thumb { transform: translateX(18px); }

/* ===== PROGRESS BAR ===== */
.progress-bg { background: rgba(255,255,255,0.08); border-radius: 100px; height: 8px; overflow: hidden; }
.progress-bg.light { background: var(--border); }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--amber), var(--amber-l)); border-radius: 100px; transition: width 0.5s ease; }

/* ===== COUNTDOWN ===== */
.countdown-grid { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.cd-unit { text-align: center; }
.cd-num { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--amber); display: block; min-width: 68px; background: rgba(232,130,12,0.08); border: 1px solid rgba(232,130,12,0.2); border-radius: 10px; padding: 0.65rem; line-height: 1; }
.cd-label { font-size: 0.64rem; text-transform: uppercase; color:var(--amber);letter-spacing: 0.1em;  margin-top: 0.35rem; display: block; font-weight: 700; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--dark); color: #fff; border-radius: 100px; padding: 0.7rem 1.5rem; font-size: 0.85rem; font-weight: 600; z-index: 9999; transition: transform 0.35s ease; display: flex; align-items: center; gap: 0.5rem; box-shadow: 0 8px 24px rgba(0,0,0,0.2); white-space: nowrap; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; padding: 0.6rem 1rem; background: var(--black); border-bottom: 1.5px solid var(--border); }
.data-table td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.875rem; vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr{background-color: black;}
.data-table tr:hover td { background: rgba(232,130,12,0.03); }
.status-valid { color: var(--white); font-weight: 700; background: var(--green); padding: 0.2rem 0.6rem; border-radius: 100px; font-size: 0.75rem; }
.status-drawn { color: var(--white); background: rgba(26,18,8,0.06); padding: 0.2rem 0.6rem; border-radius: 100px; font-size: 0.75rem; }
.status-won { color: var(--black); background: var(--amber); padding: 0.2rem 0.6rem; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }

/* ===== AUTH LAYOUT ===== */
.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: calc(var(--nav-h) + 2rem) 5vw 4rem; }
.auth-card { width: 100%; max-width: 440px; position: relative; }
.auth-card .card{background-color: var(--black);}
.auth-card .card-body { padding: 2.5rem; }
.auth-title { font-size: 1.7rem; margin-bottom: 0.4rem; }
.auth-sub { font-size: 0.88rem; color: var(--white); margin-bottom: 2rem; }
.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; color: var(--white); font-size: 0.8rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-switch { text-align: center; font-size: 0.85rem; color: var(--white); margin-top: 1.5rem; }
.auth-switch a { color: var(--amber); font-weight: 600; }
.btn-social { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.6rem; border: 1.5px solid var(--border); background: #fff; border-radius: 10px; padding: 0.8rem; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: border-color 0.2s, background 0.2s; font-family: inherit; }
.btn-social:hover { border-color: var(--amber); background: var(--amber-pale); }

/* ===== DASHBOARD LAYOUT ===== */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - var(--nav-h)); }
.dash-sidebar { background: var(--black); color: #fff; padding: 2rem 0; position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h)); overflow-y: auto; display: flex; flex-direction: column;border-right: 1px solid #fff; }
.dash-user-info { padding: 0 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.dash-avatar { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--amber), var(--amber-l)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 0.8rem; border: 3px solid rgba(255,255,255,0.1); }
.dash-name { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1rem; }
.dash-email { font-size: 0.77rem;  margin-top: 0.15rem; }
.xp-label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.4; font-weight: 700; margin: 0.8rem 0 0.3rem; }
.xp-pts { font-size: 0.7rem; opacity: 0.38; margin-top: 0.25rem; }
.dash-nav { padding: 1.5rem 0; flex: 1; }
.dash-nav-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.75rem 1.5rem; cursor: pointer; font-size: 0.88rem; font-weight: 500; color: var(--white ); transition: background 0.2s, color 0.2s; border-left: 3px solid transparent; text-decoration: none; }
.dash-nav-item:hover { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.85); }
.dash-nav-item.active { background: rgba(232,130,12,0.1); color: var(--amber); border-left-color: var(--amber); }
.dash-nav-icon { font-size: 1.1rem; width: 1.4rem; text-align: center; }
.dash-badge { margin-left: auto; background: var(--amber); color: var(--black); font-size: 0.6rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 100px; }
.dash-logout { padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); }
.dash-logout-btn { width: 100%; display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: transparent; color: var(--white); font-size: 0.85rem; font-weight: 500; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.dash-logout-btn:hover { background: rgba(220,38,38,0.1); color: #FC8181; border-color: rgba(220,38,38,0.3); }
.dash-content { background: var(--black); padding: 2.5rem; overflow-y: auto; }
.dash-header { margin-bottom: 2rem; }
.dash-header h1 { font-size: 1.6rem; margin-bottom: 0.3rem;color:var(--white) }
.dash-header p { font-size: 0.88rem; color: var(--white); }

/* dash content cards */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.contest-card { background: var(--black); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; transition: border-color 0.2s; }
.contest-card:hover { border-color: var(--amber); }
.contest-head { background: var(--black); color: #fff; padding: 1.1rem 1.4rem; display: flex; border-bottom:1px solid #fff;align-items: center; justify-content: space-between; }
.contest-head-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.98rem; }
.contest-head-date { font-size: 0.74rem;  margin-top: 0.15rem; }
.contest-body { padding: 1.4rem; }
.contest-prizes { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.9rem; }
.contest-meta { display: flex; gap: 1.5rem; font-size: 0.8rem; color: var(--white); flex-wrap: wrap; }
.tickets-row { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: 1rem; border-top: 1.5px solid var(--border); gap: 0.8rem; flex-wrap: wrap; }
.tickets-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; }

/* profile */
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.profile-section { background: var(--black); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.8rem; }
.profile-section h3 { font-size: 1rem; margin-bottom: 1.3rem; padding-bottom: 0.8rem; border-bottom: 1.5px solid var(--border); }
.profile-avatar-big { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--amber), var(--amber-l)); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin: 0 auto 0.8rem; border: 4px solid var(--amber-pale); }
.notif-row { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; border-bottom: 1px solid var(--border); gap: 1rem; }
.notif-row:last-child { border-bottom: none; }
.notif-info h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.notif-info p { font-size: 0.78rem; color: var(--muted); }

/* feed */
.feed-item { background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px; padding: 1rem 1.2rem; display: flex; align-items: center; gap: 1rem; }
.feed-avatar { width: 38px; height: 38px; border-radius: 50%;  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.feed-name { font-weight: 600; font-size: 0.88rem; }
.feed-sub { font-size: 0.75rem; color: var(--white); margin-top: 0.1rem; }
.feed-time { font-size: 0.7rem; color: var(--white); margin-left: auto; white-space: nowrap;  }

/* notif card */
.notif-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 0.8rem; }
.notif-card.unread { border-color: rgba(232,130,12,0.3); }
.notif-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.notif-card-title { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.2rem; }
.notif-card-body { font-size: 0.82rem; color: var(--white); line-height: 1.5; }
.notif-card-time { font-size: 0.72rem; color: var(--white); margin-top: 0.4rem; }

/* mobile dash nav tabs */
.dash-mobile-tabs { display: none; overflow-x: auto; gap: 0.5rem; padding-bottom: 1rem; margin-bottom: 1.5rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.dash-mobile-tabs::-webkit-scrollbar { display: none; }
.dmt-btn { background: var(--black); border: 1.5px solid var(--border); border-radius: 100px; padding: 0.5rem 1rem; font-size: 0.8rem; font-weight: 600; cursor: pointer; color: var(--dark); white-space: nowrap; transition: all 0.2s; font-family: inherit; }
.dmt-btn.active, .dmt-btn:hover { background: var(--amber); border-color: var(--amber); color: var(--black); }

/* ===== PRIZE CARDS ===== */
.prize-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.2rem;color:var(--white) }
.prize-card { background: var(--black); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.8rem 1.4rem; text-align: center; position: relative; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.prize-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--amber); }
.prize-card.featured { border-color: var(--amber); background: linear-gradient(135deg, #FFF8F0, #fff); }
.prize-top-badge { position: absolute; top: -11px; border:1px solid var(--white);left: 50%; transform: translateX(-50%); background: var(--black); color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.8rem; border-radius: 100px; white-space: nowrap; }
.prize-icon { font-size: 3.2rem; display: block; margin-bottom: 0.8rem; }
.prize-image-box{
 display: flex;
 justify-content: center;
}
.prize-image
{
    object-fit: contain;
    max-height: 100px;
}
.prize-concorso {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.15);
}
.prize-name { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.prize-desc { font-size: 0.8rem; color: var(--white); line-height: 1.5; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1.5px solid var(--black); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 0; cursor: pointer; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; transition: color 0.2s; user-select: none; }
.faq-q:hover { color: var(--black); }
.faq-chevron { width: 28px; height: 28px; border-radius: 50%; background: var(--amber-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; transition: transform 0.3s, background 0.2s; color: var(--amber); }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--amber); color: var(--black); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; font-size: 0.92rem; color: var(--black); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.2rem; }

/* ===== TICKET MOCKUP ===== */
.ticket-mockup { background: var(--black); border-radius: 16px; padding: 1.8rem; box-shadow: var(--shadow-lg); border: 1.5px solid var(--border); position: relative; overflow: hidden; }
.ticket-mockup::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--amber), var(--amber-l)); }
.ticket-mockup img{ max-width: 50px;object-fit: contain;}
.ticket-cut { border-top: 2px dashed var(--border); margin: 1rem -1.8rem; position: relative; }
.ticket-cut::before, .ticket-cut::after { content: ''; position: absolute; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; background: var(--bg); border-radius: 50%; }
.ticket-cut::before { left: -9px; }
.ticket-cut::after { right: -9px; }
.ticket-code { font-family: 'Courier New', monospace; font-size:0.8rem; font-weight: 700; letter-spacing: 0.12em; color: var(--dark); background: var(--bg); padding: 0.6rem 1rem; border-radius: 8px; text-align: center; border: 1.5px solid var(--border); }
.barcode { display: flex; gap: 2px; height: 36px; align-items: flex-end; justify-content: center; margin-top: 0.4rem; }


.barcode-bar { background: var(--dark); border-radius: 1px; }

/* ===== STEP CARDS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.step-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 2.5rem; transition: background 0.3s; }
.step-card:first-child { border-radius: 12px 0 0 12px; }
.step-card:last-child { border-radius: 0 12px 12px 0; }
.step-card:hover { background: rgba(232,130,12,0.08); }
.step-num-big { font-family: 'Outfit', sans-serif; font-size: 3.8rem; font-weight: 800; color: rgba(232,130,12,0.15); line-height: 1; margin-bottom: 1rem; }
.step-emoji { font-size: 2rem; display: block; margin-bottom: 0.8rem; }
.step-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.step-card p { font-size: 0.9rem; opacity: 0.55; line-height: 1.7; }
.step-tip { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--amber-pale); border-radius: 8px; padding: 0.4rem 0.8rem; font-size: 0.78rem; color: var(--amber); font-weight: 600; margin-top: 0.8rem; }
.step-section .step-icon svg{
    width: 2rem;
    height: 2rem;
}
.step-section .step-icon{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
/* ===== HERO ===== */
.hero-section { min-height: calc(100vh - var(--nav-h)); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; padding: 4rem 5vw 3rem; position: relative; }
.hero-section::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(232,130,12,0.055) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.hero-content { position: relative; z-index: 2; }
.hero-steps { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.hero-step { display: flex; align-items: center; gap: 0.75rem; font-size: 0.92rem; font-weight: 500; }
.hero-step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--black); color: #fff; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-badge { position: absolute; background: var(--black); border-radius: 10px; padding: 0.6rem 0.9rem; box-shadow: 0 6px 24px rgba(26,18,8,0.1); border: 1.5px solid var(--border); font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 0.4rem; }
.float-badge-1 { top: -18px; right: -20px; animation: float-anim 3s ease-in-out infinite; }
.float-badge-2 { bottom: 30px; left: -30px; animation: float-anim 3s 1.5s ease-in-out infinite; }
@keyframes float-anim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* strip stats */
.stats-strip { background: var(--amber);color: var(--black); padding: 3rem 5vw; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.strip-stat { text-align: center; }
.strip-stat-num { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--black); }
.strip-stat-lbl { font-size: 0.82rem;   margin-top: 0.2rem; }

/* feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.4rem; }
.feature-card { background: var(--black); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.6rem; transition: border-color 0.2s, transform 0.2s; }
.feature-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.feature-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.feature-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.85rem; color: var(--white); line-height: 1.6; }

/* CTA section */
.cta-section { background: var(--amber); padding: 5rem 5vw; text-align: center; }
.cta-section h2 { color:var(--black); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-section p { color: rgba(0,0,0,0.8); font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.6; }
.open-strip { margin-top: 2rem; font-size: 0.85rem; color: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

/* Footer */
.site-footer {border-top:1px solid #fff; background: #0E0A04; color: #fff; padding: 3rem 5vw; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.site-footer p { font-size: 0.78rem;  line-height: 1.6; }
.footer-brand { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--amber); }
.footer-brand img{
 
 max-width: 100px;
    object-fit: contain;
}
/* page hero bands */
.page-hero { padding: 5rem 5vw; }
.page-hero-dark { background: var(--black); color: #fff; }
.page-hero-amber { background: var(--amber); color: var(--black); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.page-hero p { font-size: 1rem; line-height: 1.75; max-width: 550px;color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    :root { --nav-h: 60px; }
    .page-hero { padding: 3rem 5vw; }
    .navbar-links { display: none; }
    .hamburger { display: flex; }
    .mobile-drawer { display: flex; }
     
    .hero-section { grid-template-columns: 1fr; padding: 3rem 5vw 6rem; }
    .hero-right { order: -1; }
    .steps-grid { grid-template-columns: 1fr; gap: 1px; }
    .step-card:first-child { border-radius: 12px 12px 0 0; }
    .step-card:last-child { border-radius: 0 0 12px 12px; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .dash-layout { grid-template-columns: 1fr; }
    .dash-sidebar { display: none; }
    .dash-content { padding: 1.5rem; padding-bottom: 5rem; }
    .dash-mobile-tabs { display: flex; }
    .profile-grid { grid-template-columns: 1fr; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .float-badge-1, .float-badge-2 { display: none; }
    .contest-meta { gap: 0.8rem; }
    main{
        padding-top: 60px;
    }
   /* body { padding-bottom: 70px; } */
}
@media (max-width: 600px) {
    .section { padding: 3.5rem 5vw; }
    .prize-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .data-table th:nth-child(3), .data-table td:nth-child(3) { display: none; }
}
@media (max-width: 380px) {
    .prize-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.5s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }



/** TICKET */

/* ===== GRID LAYOUT ===== */

.ticket-section {
      display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {
     .ticket-section {
        gap: 1.5rem;
    }

    .ticket-info {
        margin-top: 1rem;
    }
}
@media (max-width: 768px) {
    .ticket-section {
        flex-direction: column;
    }

    .ticket-card,
    .ticket-info {
        width: 100%;
    }
}

/* ===== TICKET CARD ===== */

.ticket-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1.5px solid var(--border);
    font-family: 'Courier New', monospace;
    font-size: .82rem;
    color: var(--muted);
    line-height: 2;
}

 
 

/* ===== INFO SIDE ===== */

.ticket-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
 
 