@font-face {
  font-family: 'MarkGeo';
  src: url('mark-geo.woff2') format('woff2');
  font-weight: normal; font-style: normal; font-display: swap;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #191a1a; --header: #3d3e3e; --body: #242727; --main: #4edd98;
  --secondary: #34b377; --disabled-btn: #2b2e2e; --error: #e14a44;
  --small-secondary: #414444; --success: #1cbf62;
}
html { scroll-behavior: smooth; }
body { font-family: 'MarkGeo', system-ui, sans-serif; background-color: var(--bg); color: #fff; min-height: 100vh; }
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.text-main { color: var(--main); }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }

@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes shrink { from { width: 100%; } to { width: 0%; } }
@keyframes toast-in { 0% { opacity: 0; transform: translateY(16px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

/* HEADER */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; display: flex; align-items: center;
  width: 100%; padding: 0.75rem 1rem; background-color: var(--header); color: #fff;
  z-index: 50; transition: transform 0.3s ease-in-out;
}
#site-header.header-hidden { transform: translateY(-100%); }
#site-header nav { width: 100%; position: relative; }
#site-header ul.header-row { display: flex; align-items: center; width: 100%; justify-content: space-between; }
.header-logo { height: 40px; width: 40px; position: relative; flex-shrink: 0; }
.header-logo img { width: 100%; height: 100%; object-fit: contain; }
.header-main-link { display: flex; align-items: center; margin-right: auto; margin-left: 0.5rem; }
.header-main-link a { display: block; padding: 0.75rem 0.5rem; border-radius: 0.25rem; color: #fff; }
.header-lang-mobile { display: flex; align-items: center; margin-right: 1.5rem; color: #fff; }
.header-lang-mobile img { width: 28px; height: 28px; object-fit: contain; }
.header-lang-mobile span { margin-right: 0.5rem; }
#hamburger-btn { background: none; border: none; cursor: pointer; color: #fff; padding: 0; }
#hamburger-btn svg { width: 32px; height: 32px; }
#mobile-menu {
  display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
  background-color: var(--header); border-top: 1px solid #4b5563; box-shadow: 0 4px 6px rgba(0,0,0,0.4); z-index: 49;
}
#mobile-menu.open { display: flex; }
#mobile-menu a { display: block; padding: 0.75rem 1.5rem; color: #fff; }
#mobile-menu a:hover { background-color: #374151; }
.desktop-nav { display: none; align-items: center; }
.desktop-nav a { margin-left: 2.5rem; color: #fff; white-space: nowrap; padding: 0.75rem 0; font-size: 0.75rem; }
.desktop-nav a:hover { color: var(--main); }
.header-lang-desktop { display: none; align-items: center; margin-left: 2.5rem; }
.header-lang-desktop img { width: 24px; height: 24px; object-fit: contain; }
.header-lang-desktop span { margin-right: 0.75rem; }

/* MAIN LAYOUT */
#main-container { display: flex; flex-direction: column; align-items: center; background-color: var(--bg); color: #fff; width: 100%; padding: 0 0.5rem; padding-top: 4.5rem; }
#main-container h1 { margin: 1.25rem 0; text-align: center; font-size: 1.875rem; font-weight: 700; line-height: 1.2; }
.heading-sub { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Transactions */
#transactions-section { width: 100%; background-color: var(--bg); color: #fff; }
.tab-row { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-bottom: 1rem; }
.tab-btn { width: 49%; padding: 0.5rem; border-radius: 0.5rem; text-align: center; color: #fff; display: block; font-size: 0.95rem; }
.tab-btn.active { background-color: var(--secondary); }
.tab-btn.inactive { background-color: var(--disabled-btn); }
.transaction-body { background-color: var(--body); border-radius: 0.5rem; padding: 0.5rem; position: relative; margin-top: 1.25rem; min-height: 400px; }

/* Sold out (hidden in-stock) */
.sold-out-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2.5rem 1rem; min-height: 300px; }
.sold-out-emoji { font-size: 3rem; margin-bottom: 1rem; }
.sold-out-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.sold-out-msg { font-size: 0.875rem; color: #9ca3af; max-width: 28rem; line-height: 1.75; }
.sold-out-countdown { margin-top: 1.5rem; font-weight: 600; color: var(--main); font-size: 0.75rem; }

/* Sell unavailable */
.sell-unavailable { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 5rem 1rem; text-align: center; }
.sell-unavailable-box { background-color: rgba(234,179,8,0.1); border: 1px solid rgba(234,179,8,0.3); border-radius: 0.5rem; padding: 2rem; max-width: 28rem; }
.sell-unavailable-box h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: #eab308; }
.sell-unavailable-box p { color: #d1d5db; margin-bottom: 1.5rem; line-height: 1.7; }
.sell-unavailable-box .thanks { font-size: 0.875rem; color: #9ca3af; }

/* Buy view */
#buy-view { padding: 0.5rem; }
.price-progress { margin-bottom: 1.5rem; padding: 0 0.5rem; }
.price-progress-head { display: flex; flex-direction: column; align-items: center; margin-bottom: 1rem; }
.price-progress-label { font-size: 0.75rem; color: #9ca3af; }
.price-progress-value { font-size: 1.5rem; font-weight: 700; color: var(--main); }
.price-progress-track { position: relative; width: 100%; height: 0.75rem; background-color: #374151; border-radius: 9999px; overflow: hidden; }
.price-progress-fill { position: relative; height: 100%; width: 0%; background: linear-gradient(to right, var(--main), #4ade80); transition: width 0.5s; border-radius: 9999px; }
.price-progress-shimmer { position: absolute; inset: 0; background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); animation: shimmer 2s infinite; }
.price-milestones { position: relative; width: 100%; padding-bottom: 1.5rem; margin-top: 0.5rem; height: 2rem; display: flex; justify-content: space-between; }
.price-milestone { display: flex; flex-direction: column; align-items: center; }
.price-milestone-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; border: 2px solid var(--bg); background-color: #6b7280; }
.price-milestone.active .price-milestone-dot { background-color: var(--main); }
.price-milestone-label { font-size: 0.625rem; color: #9ca3af; margin-top: 0.25rem; }
.days-left-row { display: flex; justify-content: center; align-items: center; margin-bottom: 1rem; }
.days-left-badge { font-weight: 600; color: var(--main); font-size: 0.75rem; }
.points-available-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; margin-bottom: 2rem; }
.points-available-label { margin: 0.5rem 0; font-size: 0.75rem; }
.points-available-value { font-size: 1.25rem; font-weight: 700; }
.points-available-gel { margin-top: 0.25rem; font-size: 0.8rem; color: var(--main); }
.buy-desc { display: flex; flex-direction: column; align-items: center; width: 100%; font-size: 0.875rem; text-align: center; }
.buy-desc h2 { font-size: 0.875rem; font-weight: 400; line-height: 1.75; }
.buy-desc-note { font-size: 0.875rem; text-align: center; margin-top: 1.25rem; }
.buy-desc-highlight { font-weight: 700; color: var(--error); }
.pay-details { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; max-width: 28rem; margin: 1.25rem auto 0; }
.pay-detail { display: flex; flex-direction: column; gap: 0.35rem; text-align: left; }
.pay-detail-label { font-size: 0.75rem; color: #9ca3af; }
.copy-field { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem; border: 1px solid var(--small-secondary); background-color: var(--body); color: #fff; font-family: inherit; font-size: 1rem; cursor: pointer; transition: border-color 0.2s; text-align: left; }
.copy-field:hover, .copy-field.copied { border-color: var(--main); }
.copy-field-value { font-weight: 700; letter-spacing: 0.02em; word-break: break-all; }
.copy-field-name { display: block; font-weight: 400; font-size: 0.8rem; color: #9ca3af; letter-spacing: normal; }
.copy-field-icon { flex-shrink: 0; color: var(--main); }
.copy-field-feedback { font-size: 0.75rem; color: var(--main); min-height: 1rem; }
.night-notice { margin-top: 1.25rem; width: 100%; max-width: 28rem; margin-left: auto; margin-right: auto; border-radius: 0.5rem; border: 1px solid rgba(234,179,8,0.3); background-color: rgba(234,179,8,0.1); padding: 0.75rem; text-align: center; font-size: 0.75rem; color: #eab308; }
.buy-calculator { width: 100%; display: flex; flex-direction: column; align-items: center; }
.calculator-title { color: var(--main); margin-top: 2rem; margin-bottom: 1rem; align-self: flex-start; }
.calc-input-wrap { position: relative; width: 100%; margin-bottom: 1.5rem; }
.calc-input { width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem; border: 1px solid var(--small-secondary); background-color: var(--body); color: #fff; font-family: 'MarkGeo', sans-serif; font-size: 1rem; }
.calc-input:focus { outline: none; border-color: var(--main); }
.calc-input-suffix, .calc-input-prefix { position: absolute; top: 50%; transform: translateY(-50%); color: #9ca3af; font-size: 0.875rem; pointer-events: none; }
.calc-input-suffix { right: 1rem; }
.calc-input-prefix { left: 1rem; }
.calc-input-prefix:not(:empty) ~ .calc-input { padding-left: 2rem; }
.calc-receive { color: var(--main); font-size: 0.875rem; text-align: center; margin-bottom: 0.75rem; }
.calc-rate-wrap { display: flex; flex-direction: column; align-items: center; width: 100%; margin-bottom: 1rem; }
.calc-rate-text { color: var(--small-secondary); }
.buy-view-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.instruction-btn { display: flex; align-items: center; gap: 0.25rem; background: none; border: none; color: var(--main); font-size: 0.875rem; cursor: pointer; font-family: 'MarkGeo', sans-serif; padding: 0; }
.instruction-btn img { display: inline-block; }
.live-indicator { position: relative; display: flex; align-items: center; gap: 0.5rem; }
.live-dot-ping, .live-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background-color: var(--main); }
.live-dot-ping { position: absolute; animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite; }
.live-indicator p { font-size: 0.75rem; }

/* July toast */
.july-toast { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 60; margin: 0 auto; max-width: 24rem; border-radius: 1rem; border: 1px solid rgba(78,221,152,0.4); background-color: var(--body); padding: 1rem; box-shadow: 0 20px 25px rgba(0,0,0,0.5); animation: toast-in 0.3s ease-out; display: none; }
.july-toast.show { display: block; }
.july-toast-close { position: absolute; top: 0.5rem; right: 0.75rem; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.125rem; cursor: pointer; line-height: 1; }
.july-toast-close:hover { color: #fff; }
.july-toast-body { display: flex; align-items: flex-start; gap: 0.75rem; }
.july-toast-emoji { font-size: 1.5rem; line-height: 1; }
.july-toast-title { color: var(--main); font-weight: 700; font-size: 0.875rem; }
.july-toast-text { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; line-height: 1.6; }
.july-toast-value { font-size: 1.5rem; font-weight: 700; color: var(--main); margin-top: 0.25rem; }
@media (min-width: 640px) { .july-toast { left: auto; right: 1.25rem; margin: 0; } }

/* Instruction dialog */
#instruction-dialog { display: none; position: fixed; inset: 0; z-index: 200; background-color: rgba(0,0,0,0.8); align-items: center; justify-content: center; padding: 1rem; }
#instruction-dialog.show { display: flex; }
.instruction-dialog-box { position: relative; width: 100%; max-width: 480px; height: 80vh; max-height: 640px; background-color: #000; border-radius: 0.5rem; overflow: hidden; display: flex; flex-direction: column; }
#instruction-dialog-close { position: absolute; top: 0.5rem; right: 0.75rem; z-index: 5; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1; }
.instruction-slide { display: none; flex-direction: column; align-items: center; justify-content: flex-start; height: 100%; overflow-y: auto; padding: 3rem 1rem 2rem; }
.instruction-slide.active { display: flex; }
.instruction-slide img { width: 60%; max-width: 260px; border-radius: 0.5rem; margin-bottom: 1.5rem; }
.instruction-slide ul { text-align: center; }
.instruction-slide ul li { margin-bottom: 0.75rem; font-size: 0.875rem; line-height: 1.6; }
.instruction-slide ul li strong { color: var(--main); font-weight: 400; }
.instruction-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--main); font-size: 2rem; cursor: pointer; padding: 0.5rem; z-index: 5; }
#instruction-prev { left: 0; }
#instruction-next { right: 0; }

/* Generic section headings */
.section { padding-top: 12%; width: 100%; display: flex; align-items: center; flex-direction: column; padding-bottom: 5rem; }
.section h2 { width: 100%; text-align: center; display: flex; justify-content: center; margin-bottom: 2.5rem; font-size: 1.5rem; font-weight: 700; }
.panel { background-color: var(--body); border-radius: 0.5rem; padding: 0.5rem; color: #9ca3af; text-align: center; width: 100%; line-height: 1.75; }
.panel a.text-main { color: var(--main); }
.panel a.text-main:hover { color: var(--secondary); }
#count-up-number { color: var(--main); font-weight: 700; }

/* FAQ */
.faq-container { background-color: var(--body); border-radius: 0.5rem; padding: 0.5rem; color: #9ca3af; width: 100%; }
.faq-item { display: flex; flex-direction: column; margin-bottom: 1rem; border-radius: 0.375rem; border: 1px solid transparent; transition: border-color 0.2s, background 0.2s; }
.faq-item.open { background-color: var(--body); border-color: var(--main); }
.faq-item:not(.open):hover { background-color: rgba(36,39,39,0.3); }
.faq-btn { width: 100%; background: none; border: none; cursor: pointer; padding: 1rem; text-align: left; display: flex; align-items: center; justify-content: space-between; color: #9ca3af; font-family: 'MarkGeo', sans-serif; font-size: 1rem; }
.faq-btn:focus { outline: none; }
.faq-chevron { margin-left: 0.5rem; color: var(--main); flex-shrink: 0; transition: transform 0.3s; }
.faq-answer-wrap { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.3s ease, opacity 0.3s ease; }
.faq-item.open .faq-answer-wrap { max-height: 40rem; opacity: 1; }
.faq-answer { padding: 0 1rem 1rem 1rem; margin-top: 0.5rem; color: #9ca3af; line-height: 1.75; text-align: left; }

/* About plus points */
.about-plus-block { margin-bottom: 3rem; }
.about-plus-block h3 { color: #fff; font-weight: 600; margin-bottom: 1.5rem; font-size: 1.05rem; }
.about-plus-block p { color: #9ca3af; line-height: 1.75; }
.about-plus-block ul { list-style: disc; padding-left: 1.5rem; text-align: left; max-width: 56rem; margin: 0 auto; }
.about-plus-block ul li { margin-bottom: 0.75rem; color: #9ca3af; line-height: 1.75; }

/* Contact */
.contact-links { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-links a { color: var(--main); font-size: 0.875rem; transition: color 0.3s; }
.contact-links a:hover { color: var(--secondary); }
.social-divider { border-top: 1px solid #4b5563; padding-top: 1.5rem; }
.social-share h3 { color: #fff; font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; }
.social-icons { display: flex; gap: 1rem; justify-content: center; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 9999px; color: #fff; transition: opacity 0.3s; }
.social-icon:hover { opacity: 0.85; }
.social-icon svg { width: 20px; height: 20px; fill: #fff; }
.social-icon.fb { background-color: #2563EB; }
.social-icon.tw { background-color: #60A5FA; }
.social-icon.tg { background-color: #3B82F6; }
.social-icon.wa { background-color: #22C55E; }
.social-icon.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.tiktok { background-color: #000; }
.social-icon.li { background-color: #0A66C2; }

/* Natia profile card */
.natia-card { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #4b5563; }
.natia-photo { width: 140px; height: 140px; border-radius: 9999px; object-fit: cover; border: 3px solid var(--main); flex-shrink: 0; }
.natia-info { display: flex; flex-direction: column; gap: 0.35rem; align-items: center; }
.natia-name { color: #fff; font-size: 1.15rem; font-weight: 700; margin: 0; }
.natia-role { color: var(--main); font-size: 0.85rem; font-weight: 600; margin: 0; }
.natia-desc { color: #9ca3af; line-height: 1.75; margin: 0.5rem 0 0.75rem; max-width: 40rem; }
.natia-socials { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.natia-socials .social-icon { width: 42px; height: 42px; }
.natia-socials .social-icon svg { width: 18px; height: 18px; }
@media (min-width: 768px) {
  .natia-card { flex-direction: row; text-align: left; align-items: flex-start; }
  .natia-info { align-items: flex-start; }
  .natia-socials { justify-content: flex-start; }
}

/* Info pages (plus-* articles) */
.info-main { display: flex; flex-direction: column; align-items: center; width: 100%; padding: 2.5rem 1rem; }
.info-hero { color: #fff; width: 100%; text-align: center; padding: 2rem 0; margin-bottom: 2.5rem; display: flex; flex-direction: column; align-items: center; }
.info-hero h1 { font-size: 1.5rem; font-weight: 700; margin: 0; }
.info-hero p { margin-top: 1.5rem; line-height: 1.75; max-width: 48rem; }
.info-card { color: #9ca3af; width: 100%; padding: 1.5rem; border-radius: 0.5rem; box-shadow: 0 4px 6px rgba(0,0,0,0.3); margin-bottom: 2rem; background-color: var(--body); font-size: 0.95rem; max-width: 56rem; }
.info-card h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; color: #fff; }
.info-card h3 { font-weight: 600; margin-bottom: 0.5rem; color: #fff; }
.info-card p { line-height: 1.8; margin-bottom: 0.75rem; }
.info-card ul, .info-card ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.info-card ul { list-style: disc; }
.info-card ol { list-style: decimal; }
.info-card li { margin-bottom: 0.5rem; line-height: 1.7; }
.info-card a.text-main { color: var(--main); }
.info-card .qa { margin-bottom: 1rem; }
.info-card .note { font-size: 0.8rem; font-style: italic; }
.info-card .warn { border: 1px solid rgba(239,68,68,0.4); border-radius: 0.75rem; padding: 1rem; background-color: rgba(239,68,68,0.06); color: #fecaca; font-weight: 600; }

/* Partner list */
.partners-wrap { width: 100%; max-width: 56rem; display: flex; flex-direction: column; align-items: center; }
.partners-title { font-size: 1.25rem; font-weight: 700; color: #fff; margin: 2.5rem 0; text-align: center; }
.partner-row { width: 100%; display: block; padding: 1rem; border-bottom: 1px solid var(--small-secondary); color: #9ca3af; }
.partner-row h3 { font-size: 1.05rem; font-weight: 600; color: #fff; }
.partner-row p { font-size: 0.85rem; margin-top: 0.25rem; line-height: 1.6; }
@media (min-width: 768px) { .partner-row { width: 60%; } }

/* Blog grid */
.blogs-inner { width: 100%; max-width: 80rem; margin: 0 auto; padding: 2.5rem 0; }
.blogs-header { text-align: center; margin-bottom: 3rem; }
.blogs-header h2 { font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.blogs-header p { color: #9ca3af; max-width: 42rem; margin: 0 auto; }
.blogs-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.blog-card { display: flex; flex-direction: column; height: 100%; background-color: var(--body); border-radius: 0.5rem; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: box-shadow 0.3s, transform 0.3s; color: inherit; }
.blog-card:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.5); transform: scale(1.02); }
.blog-img-wrap { position: relative; height: 12rem; overflow: hidden; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.1); }
.blog-category-badge { position: absolute; top: 0.75rem; left: 0.75rem; background-color: var(--main); color: #000; font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.5rem; border-radius: 9999px; }
.blog-content { display: flex; flex-direction: column; flex-grow: 1; padding: 1.5rem; }
.blog-date { color: var(--small-secondary); font-size: 0.875rem; margin-bottom: 0.75rem; }
.blog-title { color: #fff; font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card:hover .blog-title { color: var(--main); }
.blog-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.blog-tag { background-color: var(--header); color: #d1d5db; font-size: 0.75rem; padding: 0.25rem 0.5rem; border-radius: 0.25rem; }
.blog-tag-more { color: var(--small-secondary); font-size: 0.75rem; display: flex; align-items: center; }
.blog-read-more { margin-top: auto; display: inline-flex; align-items: center; color: var(--main); font-weight: 500; font-size: 0.875rem; }
.blog-read-more svg { margin-left: 0.5rem; width: 16px; height: 16px; }
.view-all-wrap { text-align: center; margin-top: 3rem; }
.view-all-btn { display: inline-block; background-color: var(--main); color: #000; font-weight: 600; padding: 0.75rem 2rem; border-radius: 0.5rem; }
.view-all-btn:hover { background-color: var(--secondary); }

/* Success page */
.success-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.success-card { max-width: 28rem; width: 100%; background-color: var(--body); border-radius: 1rem; padding: 2rem; text-align: center; border: 1px solid var(--header); }
.success-icon { width: 4rem; height: 4rem; border-radius: 9999px; background: rgba(28,191,98,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--success); font-size: 2rem; }
.success-card h1 { font-size: 1.75rem; font-weight: 700; color: var(--main); margin-bottom: 1rem; }
.success-card > p { color: #9ca3af; margin-bottom: 2rem; }
.success-box { background-color: rgba(0,0,0,0.25); border: 1px solid var(--header); border-radius: 0.75rem; padding: 1rem; margin-bottom: 1rem; }
.success-box .small { font-size: 0.85rem; color: #9ca3af; }
.success-time { color: var(--main); font-weight: 600; margin: 1rem 0; font-size: 1.1rem; }
.success-bar-track { width: 100%; background-color: var(--header); border-radius: 9999px; height: 4px; }
.success-bar { height: 4px; background: linear-gradient(to right, var(--secondary), var(--main)); border-radius: 9999px; transition: width 1s linear; }
.success-home { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; background: linear-gradient(to right, var(--main), var(--secondary)); color: #fff; border-radius: 0.75rem; padding: 1rem 1.5rem; font-weight: 500; }
.success-home:hover { opacity: 0.9; }

/* Footer */
#site-footer { padding-bottom: 3rem; padding-top: 2rem; display: flex; flex-direction: column; align-items: center; background-color: var(--bg); color: #fff; }
.footer-nav ul { display: flex; flex-direction: column; align-items: center; font-size: 1rem; }
.footer-nav ul li { margin-bottom: 1rem; }
.footer-nav ul li a { color: #fff; }
.footer-nav ul li a:hover { color: var(--main); }

/* Rate us */
#rate-us { display: none; position: fixed; bottom: 2.5rem; right: 2.5rem; width: 16rem; background-color: var(--body); border-radius: 0.5rem; padding: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,0.5); z-index: 100; overflow: hidden; }
#rate-us.show { display: block; }
.rate-us-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.rate-us-header h3 { font-size: 1.125rem; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 0.5rem; }
#rate-us-close { background: none; border: none; cursor: pointer; color: var(--main); font-size: 1.25rem; }
#rate-us-close:hover { color: var(--secondary); }
.rate-us-desc { color: #d1d5db; margin-bottom: 1rem; font-size: 0.875rem; text-align: center; }
.rate-us-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background-color: var(--main); color: #000; font-weight: 500; padding: 0.5rem 1rem; border-radius: 0.375rem; font-size: 0.875rem; width: 100%; }
.rate-us-btn:hover { background-color: var(--secondary); }
#rate-us-progress { position: absolute; bottom: 0; left: 0; height: 2px; width: 100%; background-color: #22c55e; }

/* Rate announcement popup */
#rate-popup-overlay {
  position: fixed; inset: 0; z-index: 400; background-color: rgba(0,0,0,0.78);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  animation: toast-in 0.25s ease-out;
}
#rate-popup-overlay.rate-popup-hidden { display: none; }
#rate-popup {
  position: relative; width: 100%; max-width: 340px; background-color: var(--body);
  border-radius: 1.25rem; border: 1px solid rgba(78,221,152,0.45);
  padding: 2rem 1.5rem 1.75rem; box-shadow: 0 24px 48px rgba(0,0,0,0.65); text-align: center;
}
#rate-popup-x {
  position: absolute; top: 0.75rem; right: 1rem; background: none; border: none;
  color: rgba(255,255,255,0.35); font-size: 1.1rem; cursor: pointer; line-height: 1; padding: 0.25rem;
}
#rate-popup-x:hover { color: #fff; }
.rate-popup-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background-color: rgba(78,221,152,0.12); border: 1px solid rgba(78,221,152,0.3);
  border-radius: 9999px; padding: 0.3rem 0.9rem; font-size: 0.72rem;
  color: var(--main); font-weight: 600; margin-bottom: 1.1rem; letter-spacing: 0.02em;
}
.rate-popup-title {
  font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; line-height: 1.4;
}
.rate-popup-rate {
  font-size: 1.75rem; font-weight: 700; color: #fff;
  background-color: rgba(78,221,152,0.08); border-radius: 0.75rem;
  padding: 0.75rem 1rem; margin-bottom: 1.1rem;
}
.rate-popup-gel { color: var(--main); }
.rate-popup-desc {
  font-size: 0.8rem; color: #9ca3af; line-height: 1.7; margin-bottom: 1.5rem;
}
.rate-popup-btn {
  width: 100%; padding: 0.75rem; border-radius: 0.6rem;
  background-color: var(--main); color: #191a1a;
  font-family: 'MarkGeo', sans-serif; font-size: 0.95rem; font-weight: 700;
  border: none; cursor: pointer; transition: background-color 0.2s;
}
.rate-popup-btn:hover { background-color: var(--secondary); }
.rate-popup-dismiss {
  display: block; width: 100%; margin-top: 0.65rem; padding: 0.4rem;
  background: none; border: none; color: #6b7280;
  font-family: 'MarkGeo', sans-serif; font-size: 0.78rem; cursor: pointer; transition: color 0.2s;
}
.rate-popup-dismiss:hover { color: #9ca3af; text-decoration: underline; }

/* Responsive */
@media (min-width: 640px) { .heading-sub { display: inline; } }
@media (min-width: 768px) { .blogs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  #site-header { padding-left: 2.5rem; padding-right: 2.5rem; font-size: 0.75rem; transform: translateY(0) !important; }
  #site-header.header-hidden { transform: translateY(0) !important; }
  .header-lang-mobile, #hamburger-btn { display: none; }
  #mobile-menu { display: none !important; }
  .desktop-nav, .header-lang-desktop { display: flex; }
  .header-main-link { margin-left: 2.5rem; }
  #main-container { padding-left: 25%; padding-right: 25%; padding-top: 5rem; }
  #main-container h1 { margin: 2.5rem 0; }
  .transaction-body { padding: 1.25rem; }
  .section { padding-top: 5%; }
  .panel { padding: 2.5rem; }
  .info-main { padding-left: 20%; padding-right: 20%; }
  .footer-nav ul { flex-direction: row; gap: 0; }
  .footer-nav ul li { margin-bottom: 0; margin-right: 1.5rem; }
  .footer-nav ul li:last-child { margin-right: 0; }
  .blogs-grid { grid-template-columns: repeat(3, 1fr); }
}
