@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
:root { --c-primary: #ff3b30; --c-primary-dark: #d70015; --c-secondary: #ff9500; --c-success: #34c759; --c-info: #007aff; --c-purple: #af52de; --c-bg: #f5f5f7; --c-card: #ffffff; --c-text: #1d1d1f; --c-text-2: #4a4a4f; --c-text-muted: #86868b; --c-border: #e5e5ea; --c-border-light: #f0f0f3; --r-sm: 8px; --r: 14px; --r-lg: 20px; --r-pill: 999px; --sh-sm: 0 1px 3px rgba(0, 0, 0, 0.05); --sh: 0 4px 16px rgba(0, 0, 0, 0.06); --sh-md: 0 8px 24px rgba(0, 0, 0, 0.08); --sh-primary: 0 8px 24px rgba(255, 59, 48, 0.25); --grad: linear-gradient(135deg, #ff3b30 0%, #ff9500 100%); --ease: cubic-bezier(0.4, 0, 0.2, 1); --tr: all 0.25s var(--ease); }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--c-bg); color: var(--c-text); line-height: 1.5; min-height: 100vh; display: flex; flex-direction: column; font-size: 15px; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; transition: var(--tr); }
button { font-family: inherit; cursor: pointer; border: none; background: none; font-size: inherit; }
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }
.top-bar { background: #fff; box-shadow: var(--sh-sm); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--c-border-light); }
.top-bar-inner { max-width: 1280px; margin: 0 auto; padding: 12px 20px; }
.top-bar-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; gap: 16px; }
.logo-brand { display: inline-flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 900; color: var(--c-text); letter-spacing: -0.5px; }
.logo-brand i { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-size: 26px; }
.burger-btn { display: none; width: 42px; height: 42px; background: var(--c-bg); border-radius: 12px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; transition: var(--tr); }
.burger-btn span { display: block; width: 20px; height: 2px; background: var(--c-text); border-radius: 2px; transition: var(--tr); }
.burger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-open span:nth-child(2) { opacity: 0; }
.burger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.nav-pill { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600; color: var(--c-text-2); background: var(--c-bg); transition: var(--tr); white-space: nowrap; }
.nav-pill i { font-size: 13px; }
.nav-pill:hover { background: #fff; color: var(--c-primary); box-shadow: var(--sh-sm); }
.nav-pill.is-active { background: var(--grad); color: #fff; box-shadow: 0 4px 12px rgba(255, 59, 48, 0.25); }
.nav-pill.is-active i { color: #fff; }
.drawer-veil { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.drawer-veil.is-open { opacity: 1; pointer-events: auto; }
.side-drawer { position: fixed; top: 0; right: 0; width: 320px; max-width: 88vw; height: 100vh; background: #fff; z-index: 1200; transform: translateX(100%); transition: transform 0.35s var(--ease); display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15); }
.side-drawer.is-open { transform: translateX(0); }
.drawer-top { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--c-border-light); }
.drawer-logo { font-size: 16px; font-weight: 900; color: var(--c-primary); letter-spacing: 2px; }
.drawer-x { width: 38px; height: 38px; background: var(--c-bg); border-radius: 10px; font-size: 16px; color: var(--c-text); transition: var(--tr); }
.drawer-x:hover { background: var(--c-primary); color: #fff; }
.drawer-scroll { flex: 1; overflow-y: auto; padding: 14px 12px 24px; }
.drawer-scroll::-webkit-scrollbar { width: 4px; }
.drawer-scroll::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 2px; }
.drawer-group-title { font-size: 11px; font-weight: 800; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1px; padding: 16px 12px 8px; }
.drawer-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600; color: var(--c-text-2); margin-bottom: 2px; }
.drawer-item i { color: var(--c-primary); width: 20px; text-align: center; font-size: 14px; }
.drawer-item:hover, .drawer-item.is-active { background: #fff5f5; color: var(--c-primary); }
.layout-grid { flex: 1; max-width: 1280px; width: 100%; margin: 0 auto; padding: 24px 20px 60px; display: grid; grid-template-columns: 260px 1fr 260px; gap: 20px; align-items: start; }
.side-panel { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 130px; }
.content-area { min-width: 0; }
.hero-block { background: var(--grad); color: #fff; border-radius: var(--r-lg); padding: 48px 24px; text-align: center; margin-bottom: 32px; position: relative; overflow: hidden; box-shadow: 0 12px 32px rgba(255, 59, 48, 0.25); }
.hero-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%); pointer-events: none; }
.hero-block h1 { font-size: 32px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 12px; position: relative; line-height: 1.2; }
.hero-block h1 i { font-size: 30px; margin-right: 8px; }
.hero-block p { font-size: 16px; opacity: 0.95; margin-bottom: 26px; position: relative; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-block small { display: inline-block; margin-top: 14px; font-size: 12px; opacity: 0.9; position: relative; }
.hero-compact { padding: 32px 24px; }
.hero-compact h1 { font-size: 26px; }
.hero-compact p { font-size: 15px; margin-bottom: 0; }
.signup-form { display: flex; gap: 6px; max-width: 520px; margin: 0 auto; background: #fff; padding: 6px; border-radius: var(--r-pill); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); position: relative; }
.signup-form input { flex: 1; border: none; padding: 14px 20px; font-size: 15px; outline: none; border-radius: var(--r-pill); font-family: inherit; color: var(--c-text); background: transparent; min-width: 0; }
.signup-form input::placeholder { color: var(--c-text-muted); }
.signup-form button { background: var(--grad); color: #fff; padding: 14px 26px; font-size: 14px; font-weight: 800; border-radius: var(--r-pill); white-space: nowrap; transition: var(--tr); display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.signup-form button:hover:not(:disabled) { transform: scale(1.02); }
.signup-form button:disabled { opacity: 0.7; cursor: wait; }
.info-panel { background: var(--c-card); border: 1px solid var(--c-border-light); border-radius: var(--r); padding: 16px; box-shadow: var(--sh-sm); }
.info-title { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; color: var(--c-text); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--c-border-light); letter-spacing: -0.2px; }
.info-title i { color: var(--c-primary); font-size: 14px; flex-shrink: 0; }
.menu-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--r-sm); font-size: 13px; font-weight: 500; color: var(--c-text-2); transition: var(--tr); border-left: 3px solid transparent; margin-bottom: 2px; }
.menu-row i { color: var(--c-primary); width: 18px; text-align: center; font-size: 13px; flex-shrink: 0; }
.menu-row:hover, .menu-row.is-active { background: #fff5f5; color: var(--c-primary); border-left-color: var(--c-primary); }
.codes-list-section, .article-block { margin-bottom: 32px; }
.list-heading { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--c-text); letter-spacing: -0.3px; margin-bottom: 20px; line-height: 1.3; }
.list-heading i { color: var(--c-primary); font-size: 20px; }
.offer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.offer-tile { background: var(--c-card); border: 2px solid var(--c-border-light); border-radius: var(--r); padding: 20px; display: flex; flex-direction: column; gap: 12px; transition: var(--tr); }
.offer-tile:hover { border-color: var(--c-secondary); transform: translateY(-4px); box-shadow: var(--sh-md); }
.tile-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.tile-site { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--c-text); }
.tile-site i { color: var(--c-primary); font-size: 13px; }
.tile-timer { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; color: var(--c-primary); background: #fff5f5; padding: 4px 10px; border-radius: var(--r-pill); white-space: nowrap; }
.tile-timer.is-expired { color: var(--c-text-muted); background: var(--c-bg); }
.tile-amount { font-size: 34px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; letter-spacing: -1.5px; margin: 4px 0; }
.tile-name { font-size: 14px; font-weight: 600; color: var(--c-text); line-height: 1.4; min-height: 40px; }
.tile-code { background: #fff8f0; border: 2px dashed var(--c-secondary); border-radius: var(--r-sm); padding: 14px; text-align: center; }
.tile-code-text { font-family: 'Courier New', monospace; font-size: 20px; font-weight: 900; letter-spacing: 3px; color: var(--c-text); word-break: break-all; }
.tile-buttons { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: auto; }

.copy-action { background: var(--grad); color: #fff; padding: 12px 16px; font-size: 13px; font-weight: 800; border-radius: var(--r-sm); letter-spacing: 0.5px; transition: var(--tr); display: inline-flex; align-items: center; justify-content: center; gap: 6px; text-transform: uppercase; }
.copy-action:hover { transform: scale(1.02); box-shadow: 0 6px 20px rgba(255, 59, 48, 0.35); }
.copy-action.copied { background: var(--c-success); }
.more-action { background: var(--c-bg); color: var(--c-text); padding: 12px 16px; border-radius: var(--r-sm); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; transition: var(--tr); }
.more-action:hover { background: var(--c-text); color: #fff; }
.big-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--grad); color: #fff; padding: 14px 28px; border-radius: var(--r-sm); font-size: 14px; font-weight: 800; transition: var(--tr); cursor: pointer; width: 100%; }
.big-cta:hover { transform: translateY(-2px); box-shadow: var(--sh-primary); }
.article-block { background: var(--c-card); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--sh-sm); }
.article-body { color: var(--c-text-2); font-size: 15px; line-height: 1.75; }
.article-body p { color: var(--c-text-2); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.article-body h2 { color: var(--c-text); font-size: 22px; font-weight: 800; letter-spacing: -0.3px; display: flex; align-items: center; gap: 10px; line-height: 1.3; margin: 32px 0 16px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { color: var(--c-text); font-size: 17px; font-weight: 800; display: flex; align-items: center; gap: 10px; line-height: 1.3; margin: 24px 0 12px; }
.article-body h2 i, .article-body h3 i { color: var(--c-primary); font-size: 20px; flex-shrink: 0; }
.article-body h3 i { font-size: 16px; }
.article-body strong { color: var(--c-text); font-weight: 700; }
.article-body .inline-link { color: var(--c-primary); font-weight: 600; border-bottom: 1px dashed rgba(255, 59, 48, 0.3); }
.article-body .inline-link:hover { color: var(--c-secondary); border-bottom-color: var(--c-secondary); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 24px 0; }
.feature-card { background: var(--c-bg); padding: 22px 18px; border-radius: var(--r); border-left: 4px solid var(--c-primary); transition: var(--tr); }
.feature-card:hover { background: #fff5f5; transform: translateY(-3px); box-shadow: var(--sh); }
.feature-card i { font-size: 26px; color: var(--c-primary); margin-bottom: 12px; display: block; }
.feature-card h4 { font-size: 15px; font-weight: 800; color: var(--c-text); margin-bottom: 6px; line-height: 1.3; }
.feature-card p { font-size: 13px; color: var(--c-text-2); line-height: 1.5; margin: 0; }
.check-list { margin: 20px 0; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px; background: var(--c-bg); border-radius: var(--r-sm); margin-bottom: 8px; font-size: 14px; color: var(--c-text-2); line-height: 1.6; }
.check-list li i { color: var(--c-success); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.check-list li strong { color: var(--c-text); font-weight: 700; }
.highlight-box { background: #fff8f0; padding: 18px 22px; border-radius: var(--r); border-left: 5px solid var(--c-secondary); margin: 24px 0; }
.highlight-box p { font-size: 14px; color: var(--c-text-2); line-height: 1.7; margin: 0; }
.highlight-box p i { color: var(--c-secondary); margin-right: 8px; font-size: 15px; }
.highlight-box strong { color: var(--c-text); font-weight: 700; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 24px 0; }
.step { text-align: center; padding: 24px 16px; background: var(--c-bg); border-radius: var(--r); transition: var(--tr); }
.step:hover { background: #fff5f5; transform: translateY(-3px); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: var(--grad); color: #fff; font-size: 22px; font-weight: 900; border-radius: 50%; margin-bottom: 14px; box-shadow: 0 6px 16px rgba(255, 59, 48, 0.3); }
.step h3 { font-size: 15px; font-weight: 800; color: var(--c-text); margin-bottom: 6px; line-height: 1.3; }
.step p { font-size: 13px; color: var(--c-text-2); line-height: 1.5; margin: 0; }
.faq-item { background: var(--c-card); border: 1px solid var(--c-border-light); border-radius: var(--r); margin-bottom: 10px; overflow: hidden; transition: var(--tr); }
.faq-item:hover { border-color: var(--c-border); }
.faq-q { padding: 16px 20px; font-size: 14px; font-weight: 700; color: var(--c-text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: var(--tr); user-select: none; }
.faq-q::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--c-primary); font-size: 12px; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.is-open .faq-q::after { transform: rotate(180deg); }
.faq-item.is-open .faq-q { background: #fff5f5; color: var(--c-primary); }
.faq-a { max-height: 0; overflow: hidden; padding: 0 20px; color: var(--c-text-2); font-size: 13.5px; line-height: 1.7; transition: max-height 0.35s var(--ease), padding 0.3s var(--ease); }
.faq-item.is-open .faq-a { max-height: 600px; padding: 0 20px 18px; }
.live-list { display: flex; flex-direction: column; gap: 8px; max-height: 460px; overflow: hidden; position: relative; }
.live-list::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40px; background: linear-gradient(to top, var(--c-card), transparent); pointer-events: none; z-index: 2; }
.live-row { display: flex; flex-direction: column; gap: 5px; padding: 10px 12px; background: var(--c-bg); border-radius: 10px; border-left: 3px solid var(--c-primary); position: relative; z-index: 1; transition: var(--tr); }
.live-row:hover { background: #fff5f5; transform: translateX(3px); }
.live-row-top { display: flex; align-items: center; gap: 8px; }
.live-icon { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; background: #fff5f5; border-radius: 50%; color: var(--c-primary); font-size: 11px; flex-shrink: 0; border: 1px solid rgba(255, 59, 48, 0.12); }
.live-name { font-size: 12.5px; font-weight: 700; color: var(--c-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.2; }
.live-detail { font-size: 11px; color: var(--c-text-muted); line-height: 1.4; padding-left: 2px; word-break: break-word; }
.live-detail .hl { color: var(--c-primary); font-weight: 700; }
.live-detail .hl a { color: var(--c-primary); font-weight: 700; }
.live-detail .hl a:hover { color: var(--c-secondary); text-decoration: underline; }
.live-amount { font-size: 12.5px; font-weight: 800; color: var(--c-success); letter-spacing: 0.2px; border-top: 1px dashed rgba(255, 59, 48, 0.12); padding-top: 6px; margin-top: 2px; }
.live-row.slot-row { border-left-color: #ff3b30; }
.live-row.bet-row { border-left-color: #007aff; }
.live-row.bet-row .live-icon { background: #e6f0ff; color: #007aff; border-color: rgba(0, 122, 255, 0.12); }
.live-row.bet-row .live-detail .hl, .live-row.bet-row .live-detail .hl a { color: #007aff; }
.live-row.bonus-row { border-left-color: #34c759; }
.live-row.bonus-row .live-icon { background: #e6f9ec; color: #34c759; border-color: rgba(52, 199, 89, 0.12); }
.live-row.bonus-row .live-detail .hl { color: #34c759; }
.live-row.page-row { border-left-color: #af52de; }
.live-row.page-row .live-icon { background: #f5e6ff; color: #af52de; border-color: rgba(175, 82, 222, 0.12); }
.live-row.page-row .live-detail a.hl { display: inline-block; margin-top: 4px; padding: 3px 10px; background: rgba(175, 82, 222, 0.08); border-radius: 8px; color: #af52de; font-weight: 700; }
.live-row.page-row .live-detail a.hl:hover { background: #af52de; color: #fff; }
.not-found { text-align: center; padding: 80px 20px; background: var(--c-card); border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.not-found h1 { font-size: 96px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; letter-spacing: -4px; margin-bottom: 8px; }
.not-found p { color: var(--c-text-muted); font-size: 16px; margin-bottom: 28px; }
.popup-toast { position: fixed; bottom: 24px; right: 24px; background: #1d1d1f; color: #fff; padding: 14px 22px; border-radius: var(--r-sm); display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25); transform: translateY(120px); opacity: 0; transition: all 0.35s var(--ease); z-index: 9999; max-width: calc(100vw - 48px); pointer-events: none; }
.popup-toast.is-shown { transform: translateY(0); opacity: 1; }
.popup-toast i { font-size: 16px; }
.popup-toast.toast-success i { color: var(--c-success); }
.popup-toast.toast-error i { color: var(--c-primary); }
.modal-veil { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.28s var(--ease); }
.modal-veil.is-open { opacity: 1; pointer-events: auto; }
.bonus-modal { position: fixed; inset: 0; z-index: 2100; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.28s var(--ease); }
.bonus-modal.is-open { opacity: 1; pointer-events: auto; }
.modal-card { background: #fff; width: 100%; max-width: 560px; max-height: 92vh; border-radius: 24px; padding: 28px 26px 24px; overflow-y: auto; position: relative; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35); transform: translateY(24px) scale(0.96); opacity: 0; transition: transform 0.32s var(--ease), opacity 0.28s var(--ease); }
.bonus-modal.is-open .modal-card { transform: translateY(0) scale(1); opacity: 1; }
.modal-card::-webkit-scrollbar { width: 6px; }
.modal-card::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 3px; }
.modal-x { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; background: var(--c-bg); border-radius: 50%; font-size: 16px; color: var(--c-text); display: inline-flex; align-items: center; justify-content: center; transition: var(--tr); z-index: 2; }
.modal-x:hover { background: var(--c-primary); color: #fff; transform: rotate(90deg); }
.modal-head { text-align: center; margin-bottom: 20px; padding-top: 4px; }
.modal-brand { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: var(--c-primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.modal-brand i { font-size: 14px; }
.modal-title { font-size: 22px; font-weight: 900; color: var(--c-text); line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 14px; }
.modal-pills { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: var(--r-pill); font-size: 12px; font-weight: 700; white-space: nowrap; }
.pill-red { background: #fff5f5; color: var(--c-primary); }
.pill-orange { background: #fff8e6; color: #b8860b; }
.pill-orange.is-expired { background: var(--c-bg); color: var(--c-text-muted); }
.pill-green { background: #e8f9ee; color: var(--c-success); }
.modal-amount { text-align: center; padding: 22px 18px; background: #fff8f0; border-radius: var(--r); margin-bottom: 18px; position: relative; overflow: hidden; }
.modal-amount::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(255, 149, 0, 0.12), transparent 70%); pointer-events: none; }
.modal-amount-label { display: block; font-size: 11px; font-weight: 800; color: var(--c-text-muted); letter-spacing: 2px; margin-bottom: 6px; position: relative; }
.modal-amount-value { display: block; font-size: 44px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; letter-spacing: -2px; position: relative; }
.modal-code-box { background: #fff8f0; border: 3px dashed var(--c-secondary); border-radius: var(--r); padding: 20px 18px; text-align: center; margin-bottom: 20px; }
.modal-code-label { font-size: 11px; font-weight: 800; color: var(--c-text-muted); letter-spacing: 2px; margin-bottom: 10px; text-transform: uppercase; }
.modal-code-value { font-family: 'Courier New', monospace; font-size: 26px; font-weight: 900; letter-spacing: 3px; color: var(--c-text); margin-bottom: 14px; word-break: break-all; line-height: 1.2; }
.modal-copy { padding: 12px 28px; font-size: 13px; width: auto; min-width: 160px; margin: 0 auto; display: inline-flex; }
.modal-accordion { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.accordion-item { background: var(--c-bg); border-radius: var(--r-sm); overflow: hidden; transition: var(--tr); }
.accordion-item.is-open { background: #fff8f0; }
.accordion-head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 16px; font-size: 13.5px; font-weight: 700; color: var(--c-text); text-align: left; transition: var(--tr); cursor: pointer; }
.accordion-head > span { display: inline-flex; align-items: center; gap: 8px; }
.accordion-head > span i { color: var(--c-primary); font-size: 13px; }
.accordion-head .arrow { color: var(--c-text-muted); font-size: 12px; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.accordion-item.is-open .accordion-head .arrow { transform: rotate(180deg); color: var(--c-primary); }
.accordion-item.is-open .accordion-head { color: var(--c-primary); }
.accordion-body { max-height: 0; overflow: hidden; padding: 0 16px; transition: max-height 0.35s var(--ease), padding 0.3s var(--ease); }
.accordion-item.is-open .accordion-body { max-height: 400px; padding: 0 16px 16px; }
.accordion-body p { font-size: 13px; color: var(--c-text-2); line-height: 1.65; margin: 0; }
.modal-steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.modal-steps li { position: relative; padding: 8px 0 8px 0; font-size: 13px; color: var(--c-text-2); line-height: 1.5; border-bottom: 1px dashed var(--c-border-light); }
.modal-steps li:last-child { border-bottom: none; }
.modal-steps li strong { color: var(--c-primary); font-weight: 800; margin-right: 4px; }
.modal-steps li em { color: var(--c-text); font-style: normal; font-weight: 700; background: rgba(255, 59, 48, 0.08); padding: 1px 6px; border-radius: 4px; }
.modal-cta { padding: 15px; font-size: 15px; font-weight: 800; }

.firm-layout { display: grid; grid-template-columns: 1fr 300px; gap: 22px; align-items: start; }
.firm-main { min-width: 0; display: flex; flex-direction: column; gap: 24px; }
.firm-aside { position: sticky; top: 130px; }
.firm-horizontal-card { background: var(--c-card); border: 1px solid var(--c-border-light); border-radius: var(--r-lg); padding: 24px 22px; box-shadow: var(--sh-md); margin-bottom: 32px; display: flex; flex-direction: column; gap: 22px; position: relative; overflow: hidden; }
.firm-horizontal-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); }
.fhc-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.fhc-brand { display: flex; align-items: center; gap: 14px; }
.fhc-logo { width: 56px; height: 56px; background: var(--grad); color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 6px 18px rgba(255, 59, 48, 0.25); flex-shrink: 0; }
.fhc-brand-info h3 { font-size: 22px; font-weight: 900; color: var(--c-text); letter-spacing: -0.4px; margin-bottom: 4px; line-height: 1.2; }
.fhc-rating { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--c-text-2); background: #fff8e6; padding: 4px 12px; border-radius: var(--r-pill); font-weight: 600; }
.fhc-rating i { color: #ffcc00; font-size: 12px; }
.fhc-rating strong { color: var(--c-text); font-weight: 800; }
.fhc-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--grad); color: #fff; padding: 13px 26px; border-radius: var(--r-sm); font-size: 14px; font-weight: 800; transition: var(--tr); white-space: nowrap; box-shadow: 0 6px 18px rgba(255, 59, 48, 0.25); }
.fhc-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255, 59, 48, 0.35); }
.fhc-stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; padding: 18px 0; border-top: 1px solid var(--c-border-light); border-bottom: 1px solid var(--c-border-light); margin: 0; list-style: none; }
.fhc-stats li { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 10px 8px; background: var(--c-bg); border-radius: var(--r-sm); transition: var(--tr); }
.fhc-stats li:hover { background: #fff5f5; transform: translateY(-2px); }
.fhc-stats li > i { color: var(--c-primary); font-size: 16px; margin-bottom: 2px; }
.fhc-st-label { font-size: 10.5px; color: var(--c-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; line-height: 1.2; }
.fhc-st-value { font-size: 13px; color: var(--c-text); font-weight: 800; line-height: 1.2; }
.fhc-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fhc-col h4 { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: var(--c-text); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.4px; }
.fhc-col h4 i { color: var(--c-primary); font-size: 13px; }
.fhc-col h4 i.fa-circle-minus { color: var(--c-text-muted); }
.fhc-list { display: flex; flex-direction: column; gap: 8px; padding: 0; margin: 0; list-style: none; }
.fhc-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--c-text-2); line-height: 1.5; }
.fhc-list li > i { font-size: 11px; margin-top: 4px; flex-shrink: 0; }
.fhc-pros li > i { color: var(--c-success); }
.fhc-cons li > i { color: var(--c-primary); }
.fhc-meta li { justify-content: space-between; background: var(--c-bg); padding: 8px 12px; border-radius: var(--r-sm); gap: 10px; }
.fhc-meta li span { color: var(--c-text-muted); font-weight: 500; font-size: 12.5px; }
.fhc-meta li strong { color: var(--c-text); font-weight: 800; font-size: 12.5px; }
.site-base { background: #111113; color: #d4d4d8; padding: 48px 20px 24px; margin-top: auto; position: relative; overflow: hidden; }
.site-base::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.base-inner { max-width: 1280px; margin: 0 auto; }
.base-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.base-col { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.base-col-brand { gap: 14px; }
.base-logo { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -0.4px; margin-bottom: 4px; }
.base-logo i { font-size: 22px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.base-desc { font-size: 12.5px; line-height: 1.7; color: #a1a1a6; margin: 0; }
.base-desc strong { color: #fff; font-weight: 700; }
.base-socials { display: flex; gap: 8px; margin-top: 4px; }
.base-socials a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255, 255, 255, 0.05); border-radius: 10px; color: #a1a1a6; font-size: 14px; transition: var(--tr); }
.base-socials a:hover { background: var(--grad); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255, 59, 48, 0.3); }
.base-col h4 { font-size: 12px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; position: relative; padding-bottom: 10px; }
.base-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 24px; height: 2px; background: var(--grad); border-radius: 2px; }
.base-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: #a1a1a6; padding: 4px 0; transition: var(--tr); line-height: 1.4; }
.base-link i { font-size: 11px; color: var(--c-primary); opacity: 0.7; width: 14px; text-align: center; flex-shrink: 0; transition: var(--tr); }
.base-link:hover { color: #fff; padding-left: 4px; }
.base-link:hover i { color: var(--c-secondary); opacity: 1; }
.base-bottom { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.base-badges { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }
.age-badge { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: linear-gradient(135deg, #ef4444, #f87171); color: #fff; font-size: 13px; font-weight: 900; border-radius: 50%; box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3); letter-spacing: -0.5px; }
.info-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255, 59, 48, 0.1); border: 1px solid rgba(255, 59, 48, 0.2); color: #ff6b63; padding: 8px 16px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; white-space: nowrap; }
.info-badge i { font-size: 12px; }
.base-copy { font-size: 11.5px; color: #6e6e73; line-height: 1.7; margin: 0; max-width: 720px; }
.base-copy strong { color: #d4d4d8; font-weight: 700; }
.base-copy em { color: #a1a1a6; font-style: italic; }
.base-copy-small { font-size: 10.5px; color: #52525b; padding-top: 6px; border-top: 1px solid rgba(255, 255, 255, 0.04); max-width: 620px; }
.base-copy-small i { color: #ff9500; margin-right: 4px; }
.winners-bar { display: none; background: #0a0a0c; border-top: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding: 14px 0; overflow: hidden; position: relative; z-index: 5; }
@media (max-width: 900px) { .winners-bar { display: block; } }
.winners-bar-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 20px; padding: 0 20px; }
.winners-bar-label { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, #ff3b30, #ff9500); color: #fff; padding: 8px 16px; border-radius: 999px; font-size: 11px; font-weight: 900; letter-spacing: 0.8px; white-space: nowrap; flex-shrink: 0; box-shadow: 0 4px 16px rgba(255, 59, 48, 0.35); position: relative; z-index: 2; }
.winners-bar-label i { font-size: 12px; }
.winners-bar-pulse { display: inline-block; width: 8px; height: 8px; background: #fff; border-radius: 50%; position: relative; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); animation: winnersPulse 1.6s infinite; }
@keyframes winnersPulse { 0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); } 70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }
.winners-bar-track { flex: 1; display: flex; gap: 12px; overflow: hidden; position: relative; animation: winnersScroll 45s linear infinite; will-change: transform; }
.winners-bar-track:hover { animation-play-state: paused; }
@keyframes winnersScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.winner-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06); border-left: 3px solid var(--c-primary); padding: 8px 14px; border-radius: 10px; font-size: 12px; white-space: nowrap; flex-shrink: 0; color: #d4d4d8; transition: all 0.25s ease; }
.winner-chip:hover { background: rgba(255, 255, 255, 0.08); border-left-color: var(--c-secondary); transform: translateY(-1px); }
.winner-chip > i { font-size: 12px; width: 16px; text-align: center; flex-shrink: 0; }
.winner-chip .chip-name { font-weight: 700; color: #fff; font-size: 12px; }
.winner-chip .chip-detail { color: #86868b; font-size: 11px; max-width: 180px; overflow: hidden; text-overflow: ellipsis; }
.winner-chip .chip-amount { font-weight: 800; color: var(--c-success); font-size: 12px; padding-left: 6px; border-left: 1px solid rgba(255, 255, 255, 0.08); margin-left: 4px; }
.winner-chip.chip-slot > i { color: #ff3b30; }
.winner-chip.chip-bet > i { color: #007aff; }
.winner-chip.chip-bet { border-left-color: #007aff; }
.winner-chip.chip-bonus > i { color: #34c759; }
.winner-chip.chip-bonus { border-left-color: #34c759; }
@media (max-width: 1180px) { .layout-grid { grid-template-columns: 220px 1fr; } .side-panel-right { display: none; } .live-list { max-height: 380px; } .firm-layout { grid-template-columns: 1fr 260px; gap: 18px; } }
@media (max-width: 1024px) { .base-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; } .base-col-brand { grid-column: 1 / -1; padding-bottom: 20px; margin-bottom: 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); } }
@media (max-width: 900px) { .layout-grid { grid-template-columns: 1fr; padding: 16px 16px 40px; gap: 0; } .side-panel { display: none; } .burger-btn { display: flex; } .nav-pills { display: none; } .top-bar-row { margin-bottom: 0; } .top-bar-inner { padding: 12px 16px; } .logo-brand { font-size: 19px; } .logo-brand i { font-size: 22px; } .hero-block { padding: 36px 20px; border-radius: var(--r); margin-bottom: 24px; } .hero-block h1 { font-size: 22px; } .hero-block h1 i { font-size: 20px; display: block; margin: 0 0 8px 0; } .hero-block p { font-size: 14px; margin-bottom: 20px; } .hero-compact h1 { font-size: 20px; } .hero-compact p { font-size: 13px; } .signup-form { flex-direction: column; border-radius: var(--r); padding: 10px; gap: 8px; } .signup-form input, .signup-form button { border-radius: var(--r-sm); width: 100%; padding: 14px 16px; font-size: 14px; } .signup-form button { justify-content: center; } .offer-grid { grid-template-columns: 1fr; gap: 14px; } .feature-grid { grid-template-columns: 1fr; gap: 12px; } .steps { grid-template-columns: 1fr; gap: 14px; } .list-heading { font-size: 18px; margin-bottom: 16px; } .article-body, .article-body p { font-size: 14px; } .article-body h2 { font-size: 18px; margin: 24px 0 12px; } .article-body h3 { font-size: 15px; } .article-block { padding: 20px 16px; } .info-panel { padding: 14px; } .info-title { font-size: 13px; } .feature-card { padding: 18px 16px; } .feature-card i { font-size: 22px; margin-bottom: 10px; } .feature-card h4 { font-size: 14px; } .feature-card p { font-size: 12.5px; } .step { padding: 20px 14px; } .step-num { width: 46px; height: 46px; font-size: 20px; } .highlight-box { padding: 16px 18px; margin: 20px 0; } .highlight-box p { font-size: 13px; } .check-list li { font-size: 13px; padding: 10px 14px; } .faq-q { font-size: 13.5px; padding: 14px 16px; } .faq-a { font-size: 13px; } .faq-item.is-open .faq-a { padding: 0 16px 16px; } .popup-toast { left: 16px; right: 16px; bottom: 16px; max-width: none; font-size: 13px; padding: 12px 16px; } .side-drawer { width: 300px; } .bonus-modal { padding: 0; align-items: flex-end; } .modal-card { max-width: 100%; max-height: 92vh; border-radius: 24px 24px 0 0; padding: 24px 20px 20px; transform: translateY(100%); } .bonus-modal.is-open .modal-card { transform: translateY(0); } .modal-title { font-size: 18px; } .modal-amount-value { font-size: 34px; } .modal-code-value { font-size: 22px; letter-spacing: 2px; } .modal-copy { padding: 11px 22px; font-size: 12.5px; } .modal-x { width: 34px; height: 34px; top: 12px; right: 12px; font-size: 14px; } .accordion-head { font-size: 13px; padding: 12px 14px; } .accordion-body p { font-size: 12.5px; } .modal-steps li { font-size: 12.5px; } .modal-cta { padding: 14px; font-size: 14px; } .firm-horizontal-card { padding: 20px 18px; gap: 18px; } .fhc-top { flex-direction: column; align-items: stretch; text-align: center; } .fhc-brand { justify-content: center; flex-direction: column; text-align: center; } .fhc-brand-info h3 { font-size: 20px; } .fhc-cta { width: 100%; justify-content: center; } .fhc-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px 0; } .fhc-columns { grid-template-columns: 1fr; gap: 16px; } .firm-layout { grid-template-columns: 1fr; gap: 20px; } .firm-aside { position: static; order: -1; } .winners-bar-inner { gap: 12px; padding: 0 14px; } .winners-bar-label { padding: 6px 12px; font-size: 10px; } .winners-bar-track { animation-duration: 35s; } .winner-chip { padding: 7px 12px; font-size: 11px; } .winner-chip .chip-name { font-size: 11px; } .winner-chip .chip-detail { font-size: 10px; max-width: 120px; } .winner-chip .chip-amount { font-size: 11px; } }
@media (max-width: 640px) { .site-base { padding: 36px 16px 20px; } .base-grid { grid-template-columns: 1fr 1fr; gap: 22px 18px; margin-bottom: 28px; padding-bottom: 28px; } .base-col-brand { grid-column: 1 / -1; text-align: center; } .base-logo { justify-content: center; font-size: 18px; } .base-desc { text-align: center; font-size: 12px; } .base-socials { justify-content: center; } .base-col h4 { font-size: 11px; } .base-link { font-size: 12px; } .base-badges { gap: 8px; } .age-badge { width: 38px; height: 38px; font-size: 11px; } .info-badge { font-size: 10px; padding: 6px 12px; } .base-copy { font-size: 11px; } .base-copy-small { font-size: 10px; } }
@media (max-width: 480px) { .hero-block h1 { font-size: 20px; } .tile-amount { font-size: 28px; } .tile-code-text { font-size: 17px; letter-spacing: 2px; } .offer-tile { padding: 16px; } .tile-buttons { grid-template-columns: 1fr; } .more-action { justify-content: center; } .logo-brand { font-size: 17px; } .modal-title { font-size: 16px; } .modal-amount-value { font-size: 30px; } .modal-code-value { font-size: 18px; letter-spacing: 1.5px; } .modal-pills { gap: 4px; } .pill { font-size: 11px; padding: 5px 10px; } .base-grid { grid-template-columns: 1fr; gap: 20px; } .base-col h4::after { left: 50%; transform: translateX(-50%); } .base-col { text-align: center; align-items: center; } .base-link { justify-content: center; } .firm-horizontal-card { padding: 18px 14px; border-radius: var(--r); } .fhc-logo { width: 48px; height: 48px; font-size: 20px; } .fhc-brand-info h3 { font-size: 18px; } .fhc-stats { grid-template-columns: repeat(2, 1fr); } .fhc-st-label { font-size: 10px; } .fhc-st-value { font-size: 12.5px; } .fhc-col h4 { font-size: 12px; } .fhc-list li { font-size: 12.5px; } .firm-card { padding: 16px 14px; } .firm-stats li { font-size: 12px; padding: 9px 0; } .winners-bar { padding: 10px 0; } .winners-bar-inner { gap: 10px; padding: 0 10px; } .winners-bar-label { padding: 6px 10px; } .winners-bar-label i { font-size: 13px; } .winners-bar-track { animation-duration: 28s; gap: 8px; } .winner-chip { padding: 6px 10px; font-size: 10.5px; } .winner-chip .chip-detail { display: none; } .winner-chip .chip-name { font-size: 10.5px; } .winner-chip .chip-amount { font-size: 10.5px; } }
.mobile-nav-scroll { display: none; gap: 8px; overflow-x: auto; overflow-y: hidden; padding: 10px 0 4px; margin: 0 -20px; padding-left: 20px; padding-right: 20px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.mobile-nav-scroll::-webkit-scrollbar { display: none; }
.mobile-nav-item { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; flex-shrink: 0; min-width: 72px; padding: 10px 12px; background: var(--c-bg); border: 1px solid transparent; border-radius: 14px; font-size: 10px; font-weight: 700; color: var(--c-text-2); text-align: center; line-height: 1.15; transition: var(--tr); scroll-snap-align: start; text-decoration: none; letter-spacing: 0.2px; }
.mobile-nav-item i { font-size: 18px; color: var(--c-primary); transition: var(--tr); }
.mobile-nav-item span { display: block; white-space: nowrap; max-width: 70px; overflow: hidden; text-overflow: ellipsis; }
.mobile-nav-item:hover, .mobile-nav-item:active { background: #fff5f5; color: var(--c-primary); }
.mobile-nav-item.is-active { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 4px 12px rgba(255, 59, 48, 0.25); }
.mobile-nav-item.is-active i { color: #fff; }
@media (max-width: 900px) { .mobile-nav-scroll { display: flex; } .top-bar-inner { padding: 12px 16px 8px; } .burger-btn { width: 40px; height: 40px; } }
.page-main-title { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 900; color: var(--c-text); letter-spacing: -0.6px; line-height: 1.25; margin: 0 0 20px; padding-bottom: 18px; border-bottom: 3px solid transparent; border-image: var(--grad) 1; border-image-slice: 1; border-radius: 0; position: relative; }
.page-main-title i { color: var(--c-primary); font-size: 26px; flex-shrink: 0; }
.hero-block .hero-title { font-size: 32px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 12px; position: relative; line-height: 1.2; }
.hero-block .hero-title i { font-size: 30px; margin-right: 8px; }
@media (max-width: 900px) { .page-main-title { font-size: 20px; gap: 10px; padding-bottom: 14px; margin-bottom: 16px; } .page-main-title i { font-size: 20px; } .hero-block .hero-title { font-size: 22px; } .hero-block .hero-title i { font-size: 20px; display: block; margin: 0 0 8px 0; } }
@media (max-width: 480px) { .page-main-title { font-size: 17px; line-height: 1.3; } .page-main-title i { font-size: 17px; } .hero-block .hero-title { font-size: 20px; } }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 24px 0; background: var(--c-card); border: 1px solid var(--c-border-light); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); font-size: 13.5px; }
.compare-table thead { background: var(--grad); }
.compare-table thead th { color: #fff; font-weight: 800; font-size: 12.5px; letter-spacing: 0.4px; text-transform: uppercase; text-align: left; padding: 14px 16px; line-height: 1.3; white-space: nowrap; }
.compare-table thead th:first-child { border-top-left-radius: var(--r); }
.compare-table thead th:last-child { border-top-right-radius: var(--r); }
.compare-table tbody tr { border-bottom: 1px solid var(--c-border-light); transition: var(--tr); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: #fafafb; }
.compare-table tbody tr:hover { background: #fff5f5; }
.compare-table tbody td { padding: 13px 16px; color: var(--c-text-2); line-height: 1.5; vertical-align: top; border-right: 1px solid var(--c-border-light); }
.compare-table tbody td:last-child { border-right: none; }
.compare-table tbody td:first-child { font-weight: 700; color: var(--c-text); background: rgba(255, 59, 48, 0.02); }
@media (max-width: 900px) { .compare-table { font-size: 12.5px; margin: 20px 0; } .compare-table thead th { padding: 11px 10px; font-size: 11px; letter-spacing: 0.2px; } .compare-table tbody td { padding: 11px 10px; font-size: 12.5px; } }
@media (max-width: 640px) { .compare-table { font-size: 12px; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: thin; } .compare-table::-webkit-scrollbar { height: 5px; } .compare-table::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 3px; } .compare-table thead th { padding: 10px 12px; font-size: 10.5px; white-space: nowrap; } .compare-table tbody td { padding: 10px 12px; font-size: 12px; white-space: normal; min-width: 120px; } .compare-table tbody td:first-child { min-width: 130px; position: sticky; left: 0; background: #fff; z-index: 2; box-shadow: 2px 0 6px rgba(0, 0, 0, 0.04); } .compare-table tbody tr:nth-child(even) td:first-child { background: #fafafb; } .compare-table tbody tr:hover td:first-child { background: #fff5f5; } }
.scroll-top-wrap { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; z-index: 900; opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.85); transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); cursor: pointer; }
.scroll-top-wrap.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.scroll-top-progress { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 50%; background: conic-gradient(#ff9500 0%, #ff3b30 calc(var(--progress, 0) * 1%), rgba(255, 255, 255, 0.15) calc(var(--progress, 0) * 1%), rgba(255, 255, 255, 0.15) 100%); -webkit-mask: radial-gradient(circle, transparent 61%, #000 62%); mask: radial-gradient(circle, transparent 61%, #000 62%); transition: background 0.15s ease-out; }
.scroll-top-btn { position: absolute; inset: 5px; background: linear-gradient(135deg, #ff3b30 0%, #ff9500 100%); border: none; border-radius: 50%; color: #fff; font-size: 19px; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; overflow: hidden; box-shadow: 0 8px 22px rgba(255, 59, 48, 0.35), 0 0 0 0 rgba(255, 149, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25); transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease; animation: scrollTopPulse 2.4s ease-in-out infinite; }
.scroll-top-btn:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(255, 59, 48, 0.5), 0 0 0 8px rgba(255, 149, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.35); animation-play-state: paused; }
.scroll-top-btn:active { transform: scale(0.94); }
@keyframes scrollTopPulse { 0%, 100% { box-shadow: 0 8px 22px rgba(255, 59, 48, 0.35), 0 0 0 0 rgba(255, 149, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25); } 50% { box-shadow: 0 8px 22px rgba(255, 59, 48, 0.4), 0 0 0 10px rgba(255, 149, 0, 0), inset 0 1px 0 rgba(255, 255, 255, 0.25); } }
.scroll-top-btn i { position: relative; z-index: 2; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); animation: chevronFloat 1.8s ease-in-out infinite; }
@keyframes chevronFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.scroll-top-btn:hover i { animation-play-state: paused; transform: translateY(-4px) scale(1.15); }
.scroll-top-ripple { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.65); transform: scale(0); pointer-events: none; animation: scrollTopRipple 0.6s ease-out; }
@keyframes scrollTopRipple { to { transform: scale(3); opacity: 0; } }
.scroll-top-tooltip { position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%) translateX(8px); background: #1d1d1f; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 1px; padding: 6px 12px; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none; transition: all 0.25s ease; }
.scroll-top-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: #1d1d1f; }
.scroll-top-wrap:hover .scroll-top-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 900px) { .scroll-top-wrap { width: 50px; height: 50px; bottom: 20px; right: 16px; } .scroll-top-btn { font-size: 16px; } .scroll-top-tooltip { display: none; } }