:root { --bg: #070a11; --bg-2: #0b1019; --surface: rgba(22, 29, 46, 0.62); --surface-2: rgba(30, 39, 60, 0.5); --surface-solid: #121826; --border: rgba(255, 255, 255, 0.09); --border-strong: rgba(255, 255, 255, 0.18); --text: #eef2f8; --muted: #9aa6bd; --accent: #3ee29a; --accent-2: #5b8dff; --accent-3: #b47bff; --accent-soft: rgba(62, 226, 154, 0.14); --danger: #ff6b6b; --radius: 20px; --radius-sm: 13px; --radius-lg: 26px; --shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.78); --shadow-glow: 0 20px 60px -22px rgba(62, 226, 154, 0.45); --grad: linear-gradient(135deg, var(--accent), var(--accent-2)); --grad-tri: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 55%, var(--accent-3) 100%); --maxw: 1200px; --nav-h: 72px; color-scheme: dark; } * { box-sizing: border-box; } html { scroll-behavior: smooth; } body { margin: 0; font-family: 'Inter', system-ui, -apple-system, sans-serif; color: var(--text); background: radial-gradient(1100px 640px at 82% -12%, rgba(38, 74, 140, 0.55) 0%, transparent 58%), radial-gradient(920px 620px at -12% 8%, rgba(20, 74, 58, 0.5) 0%, transparent 55%), radial-gradient(760px 700px at 50% 120%, rgba(120, 70, 180, 0.22) 0%, transparent 60%), var(--bg); min-height: 100vh; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; } /* subtle dotted texture over everything */ body::before { content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none; background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px); background-size: 26px 26px; mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 100%); } ::selection { background: rgba(62, 226, 154, 0.28); color: #fff; } ::-webkit-scrollbar { width: 11px; height: 11px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border: 3px solid transparent; border-radius: 999px; background-clip: padding-box; } ::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); background-clip: padding-box; } h1, h2, h3 { font-family: 'Space Grotesk', 'Inter', sans-serif; line-height: 1.12; margin: 0; letter-spacing: -0.4px; } a { color: inherit; text-decoration: none; } code { background: rgba(255, 255, 255, 0.08); padding: 2px 7px; border-radius: 6px; font-size: 0.9em; color: var(--accent); border: 1px solid rgba(62, 226, 154, 0.2); } .muted { color: var(--muted); } .aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; } .blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; animation: float 20s ease-in-out infinite; } .blob-1 { width: 500px; height: 500px; background: #1f8f63; top: -130px; left: -90px; } .blob-2 { width: 440px; height: 440px; background: #2f4fb0; top: 28%; right: -130px; animation-delay: -7s; } .blob-3 { width: 400px; height: 400px; background: #6b3fa0; bottom: -150px; left: 30%; animation-delay: -13s; } @keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(44px, -34px) scale(1.09); } 66% { transform: translate(-32px, 22px) scale(0.95); } } .nav { position: sticky; top: 0; z-index: 50; height: var(--nav-h); display: flex; align-items: center; gap: 18px; padding: 0 26px; background: rgba(9, 12, 19, 0.66); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); border-bottom: 1px solid var(--border); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset; } .brand { display: flex; align-items: center; gap: 11px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; } .brand-mark { width: 28px; height: 28px; border-radius: 9px; background: var(--grad-tri); box-shadow: 0 0 20px rgba(62, 226, 154, 0.55); animation: markPulse 4s ease-in-out infinite; } @keyframes markPulse { 0%, 100% { box-shadow: 0 0 18px rgba(62, 226, 154, 0.4); } 50% { box-shadow: 0 0 26px rgba(91, 141, 255, 0.6); } } .brand-name { font-size: 1.08rem; letter-spacing: 0.2px; } .tabs { display: flex; align-items: center; gap: 4px; margin-left: 8px; flex: 1; overflow-x: auto; scrollbar-width: none; -webkit-mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent); mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent); } .tabs::-webkit-scrollbar { display: none; } .tab { position: relative; white-space: nowrap; padding: 9px 14px; border-radius: 10px; font-size: 0.86rem; font-weight: 500; color: var(--muted); transition: color 0.2s, background 0.2s; } .tab:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); } .tab.active { color: var(--text); background: var(--accent-soft); } .tab.active::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px; border-radius: 2px; background: var(--grad); } .discord-btn { padding: 10px 17px; border-radius: 11px; font-size: 0.86rem; font-weight: 600; background: var(--grad); color: #05160f; white-space: nowrap; transition: transform 0.15s, box-shadow 0.2s, filter 0.2s; box-shadow: 0 10px 26px -10px rgba(62, 226, 154, 0.7); } .discord-btn:hover { transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 14px 32px -10px rgba(62, 226, 154, 0.85); } .menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; } .menu-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.25s; } main { max-width: var(--maxw); margin: 0 auto; padding: 0 24px 90px; } .view { display: none; animation: viewIn 0.5s cubic-bezier(0.2, 0.7, 0.2, 1); } .view.active { display: block; } @keyframes viewIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } } .hero { position: relative; text-align: center; padding: 104px 16px 78px; } .hero::before { content: ''; position: absolute; top: 4%; left: 50%; transform: translateX(-50%); width: min(640px, 90%); height: 320px; background: radial-gradient(closest-side, rgba(62, 226, 154, 0.2), transparent 72%); filter: blur(20px); z-index: -1; } .eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 2.6px; font-size: 0.72rem; font-weight: 600; color: var(--accent); background: var(--accent-soft); border: 1px solid rgba(62, 226, 154, 0.28); padding: 7px 15px; border-radius: 999px; margin: 0 0 20px; } .hero-title { font-size: clamp(2.7rem, 7.2vw, 5.2rem); font-weight: 700; letter-spacing: -1.5px; background: linear-gradient(120deg, #ffffff 18%, #9ad9bd 52%, #8bb0ff 82%, #c79bff 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 8s linear infinite; } @keyframes shimmer { to { background-position: 200% center; } } .hero-sub { font-size: clamp(1rem, 2.4vw, 1.32rem); color: var(--muted); max-width: 640px; margin: 20px auto 0; } .hero-actions { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; } .btn { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 13px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: 1px solid transparent; overflow: hidden; transition: transform 0.16s, box-shadow 0.22s, background 0.2s, border-color 0.2s, filter 0.2s; } .btn-primary { background: var(--grad); color: #05160f; box-shadow: 0 14px 34px -12px rgba(62, 226, 154, 0.8); } .btn-primary::after { content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent); transform: skewX(-18deg); transition: left 0.55s ease; } .btn-primary:hover { transform: translateY(-2px); filter: brightness(1.04); box-shadow: 0 18px 40px -12px rgba(62, 226, 154, 0.9); } .btn-primary:hover::after { left: 130%; } .btn-ghost { background: rgba(255, 255, 255, 0.04); border-color: var(--border-strong); color: var(--text); } .btn-ghost:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-2px); border-color: var(--accent); } .section { margin-top: 72px; } .section-head { text-align: center; margin-bottom: 38px; } .section-head h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); } .section-head p { margin: 12px 0 0; } .page-head { padding: 60px 0 34px; text-align: center; } .page-head h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); background: linear-gradient(120deg, #ffffff, #bfe6d5 80%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .page-head p { margin: 15px auto 0; max-width: 620px; } .grid { display: grid; gap: 24px; } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-2 { grid-template-columns: repeat(2, 1fr); } .card { position: relative; background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06); transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.28s, box-shadow 0.28s; } .card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, rgba(62, 226, 154, 0.5), rgba(91, 141, 255, 0.35) 45%, transparent 70%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.28s; pointer-events: none; } .card:hover { transform: translateY(-7px); border-color: transparent; box-shadow: var(--shadow), var(--shadow-glow); } .card:hover::before { opacity: 1; } .card-name { font-size: 1.2rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.2px; } .card-desc { margin: 8px 0 0; color: var(--muted); font-size: 0.94rem; white-space: pre-line; } .media { position: relative; width: 100%; aspect-ratio: 1 / 1; border-radius: var(--radius-sm); overflow: hidden; background: radial-gradient(circle at 50% 30%, #1c2740, #0c1018); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04); } .media-wide { aspect-ratio: 16 / 10; } .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1); } .card:hover .media img { transform: scale(1.06); } .media video { width: 100%; height: 100%; object-fit: cover; background: #0c1018; } .media iframe { width: 100%; height: 100%; border: 0; } .media .skin-canvas { width: 100%; height: 100%; } .media .skin-flat { width: 60%; height: 60%; object-fit: contain; image-rendering: pixelated; } .media-empty { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.5px; background: repeating-linear-gradient(45deg, #11192a, #11192a 12px, #0d1422 12px, #0d1422 24px); } .tag { display: inline-block; font-size: 0.72rem; font-weight: 600; color: var(--accent); background: var(--accent-soft); border: 1px solid rgba(62, 226, 154, 0.25); padding: 4px 11px; border-radius: 999px; margin-top: 14px; } .card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; gap: 10px; } .byline { font-size: 0.8rem; color: var(--muted); } .download { font-size: 0.82rem; font-weight: 600; color: var(--accent); border: 1px solid var(--border-strong); padding: 7px 15px; border-radius: 10px; transition: background 0.2s, border-color 0.2s, transform 0.15s; } .download:hover { background: var(--accent-soft); border-color: var(--accent); transform: translateY(-1px); } .offer { cursor: pointer; } .offer .offer-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(62, 226, 154, 0.18), rgba(91, 141, 255, 0.14)); border: 1px solid rgba(62, 226, 154, 0.2); margin-bottom: 18px; font-size: 1.5rem; transition: transform 0.25s, box-shadow 0.25s; } .offer:hover .offer-icon { transform: scale(1.08) rotate(-4deg); box-shadow: 0 0 24px -6px rgba(62, 226, 154, 0.5); } .review .stars { color: #ffce54; letter-spacing: 2px; font-size: 0.95rem; } .review .review-text { margin: 12px 0 16px; font-size: 0.99rem; } .review .reviewer { display: flex; align-items: center; gap: 10px; } .review .reviewer img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border-strong); } .review .reviewer .who { font-weight: 600; font-size: 0.9rem; } .tip h3 { font-size: 1.1rem; display: flex; align-items: center; gap: 10px; } .tip h3 span { color: var(--accent); } .tip p { margin: 10px 0 0; color: var(--muted); font-size: 0.94rem; } .cta-card { position: relative; margin-top: 60px; background: linear-gradient(160deg, rgba(62, 226, 154, 0.09), rgba(91, 141, 255, 0.06) 60%, rgba(180, 123, 255, 0.05)); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 38px; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06); } .cta-card::before { content: ''; position: absolute; top: -60px; right: -40px; width: 240px; height: 240px; background: radial-gradient(closest-side, rgba(62, 226, 154, 0.16), transparent); pointer-events: none; } .cta-card h3 { font-size: 1.5rem; } .cta-card > p { margin: 8px 0 22px; } .request-form { display: flex; flex-direction: column; gap: 14px; max-width: 660px; position: relative; } .field-row { display: flex; gap: 14px; } .field-row .input { flex: 1; } .input { width: 100%; background: rgba(6, 9, 15, 0.62); border: 1px solid var(--border-strong); border-radius: var(--radius-sm); color: var(--text); padding: 13px 15px; font-family: inherit; font-size: 0.94rem; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; resize: vertical; } .input::placeholder { color: #5d6b82; } .input:hover { border-color: rgba(255, 255, 255, 0.28); } .input:focus { outline: none; border-color: var(--accent); background: rgba(6, 9, 15, 0.8); box-shadow: 0 0 0 3px var(--accent-soft); } select.input { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 42px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%233ee29a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 15px center; } select.input option { background: var(--surface-solid); color: var(--text); } .request-success { text-align: center; padding: 8px 0; } .success-check { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; font-size: 1.8rem; font-weight: 700; color: #05160f; background: var(--grad); box-shadow: 0 12px 30px -10px rgba(62, 226, 154, 0.85); animation: pop 0.4s cubic-bezier(0.2, 1.2, 0.3, 1.2); } @keyframes pop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } } .request-success h3 { font-size: 1.5rem; } .request-success p { margin: 10px auto 20px; max-width: 460px; } .ticket-code { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; margin: 0 0 20px; padding: 15px 30px; border-radius: var(--radius-sm); border: 1px dashed var(--border-strong); background: rgba(6, 9, 15, 0.6); cursor: pointer; transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s; font-family: inherit; } .ticket-code:hover { border-color: var(--accent); transform: translateY(-1px); box-shadow: 0 0 0 3px var(--accent-soft); } .code-label { font-size: 0.72rem; letter-spacing: 0.5px; color: var(--muted); text-transform: uppercase; } .code-value { font-family: 'Space Grotesk', monospace; font-size: 2rem; font-weight: 700; letter-spacing: 6px; color: var(--accent); } .empty { text-align: center; color: var(--muted); padding: 54px 20px; border: 1px dashed var(--border-strong); border-radius: var(--radius); background: rgba(255, 255, 255, 0.02); } .cap-notice, .request-closed { margin-top: 20px; color: var(--danger); font-weight: 500; } .footer { border-top: 1px solid var(--border); margin-top: 48px; } .footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 36px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; } .footer-inner p { margin: 0; } .toast { position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 140%); background: var(--surface-solid); border: 1px solid var(--border-strong); color: var(--text); padding: 14px 22px; border-radius: 13px; box-shadow: var(--shadow); z-index: 100; font-size: 0.92rem; font-weight: 500; transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.25); max-width: 90vw; } .toast.show { transform: translate(-50%, 0); } .toast.error { border-color: var(--danger); } .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1); } .reveal.in { opacity: 1; transform: translateY(0); } @media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .menu-toggle { display: flex; } .discord-btn { display: none; } .tabs { position: fixed; top: var(--nav-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px; padding: 14px; background: rgba(9, 12, 19, 0.98); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding-top: 0; padding-bottom: 0; -webkit-mask-image: none; mask-image: none; } .tabs.open { max-height: 80vh; padding: 14px; overflow-y: auto; } .tab { font-size: 0.95rem; padding: 12px 14px; } .tab.active::after { display: none; } } @media (max-width: 620px) { main { padding: 0 16px 60px; } .grid-3, .grid-2 { grid-template-columns: 1fr; } .field-row { flex-direction: column; } .cta-card { padding: 26px; } .hero { padding: 72px 8px 52px; } } @media (prefers-reduced-motion: reduce) { .blob, .brand-mark, .hero-title { animation: none; } .reveal { transition: none; opacity: 1; transform: none; } .view { animation: none; } .card:hover .media img { transform: none; } } .chat-widget { position: fixed; right: 24px; bottom: 24px; z-index: 1200; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; } .chat-fab { width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer; background: var(--grad-tri); box-shadow: 0 16px 38px -10px rgba(62, 226, 154, 0.6); display: flex; align-items: center; justify-content: center; position: relative; transition: transform 0.2s ease, box-shadow 0.2s ease; } .chat-fab::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(62, 226, 154, 0.5); animation: ring 2.6s ease-out infinite; } @keyframes ring { 0% { transform: scale(1); opacity: 0.7; } 70%, 100% { transform: scale(1.5); opacity: 0; } } .chat-fab:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 20px 44px -10px rgba(62, 226, 154, 0.75); } .chat-fab-open, .chat-fab-close { position: absolute; font-size: 26px; line-height: 1; color: #05160f; transition: opacity 0.2s ease, transform 0.2s ease; } .chat-fab-close { font-size: 30px; opacity: 0; transform: rotate(-90deg); } .chat-widget.open .chat-fab-open { opacity: 0; transform: rotate(90deg); } .chat-widget.open .chat-fab-close { opacity: 1; transform: rotate(0); } .chat-widget.open .chat-fab::before { animation: none; opacity: 0; } .chat-panel { width: min(372px, calc(100vw - 44px)); height: min(540px, calc(100vh - 130px)); background: linear-gradient(180deg, #141b2b, var(--surface-solid)); border: 1px solid var(--border-strong); border-radius: 20px; box-shadow: var(--shadow), 0 0 0 1px rgba(62, 226, 154, 0.08); display: flex; flex-direction: column; overflow: hidden; animation: chatIn 0.28s cubic-bezier(0.2, 0.9, 0.3, 1.1); transform-origin: bottom right; } @keyframes chatIn { from { opacity: 0; transform: translateY(16px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } } .chat-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 15px 17px; background: linear-gradient(135deg, rgba(62, 226, 154, 0.2), rgba(91, 141, 255, 0.15)); border-bottom: 1px solid var(--border); } .chat-head-text { display: flex; flex-direction: column; line-height: 1.3; } .chat-head-text strong { color: var(--text); font-size: 1rem; } .chat-sub { color: var(--muted); font-size: 0.78rem; } .chat-close { background: rgba(255, 255, 255, 0.08); border: none; color: var(--text); font-size: 20px; line-height: 1; width: 30px; height: 30px; border-radius: 8px; cursor: pointer; transition: background 0.2s; } .chat-close:hover { background: rgba(255, 255, 255, 0.18); } .chat-log { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; } .chat-msg { max-width: 84%; padding: 11px 14px; border-radius: 15px; font-size: 0.9rem; line-height: 1.45; white-space: pre-line; word-wrap: break-word; animation: msgIn 0.25s ease; } @keyframes msgIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } } .chat-bot { align-self: flex-start; background: rgba(255, 255, 255, 0.07); border: 1px solid var(--border); color: var(--text); border-bottom-left-radius: 5px; } .chat-user { align-self: flex-end; background: var(--grad); color: #05160f; font-weight: 500; border-bottom-right-radius: 5px; } .chat-typing { opacity: 0.6; letter-spacing: 2px; } .chat-input-row { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--border); background: rgba(0, 0, 0, 0.25); } .chat-input { flex: 1; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-strong); border-radius: 12px; padding: 11px 14px; color: var(--text); font: inherit; font-size: 0.9rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; } .chat-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); } .chat-send { width: 46px; border: none; border-radius: 12px; cursor: pointer; background: var(--grad); color: #05160f; font-size: 1.05rem; transition: filter 0.2s, transform 0.15s; } .chat-send:hover { filter: brightness(1.08); transform: translateY(-1px); } @media (max-width: 620px) { .chat-widget { right: 16px; bottom: 16px; } .chat-panel { height: min(72vh, calc(100vh - 110px)); } }