/* ===== THONSURE168 - Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --gold: #059669;
  --gold-rgb: 5,150,105;
  --gold-dark: #00502a;
  --gold-light: #6ce1af;
  --dark: #101413;
  --dark-2: #191f1d;
  --dark-3: #252d2a;
  --dark-4: #343d3a;
  --red: #FF3B5C;
  --green: #00E676;
  --blue: #448AFF;
  --purple: #7C4DFF;
  --white: #eaf0ee;
  --gray: #9dafa9;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Prompt', sans-serif; background: var(--dark); color: var(--white); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: var(--gold); transition: .3s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.header { background: linear-gradient(180deg, var(--dark-2) 0%, transparent 100%); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0; backdrop-filter: blur(20px); border-bottom: 1px solid rgba(5,150,105,0.1); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; max-width: 1200px; margin: 0 auto; }
.logo { font-size: clamp(20px, 5vw, 30px); font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 38px; height: 38px; min-width: 38px; border-radius: 10px; background: var(--gold); color: var(--dark); display: flex; align-items: center; justify-content: center; -webkit-text-fill-color: initial; }
.logo-icon svg { width: 24px; height: 24px; }
.nav-links { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.nav-links a { color: var(--gray); padding: 7px 12px; border-radius: 8px; font-size: 13px; font-weight: 500; transition: .3s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(5,150,105,0.1); }
.nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important; color: var(--dark) !important; font-weight: 700 !important; -webkit-text-fill-color: var(--dark) !important; }
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(5,150,105,0.4); }
.nav-cta-outline { background: transparent !important; border: 1.5px solid var(--gold) !important; color: var(--gold) !important; font-weight: 600 !important; -webkit-text-fill-color: var(--gold) !important; }
.nav-cta-outline:hover { background: rgba(5,150,105,0.1) !important; transform: scale(1.05); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--gold); transition: .3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.header.scrolled { background: rgba(10,10,26,0.95); box-shadow: 0 2px 20px rgba(0,0,0,0.5); }

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: radial-gradient(ellipse at center, var(--dark-3) 0%, var(--dark) 70%); position: relative; text-align: center; padding: 120px 20px 60px; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23#059669' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: .5; }
.hero-center { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 3; max-width: 800px; margin: 0 auto; }
.hero-image { max-width: 500px; width: 100%; border-radius: 16px; overflow: hidden; margin-bottom: 35px; box-shadow: 0 10px 40px rgba(5,150,105,0.15); }
.hero-image img { width: 100%; height: auto; display: block; }
.hero h1 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 18px; line-height: 1.4; }
.hero h1 .highlight, .section-title h2 .highlight, .highlight { background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: clamp(0.9rem, 1.8vw, 1.1rem); color: var(--gray); margin-bottom: 35px; max-width: 600px; line-height: 1.8; }
.btn-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn { padding: 14px 36px; border-radius: 50px; font-family: 'Prompt', sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; border: none; display: inline-flex; align-items: center; gap: 8px; transition: .3s; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); box-shadow: 0 4px 20px rgba(5,150,105,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(5,150,105,0.5); color: var(--dark); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: rgba(5,150,105,0.1); transform: translateY(-2px); }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; margin-top: 50px; padding-top: 35px; border-top: 1px solid rgba(5,150,105,0.1); }

.promo-banners { padding: 50px 0; background: var(--dark); }
.banners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.banner-card { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid rgba(5,150,105,0.15); box-shadow: 0 8px 30px rgba(0,0,0,0.4); aspect-ratio: 1; cursor: pointer; }
.banner-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.banner-card:hover img { transform: scale(1.08); }
.banner-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 40%, transparent 70%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; transition: background .3s; }
.banner-overlay .banner-tag { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); padding: 5px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; display: inline-block; width: fit-content; margin-bottom: 12px; }
.banner-overlay h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 800; margin-bottom: 8px; line-height: 1.3; }
.banner-overlay p { color: var(--gray); font-size: 13px; margin-bottom: 18px; line-height: 1.6; }
.banner-overlay .btn { padding: 10px 28px; font-size: 14px; width: fit-content; }

section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 15px; }
.section-title p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 16px; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.feature-card { background: linear-gradient(135deg, var(--dark-2), var(--dark-3)); border: 1px solid rgba(5,150,105,0.08); border-radius: var(--radius); padding: 35px 30px; transition: .3s; position: relative; overflow: hidden; }
.feature-card:hover { border-color: rgba(5,150,105,0.3); transform: translateY(-5px); }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); opacity: 0; transition: .3s; }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 60px; height: 60px; border-radius: 15px; background: linear-gradient(135deg, rgba(5,150,105,0.15), rgba(5,150,105,0.05)); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }
.feature-icon svg { width: 32px; height: 32px; }
.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--gold-light); }
.feature-card p { color: var(--gray); font-size: 14px; line-height: 1.8; }

.stat-item { text-align: center; }
.stat-item .stat-value { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-item .stat-label { color: var(--gray); font-size: 13px; margin-top: 6px; }

.lottery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.lottery-card { background: var(--dark-2); border: 1px solid rgba(5,150,105,0.08); border-radius: var(--radius); padding: 25px; text-align: center; transition: .3s; }
.lottery-card:hover { border-color: var(--gold); transform: scale(1.03); box-shadow: 0 0 30px rgba(5,150,105,0.1); }
.lottery-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--gold); }
.lottery-card p { color: var(--gray); font-size: 13px; }
.lottery-card .rate { color: var(--green); font-weight: 700; font-size: 22px; margin-top: 10px; display: block; }

.cta-section { background: linear-gradient(135deg, var(--dark-4), var(--dark-3)); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(5,150,105,0.08), transparent 70%); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 20px; font-weight: 800; }
.cta-content p { color: var(--gray); margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }

.page-hero { padding: 140px 20px 60px; text-align: center; background: radial-gradient(ellipse at top, var(--dark-3) 0%, var(--dark) 60%); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 15px; }
.page-hero p { color: var(--gray); max-width: 600px; margin: 0 auto; }

.seo-block { background: var(--dark-2); border-top: 1px solid rgba(5,150,105,0.05); padding: 60px 0; }
.seo-block h2 { font-size: 20px; font-weight: 700; color: var(--gold); margin: 25px 0 12px; }
.seo-block h3 { font-size: 17px; font-weight: 600; color: var(--gold-light); margin: 20px 0 10px; }
.seo-block p { color: var(--gray); font-size: 14px; line-height: 2; margin-bottom: 12px; }
.seo-block strong, .split-content strong { color: var(--gold); }
.split-content h3 { color: var(--gold-light); margin: 20px 0 10px; }
.split-block:nth-child(even) { background: var(--dark-2); }

.footer { background: var(--dark-2); border-top: 1px solid rgba(5,150,105,0.08); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-bottom: 40px; }
.footer-col h4 { font-size: 16px; font-weight: 700; color: var(--gold); margin-bottom: 20px; }
.footer-col p { color: var(--gray); font-size: 13px; line-height: 1.8; }
.footer-col a { display: block; color: var(--gray); font-size: 13px; padding: 5px 0; transition: .3s; }
.footer-col a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(5,150,105,0.05); color: var(--gray); font-size: 12px; }

.kw { color: var(--gold); font-weight: 600; }
.kw-lt { color: var(--gold-light); font-weight: 500; border-bottom: 1px dotted rgba(5,150,105,0.3); }
.kw-brand { background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; }

.content-page { padding: 140px 20px 60px; }
.content-box { max-width: 900px; margin: 0 auto; }
.content-box h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; text-align: center; margin-bottom: 15px; }
.content-box .content-subtitle { text-align: center; color: var(--gray); margin-bottom: 50px; font-size: 16px; }
.content-box h2 { font-size: 22px; font-weight: 700; color: var(--gold); margin: 35px 0 15px; }
.content-box h3 { font-size: 18px; font-weight: 600; color: var(--gold-light); margin: 25px 0 12px; }
.content-box p { color: var(--gray); font-size: 15px; line-height: 2; margin-bottom: 15px; }
.content-box ul { list-style: none; margin: 20px 0; }
.content-box ul li { padding: 10px 0; color: var(--gray); font-size: 15px; border-bottom: 1px solid rgba(5,150,105,0.05); }
.content-box ul li::before { content: '\2713 '; color: var(--green); font-weight: 700; }

.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 30px 0; }
.step-card { background: var(--dark-2); border: 1px solid rgba(5,150,105,0.1); border-radius: var(--radius); padding: 25px; text-align: center; }
.step-card .step-num { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); font-weight: 900; font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; }
.step-card h4 { color: var(--gold-light); margin-bottom: 8px; font-size: 16px; }
.step-card p { color: var(--gray); font-size: 13px; }
.big-cta { text-align: center; margin: 40px 0; padding: 40px; background: linear-gradient(135deg, var(--dark-3), var(--dark-4)); border: 1px solid rgba(5,150,105,0.15); border-radius: 20px; }
.big-cta h3 { font-size: 24px; margin-bottom: 15px; }
.big-cta p { color: var(--gray); margin-bottom: 25px; }

.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 25px; }
.article-card { background: var(--dark-2); border: 1px solid rgba(5,150,105,0.08); border-radius: var(--radius); overflow: hidden; transition: .3s; }
.article-card:hover { border-color: rgba(5,150,105,0.3); transform: translateY(-5px); }
.article-thumb-img { height: 220px; overflow: hidden; }
.article-thumb-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.article-card a { display: block; }
.article-card:hover .article-thumb-img img { transform: scale(1.08); }
.article-body { padding: 25px; }
.article-body .tag { background: rgba(5,150,105,0.1); color: var(--gold); padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 600; display: inline-block; margin-bottom: 12px; }
.article-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.5; }
.article-body h3 a { color: var(--white); }
.article-body h3 a:hover { color: var(--gold); }
.article-body p { color: var(--gray); font-size: 14px; line-height: 1.8; margin-bottom: 15px; }
.article-body .meta { color: var(--gray); font-size: 12px; }

.article-hero-img { width: 100%; max-height: 480px; object-fit: cover; display: block; border-radius: 0 0 var(--radius) var(--radius); }
.article-hero-gradient { width: 100%; min-height: 280px; display: flex; align-items: flex-end; padding: 40px 5%; background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 40%, rgba(5,150,105,0.18) 100%); position: relative; overflow: hidden; border-radius: 0 0 var(--radius) var(--radius); }
.article-hero-gradient::before { content: ''; position: absolute; top: -30%; right: -20%; width: 60%; height: 120%; background: radial-gradient(circle, rgba(5,150,105,0.1) 0%, transparent 70%); }
.article-hero-gradient h1 { position: relative; z-index: 1; font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--gold-light); line-height: 1.4; max-width: 820px; margin: 0 auto; }
.article-detail { max-width: 820px; margin: -40px auto 0; position: relative; z-index: 2; background: var(--dark-2); border: 1px solid rgba(5,150,105,0.08); border-radius: var(--radius); padding: 40px 45px 50px; box-shadow: var(--shadow); }
.article-detail .article-meta { display: flex; gap: 15px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.article-detail .article-meta .tag { background: rgba(5,150,105,0.1); color: var(--gold); padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.article-detail .article-meta span { color: var(--gray); font-size: 13px; }
.article-detail h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; line-height: 1.4; margin-bottom: 25px; }
.article-detail h2 { font-size: 20px; font-weight: 700; color: var(--gold); margin: 35px 0 15px; padding-top: 20px; border-top: 1px solid rgba(5,150,105,0.08); }
.article-detail h3 { font-size: 17px; font-weight: 600; color: var(--gold-light); margin: 25px 0 10px; }
.article-detail p { color: var(--gray); font-size: 15px; line-height: 2; margin-bottom: 15px; }
.article-detail ul, .article-detail ol { margin: 15px 0; padding-left: 25px; }
.article-detail li { color: var(--gray); font-size: 15px; line-height: 2; margin-bottom: 8px; }
.article-detail .tip-box { background: rgba(5,150,105,0.05); border-left: 4px solid var(--gold); padding: 20px 25px; border-radius: 0 var(--radius) var(--radius) 0; margin: 20px 0; }
.article-detail .tip-box p { margin-bottom: 0; }
.article-detail .article-cta { text-align: center; margin-top: 40px; padding: 35px; background: linear-gradient(135deg, var(--dark-3), var(--dark-4)); border: 1px solid rgba(5,150,105,0.15); border-radius: var(--radius); }
.article-detail .article-cta h3 { color: var(--white); font-size: 20px; margin: 0 0 10px; border: none; padding: 0; }
.article-detail .article-cta p { margin-bottom: 20px; }
.article-back { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 14px; font-weight: 500; margin: 30px auto; padding: 10px 0; }

.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 25px; }
.promo-card { background: linear-gradient(135deg, var(--dark-2), var(--dark-3)); border: 1px solid rgba(5,150,105,0.1); border-radius: var(--radius); padding: 35px; position: relative; overflow: hidden; transition: .3s; }
.promo-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.promo-card .promo-badge { position: absolute; top: 20px; right: -30px; background: var(--red); color: white; padding: 5px 40px; font-size: 12px; font-weight: 700; transform: rotate(45deg); }
.promo-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 15px; color: var(--gold); }
.promo-card .promo-value { font-size: 48px; font-weight: 900; color: var(--gold-light); margin: 15px 0; }
.promo-card p { color: var(--gray); font-size: 14px; line-height: 1.8; }
.promo-card ul { list-style: none; margin: 15px 0; }
.promo-card ul li { padding: 6px 0; color: var(--gray); font-size: 14px; }
.promo-card ul li::before { content: '\2713 '; color: var(--green); font-weight: 700; }

.policy-content { max-width: 800px; margin: 0 auto; padding-top: 120px; }
.policy-content h1 { font-size: 32px; font-weight: 800; margin-bottom: 10px; text-align: center; }
.policy-content .policy-subtitle { text-align: center; color: var(--gray); margin-bottom: 50px; }
.policy-content h2 { font-size: 22px; font-weight: 700; color: var(--gold); margin: 40px 0 15px; padding-top: 20px; border-top: 1px solid rgba(5,150,105,0.1); }
.policy-content h2:first-of-type { border-top: none; }
.policy-content p { color: var(--gray); margin-bottom: 15px; font-size: 15px; }
.policy-content ul { margin: 15px 0; padding-left: 25px; }
.policy-content ul li { color: var(--gray); margin-bottom: 8px; font-size: 15px; }

.form-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 20px 80px; background: radial-gradient(ellipse at top, var(--dark-3) 0%, var(--dark) 60%); }
.form-box { background: var(--dark-2); border: 1px solid rgba(5,150,105,0.1); border-radius: 20px; padding: 50px 40px; width: 100%; max-width: 480px; box-shadow: var(--shadow); }

.lottery-icon { width: 80px; height: 80px; margin: 0 auto 15px; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.lottery-icon svg { width: 50px; height: 50px; }
.lottery-icon.thai { background: linear-gradient(135deg, #1a237e, #283593); box-shadow: 0 4px 20px rgba(26,35,126,0.4); }
.lottery-icon.laos { background: linear-gradient(135deg, #b71c1c, #d32f2f); box-shadow: 0 4px 20px rgba(183,28,28,0.4); }
.lottery-icon.hanoi { background: linear-gradient(135deg, #e65100, #f57c00); box-shadow: 0 4px 20px rgba(230,81,0,0.4); }
.lottery-icon.yeekee { background: linear-gradient(135deg, #6a1b9a, #8e24aa); box-shadow: 0 4px 20px rgba(106,27,154,0.4); }
.lottery-icon.stock { background: linear-gradient(135deg, #1b5e20, #2e7d32); box-shadow: 0 4px 20px rgba(27,94,32,0.4); }
.lottery-icon.malay { background: linear-gradient(135deg, #0d47a1, #1565c0); box-shadow: 0 4px 20px rgba(13,71,161,0.4); }

.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: linear-gradient(180deg, var(--dark-2) 0%, #080818 100%); border-top: 1px solid rgba(5,150,105,0.2); box-shadow: 0 -4px 20px rgba(0,0,0,0.6); padding: 6px 0 env(safe-area-inset-bottom, 6px); }
.mobile-bottom-nav .bottom-nav-grid { display: flex; justify-content: space-around; align-items: center; max-width: 500px; margin: 0 auto; }
.mobile-bottom-nav .bottom-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 6px 10px; border-radius: 10px; transition: .3s; text-decoration: none; flex: 1; }
.mobile-bottom-nav .bottom-nav-item svg { width: 24px; height: 24px; }
.mobile-bottom-nav .bottom-nav-item span { font-size: 10px; font-weight: 600; color: var(--gray); -webkit-text-fill-color: var(--gray); transition: .3s; }
.mobile-bottom-nav .bottom-nav-item:hover span { color: var(--gold); -webkit-text-fill-color: var(--gold); }
.mobile-bottom-nav .bottom-nav-item.bottom-nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-radius: 12px; margin: 0 2px; box-shadow: 0 2px 12px rgba(5,150,105,0.3); }
.mobile-bottom-nav .bottom-nav-item.bottom-nav-cta span { color: var(--dark) !important; -webkit-text-fill-color: var(--dark) !important; font-weight: 800; }

.payout-note-box { display: flex; align-items: flex-start; gap: 15px; background: rgba(5,150,105,0.05); border: 1px solid rgba(5,150,105,0.15); border-radius: var(--radius); padding: 20px 25px; margin-bottom: 40px; }
.payout-note-box svg { flex-shrink: 0; margin-top: 2px; }
.payout-note-box p { color: var(--gray); font-size: 14px; line-height: 1.8; margin: 0; }
.payout-section { margin-bottom: 40px; }
.payout-section-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.payout-section-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, rgba(5,150,105,0.15), rgba(5,150,105,0.05)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.payout-section-icon svg { width: 30px; height: 30px; }
.payout-section-header h2 { color: var(--gold); font-size: 22px; font-weight: 700; margin: 0; }
.payout-draw-time { display: flex; align-items: center; gap: 6px; color: var(--gray); font-size: 13px; margin-top: 4px; }
.payout-draw-time svg { flex-shrink: 0; }
.payout-table { width: 100%; border-collapse: collapse; background: var(--dark-2); border: 1px solid rgba(5,150,105,0.1); border-radius: var(--radius); overflow: hidden; }
.payout-table thead { background: linear-gradient(135deg, var(--dark-3), var(--dark-4)); }
.payout-table th { padding: 14px 20px; text-align: left; font-size: 14px; font-weight: 600; color: var(--gold); border-bottom: 2px solid rgba(5,150,105,0.15); }
.payout-table td { padding: 13px 20px; font-size: 14px; color: var(--gray); border-bottom: 1px solid rgba(5,150,105,0.05); }
.payout-table tbody tr:hover { background: rgba(5,150,105,0.03); }
.payout-table .payout-rate { color: var(--green); font-weight: 700; font-size: 15px; }
.payout-table .payout-example { color: var(--gold-light); font-size: 13px; }
.register-extra-section { margin: 35px 0; padding-top: 25px; border-top: 1px solid rgba(5,150,105,0.08); }
.register-extra-section table { width: 100%; border-collapse: collapse; margin: 15px 0; }
.register-extra-section table th, .register-extra-section table td { padding: 10px 15px; border: 1px solid rgba(5,150,105,0.1); font-size: 14px; }
.register-extra-section table th { background: var(--dark-3); color: var(--gold); font-weight: 600; }
.register-extra-section table td { color: var(--gray); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

/* ===== FAQ Accordion ===== */
.faq-section { padding: 80px 0; background: var(--dark-2); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--dark-3); border: 1px solid rgba(5,150,105,0.1); border-radius: var(--radius); overflow: hidden; transition: .3s; }
.faq-item:hover { border-color: rgba(5,150,105,0.3); }
.faq-item.active { border-color: rgba(5,150,105,0.3); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 20px 25px; background: none; border: none; color: var(--white); font-family: 'Prompt', sans-serif; font-size: 16px; font-weight: 600; text-align: left; cursor: pointer; transition: .3s; }
.faq-question:hover { color: var(--gold); }
.faq-arrow { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); transition: transform .3s; }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 25px 20px; color: var(--gray); font-size: 15px; line-height: 1.9; margin: 0; }

/* ===== Article Cards No Image ===== */
.article-thumb-gradient { height: 180px; display: flex; align-items: flex-end; padding: 20px; background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 50%, rgba(5,150,105,0.15) 100%); position: relative; overflow: hidden; }
.article-thumb-gradient::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(5,150,105,0.08) 0%, transparent 70%); }
.article-thumb-gradient .article-date { position: absolute; top: 15px; right: 15px; background: rgba(0,0,0,0.5); color: var(--gold); padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 600; }
.article-thumb-gradient h3 { position: relative; z-index: 1; font-size: 18px; font-weight: 800; color: var(--gold-light); line-height: 1.4; }

/* ===== Split Block ===== */
.split-block { padding: 80px 0; background: var(--dark); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split-grid.split-reverse { direction: rtl; }
.split-grid.split-reverse > * { direction: ltr; }
.split-image { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 40px rgba(5,150,105,0.15); }
.split-image img { width: 100%; height: auto; display: block; }
.split-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 18px; }
.split-content p { color: var(--gray); font-size: 15px; line-height: 2; margin-bottom: 20px; }
.split-content ul { list-style: none; margin: 0 0 25px; }
.split-content ul li { padding: 8px 0; color: var(--gray); font-size: 15px; }
.split-content ul li::before { content: '\2713 '; color: var(--green); font-weight: 700; margin-right: 8px; }

/* ===== Table of Contents Block ===== */
.toc-block { padding: 80px 0; background: var(--dark-2); }
.toc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; }
.toc-item { display: flex; align-items: center; gap: 15px; padding: 18px 22px; background: var(--dark-3); border: 1px solid rgba(5,150,105,0.08); border-radius: var(--radius); transition: .3s; text-decoration: none; }
.toc-item:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(5,150,105,0.1); }
.toc-num { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toc-text { color: var(--white); font-size: 15px; font-weight: 500; }
.toc-item:hover .toc-text { color: var(--gold); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .6s ease forwards; }
@keyframes glow { 0%, 100% { box-shadow: 0 0 20px rgba(5,150,105,0.2); } 50% { box-shadow: 0 0 40px rgba(5,150,105,0.4); } }
.glow { animation: glow 2s ease-in-out infinite; }

/* ===== Homepage New Design ===== */
.hp-hero { margin-top: 70px; position: relative; min-height: 550px; background: radial-gradient(ellipse at center, var(--dark-3) 0%, var(--dark) 70%); overflow: hidden; }
.hp-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(5,150,105,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(5,150,105,0.05) 0%, transparent 50%); }

.hp-slide-container { position: relative; max-width: 1400px; margin: 0 auto; padding: 40px 20px; display: flex; align-items: center; min-height: 480px; }
.hp-slide { display: none; }
.hp-slide.active { display: flex; }

.hp-slide-content { flex: 1; z-index: 2; padding-right: 20px; }
.hp-slide-content h1 { font-size: 42px; font-weight: 900; line-height: 1.3; margin-bottom: 15px; background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hp-slide-content p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 25px; max-width: 500px; }

.hp-slide-cta { display: flex; gap: 15px; flex-wrap: wrap; }
.hp-btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 35px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); text-decoration: none; border-radius: 50px; font-size: 16px; font-weight: 700; transition: all 0.3s ease; box-shadow: 0 4px 25px rgba(5,150,105,0.4); }
.hp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 35px rgba(5,150,105,0.6); color: var(--dark); }
.hp-btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 35px; background: transparent; border: 2px solid var(--gold); color: var(--gold); text-decoration: none; border-radius: 50px; font-size: 16px; font-weight: 600; transition: all 0.3s ease; }
.hp-btn-secondary:hover { background: rgba(5,150,105,0.1); transform: translateY(-2px); color: var(--gold); }

.hp-slide-image { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; }
.hp-slide-image img { max-height: 450px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 0 30px rgba(5,150,105,0.2)); animation: hpFloat 3s ease-in-out infinite; }
@keyframes hpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.hp-slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px; border-radius: 50%; background: rgba(5,150,105,0.2); border: 1px solid rgba(5,150,105,0.4); color: var(--gold); font-size: 18px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; z-index: 10; }
.hp-slider-arrow:hover { background: rgba(5,150,105,0.4); }
.hp-slider-arrow svg { stroke: var(--gold); }
.hp-prev { left: 15px; }
.hp-next { right: 15px; }

.hp-slider-dots { display: flex; justify-content: center; gap: 10px; padding-bottom: 30px; position: relative; z-index: 5; }
.hp-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(5,150,105,0.3); border: none; cursor: pointer; transition: all 0.3s ease; }
.hp-dot.active { background: var(--gold); box-shadow: 0 0 10px rgba(5,150,105,0.5); transform: scale(1.2); }

/* Marquee */
.hp-marquee { background: linear-gradient(90deg, var(--dark-3), var(--dark), var(--dark-3)); border-top: 1px solid rgba(5,150,105,0.2); border-bottom: 1px solid rgba(5,150,105,0.2); padding: 10px 0; overflow: hidden; }
.hp-marquee-content { display: flex; animation: hpMarquee 30s linear infinite; white-space: nowrap; }
.hp-marquee-content span { color: var(--gold); font-size: 14px; padding: 0 50px; }
@keyframes hpMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Section */
.hp-section { padding: 70px 20px; }
.hp-section-alt { background: linear-gradient(180deg, rgba(5,150,105,0.03) 0%, rgba(10,10,26,0) 100%); }
.hp-container { max-width: 1200px; margin: 0 auto; }
.hp-section-title { text-align: center; margin-bottom: 50px; }
.hp-section-title h2 { font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.hp-section-title p { color: var(--gray); font-size: 16px; }
.hp-line { width: 80px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); margin: 15px auto 0; border-radius: 2px; }

/* Features */
.hp-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 40px; }
.hp-feature-card { background: linear-gradient(145deg, rgba(26,26,62,0.8), rgba(15,12,25,0.9)); border: 1px solid rgba(5,150,105,0.15); border-radius: 16px; padding: 30px; text-align: center; transition: all 0.3s ease; }
.hp-feature-card:hover { transform: translateY(-5px); border-color: rgba(5,150,105,0.4); box-shadow: 0 10px 40px rgba(5,150,105,0.1); }
.hp-feature-icon { width: 65px; height: 65px; border-radius: 50%; background: linear-gradient(135deg, rgba(5,150,105,0.2), rgba(5,150,105,0.05)); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.hp-feature-icon svg { width: 32px; height: 32px; }
.hp-feature-card h3 { font-size: 18px; font-weight: 700; color: var(--gold-light); margin-bottom: 10px; }
.hp-feature-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.hp-rate { display: inline-block; margin-top: 12px; padding: 4px 16px; background: linear-gradient(135deg, rgba(5,150,105,0.2), rgba(5,150,105,0.05)); color: var(--gold); border-radius: 20px; font-size: 13px; font-weight: 700; }

/* About */
.hp-about { padding: 70px 20px; background: linear-gradient(180deg, rgba(5,150,105,0.02) 0%, rgba(10,10,26,0) 100%); }
.hp-about-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 50px; }
.hp-about-reverse { flex-direction: row-reverse; }
.hp-about-image { flex: 1; text-align: center; }
.hp-about-image img { max-width: 100%; max-height: 400px; object-fit: contain; filter: drop-shadow(0 0 20px rgba(5,150,105,0.15)); }
.hp-about-text { flex: 1; }
.hp-about-text h2 { font-size: 32px; font-weight: 800; margin-bottom: 20px; }
.hp-about-text p { color: var(--gray); font-size: 15px; line-height: 1.9; margin-bottom: 20px; }

/* Steps */
.hp-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; margin-top: 40px; }
.hp-step-card { text-align: center; padding: 30px 20px; }
.hp-step-num { width: 55px; height: 55px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.hp-step-card h3 { font-size: 16px; font-weight: 700; color: var(--gold-light); margin-bottom: 8px; }
.hp-step-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* Promo Banner */
.hp-promo-banner { background: linear-gradient(135deg, var(--dark-3), var(--dark)); border: 1px solid rgba(5,150,105,0.2); border-radius: 20px; padding: 50px; text-align: center; margin: 0 20px; max-width: 1200px; margin-left: auto; margin-right: auto; position: relative; overflow: hidden; }
.hp-promo-banner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(5,150,105,0.05) 0%, transparent 70%); animation: hpRotateBg 20s linear infinite; }
@keyframes hpRotateBg { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.hp-promo-banner h2 { font-size: 30px; font-weight: 800; color: var(--gold); margin-bottom: 15px; position: relative; }
.hp-promo-banner p { color: var(--gray); font-size: 16px; margin-bottom: 25px; position: relative; }
.hp-promo-banner .hp-btn-primary { position: relative; }

/* Articles */
.hp-articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; margin-top: 40px; }
.hp-article-card { background: linear-gradient(145deg, rgba(26,26,62,0.8), rgba(15,12,25,0.9)); border: 1px solid rgba(5,150,105,0.12); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; }
.hp-article-card:hover { transform: translateY(-5px); border-color: rgba(5,150,105,0.35); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.hp-article-gradient { height: 200px; display: flex; align-items: flex-end; padding: 20px; background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 50%, rgba(5,150,105,0.15) 100%); position: relative; overflow: hidden; }
.hp-article-gradient::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(5,150,105,0.08) 0%, transparent 70%); }
.hp-article-gradient h3 { position: relative; z-index: 1; font-size: 16px; font-weight: 700; color: var(--gold-light); line-height: 1.4; }
.hp-article-body { padding: 25px; }
.hp-article-tag { display: inline-block; background: linear-gradient(135deg, rgba(5,150,105,0.2), rgba(5,150,105,0.05)); color: var(--gold); padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 12px; }
.hp-article-body h3 { font-size: 18px; font-weight: 700; color: var(--gold-light); margin-bottom: 10px; line-height: 1.5; }
.hp-article-body h3 a { color: var(--gold-light); }
.hp-article-body h3 a:hover { color: var(--gold); }
.hp-article-body p { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 15px; }
.hp-read-more { color: var(--gold); font-size: 14px; font-weight: 600; }
.hp-read-more:hover { color: var(--gold-light); }

/* FAQ */
.hp-faq-list { max-width: 800px; margin: 40px auto 0; }
.hp-faq-item { background: linear-gradient(145deg, rgba(26,26,62,0.6), rgba(15,12,25,0.8)); border: 1px solid rgba(5,150,105,0.1); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.hp-faq-question { padding: 18px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--gold-light); transition: all 0.3s ease; }
.hp-faq-question:hover { background: rgba(5,150,105,0.05); }
.hp-faq-question span { flex: 1; }
.hp-faq-arrow { color: var(--gold); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 15px; }
.hp-faq-item.open .hp-faq-arrow { transform: rotate(180deg); }
.hp-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.hp-faq-answer-inner { padding: 0 25px 20px; }
.hp-faq-answer-inner p { color: var(--gray); font-size: 14px; line-height: 1.8; }

/* Policy */
.hp-policy-section { padding: 70px 20px; background: linear-gradient(180deg, rgba(5,150,105,0.02), rgba(10,10,26,0)); }
.hp-policy-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 25px; }
.hp-policy-card { background: linear-gradient(145deg, rgba(26,26,62,0.6), rgba(15,12,25,0.8)); border: 1px solid rgba(5,150,105,0.1); border-radius: 16px; padding: 30px; }
.hp-policy-card h3 { font-size: 18px; font-weight: 700; color: var(--gold); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.hp-policy-card h3 svg { stroke: var(--gold); flex-shrink: 0; }
.hp-policy-card ul { list-style: none; padding: 0; }
.hp-policy-card li { color: var(--gray); font-size: 14px; line-height: 1.8; padding: 5px 0 5px 20px; position: relative; }
.hp-policy-card li::before { content: '\2713'; position: absolute; left: 0; color: var(--gold); font-weight: bold; }

/* Floating */
.hp-floating { position: fixed; bottom: 20px; right: 20px; z-index: 999; }
.hp-float-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); text-decoration: none; box-shadow: 0 4px 20px rgba(5,150,105,0.3); transition: all 0.3s ease; animation: hpPulse 2s ease infinite; }
.hp-float-btn:hover { transform: scale(1.1); color: var(--dark); }
.hp-float-btn svg { stroke: var(--dark); }
@keyframes hpPulse { 0%, 100% { box-shadow: 0 4px 20px rgba(5,150,105,0.3); } 50% { box-shadow: 0 4px 35px rgba(5,150,105,0.6); } }

@media (max-width: 968px) {
  .hp-slide-container, .hp-slide { flex-direction: column; text-align: center; }
  .hp-slide-content { padding-right: 0; }
  .hp-slide-content h1 { font-size: 28px; }
  .hp-slide-content p { max-width: 100%; }
  .hp-slide-cta { justify-content: center; }
  .hp-slide-image img { max-height: 350px; }
  .hp-about-inner, .hp-about-reverse { flex-direction: column; }
  .hp-articles-grid { grid-template-columns: 1fr; }
  .hp-policy-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: 70px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark-2); flex-direction: column; padding: 20px; border-bottom: 1px solid rgba(5,150,105,0.1); }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .banners-grid { grid-template-columns: 1fr; gap: 20px; }
  .features-grid, .lottery-grid, .articles-grid, .promo-grid { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; gap: 30px; }
  .split-grid.split-reverse { direction: ltr; }
  .toc-grid { grid-template-columns: 1fr; }
  .form-box { padding: 35px 25px; }
  section { padding: 60px 0; }
  .split-block { padding: 60px 0; }
  .toc-block { padding: 60px 0; }
  .hero { padding: 100px 15px 50px; min-height: auto; }
  .hero-image { max-width: 320px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .payout-table th:last-child, .payout-table td:last-child { display: none; }
  .payout-section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hp-section-title h2 { font-size: 26px; }
  .hp-promo-banner { padding: 30px 20px; }
  .hp-promo-banner h2 { font-size: 22px; }
  .hp-btn-primary, .hp-btn-secondary { padding: 10px 25px; font-size: 14px; }
  .hp-features-grid { grid-template-columns: 1fr; }
  .hp-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .winners-ticker { max-height: 300px; }
  .winner-item { padding: 10px 15px; font-size: 13px; }
  .bank-logos { gap: 10px; }
  .bank-logo { width: 36px; height: 36px; }
  .line-float-btn { display: none; }
  .hp-floating { display: none; }
}

/* ===== Recent Winners Ticker ===== */
.winners-ticker { max-height: 400px; overflow: hidden; background: linear-gradient(145deg, rgba(26,26,62,0.6), rgba(15,12,25,0.8)); border: 1px solid rgba(5,150,105,0.15); border-radius: var(--radius); position: relative; }
.winners-ticker::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(to top, var(--dark), transparent); pointer-events: none; }
.winners-ticker-inner { animation: winnersScroll 20s linear infinite; }
.winners-ticker:hover .winners-ticker-inner { animation-play-state: paused; }
.winner-item { display: flex; align-items: center; gap: 15px; padding: 14px 20px; border-bottom: 1px solid rgba(5,150,105,0.06); transition: background .3s; }
.winner-item:hover { background: rgba(5,150,105,0.05); }
.winner-name { color: var(--white); font-weight: 600; font-size: 14px; min-width: 100px; }
.winner-game { color: var(--gray); font-size: 13px; flex: 1; }
.winner-amount { color: var(--green); font-weight: 700; font-size: 15px; min-width: 100px; text-align: right; }
.winner-time { color: var(--gray); font-size: 12px; min-width: 100px; text-align: right; }
@keyframes winnersScroll { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

/* ===== Bank Logos ===== */
.bank-logos-section { text-align: center; padding: 25px 0; margin-top: 20px; border-top: 1px solid rgba(5,150,105,0.08); }
.bank-logos-section h4 { color: var(--gray); font-size: 13px; font-weight: 500; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.bank-logos { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.bank-logo { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; transition: transform .3s; }
.bank-logo:hover { transform: scale(1.15); }
.bank-logo svg { width: 100%; height: 100%; }

/* ===== LINE Floating Button ===== */
.line-float-btn { position: fixed; bottom: 90px; right: 20px; z-index: 998; }
.line-float-btn a { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: #06C755; box-shadow: 0 4px 15px rgba(6,199,85,0.4); transition: all .3s ease; animation: lineBounce 3s ease-in-out infinite; text-decoration: none; }
.line-float-btn a:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(6,199,85,0.6); }
@keyframes lineBounce { 0%, 100% { transform: translateY(0); } 15% { transform: translateY(-8px); } 30% { transform: translateY(0); } }

/* ===== Article Cover Image ===== */
.article-hero-cover { width: 100%; max-height: 480px; overflow: hidden; border-radius: 0 0 var(--radius) var(--radius); }
.article-hero-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================
   VARIANT F — Content-Rich Layout
   ============================ */

/* --- Container & Layout --- */
.vf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vf-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.vf-reverse {
  direction: rtl;
}
.vf-reverse > * {
  direction: ltr;
}

/* --- Sections --- */
.vf-section {
  padding: 70px 0;
}

.vf-section-alt {
  background: linear-gradient(180deg, rgba(5,150,105, 0.03), transparent);
}

.vf-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.vf-section-header h2 {
  font-size: 2rem;
  color: #fff;
  margin: 15px 0 0;
}

.vf-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark, #059669));
  color: var(--dark);
  font-size: 1.4rem;
}

/* --- HERO --- */
.vf-hero {
  padding: 100px 0 70px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2, #0f0f23) 100%);
  position: relative;
  overflow: hidden;
}

.vf-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5,150,105, 0.08), transparent 70%);
  pointer-events: none;
}

.vf-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.vf-hero-text h1 {
  font-size: 2.8rem;
  color: #fff;
  line-height: 1.2;
  margin: 15px 0;
}

.vf-hero-thai {
  color: var(--gold);
  font-size: 0.7em;
}

.vf-hero-text > p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.vf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(5,150,105, 0.2), rgba(5,150,105, 0.05));
  border: 1px solid rgba(5,150,105, 0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.vf-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.vf-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

.vf-pill i {
  color: var(--gold);
}

.vf-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vf-hero-image {
  position: relative;
}

.vf-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.vf-image-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark, #059669));
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- Buttons --- */
.vf-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark, #059669));
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vf-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5,150,105, 0.4);
}

.vf-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(5,150,105, 0.4);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.vf-btn-secondary:hover {
  background: rgba(5,150,105, 0.1);
  border-color: var(--gold);
}

/* --- Column Content --- */
.vf-col-image {
  position: relative;
}

.vf-col-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.vf-col-content {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.vf-col-content h2, .vf-col-content h3 {
  color: #fff;
  margin-bottom: 15px;
}

.vf-col-content p {
  margin-bottom: 15px;
}

/* --- Mini Feature Cards --- */
.vf-mini-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 25px 0;
}

.vf-mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.vf-mini-card i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* --- Stat Cards --- */
.vf-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 25px 0;
}

.vf-stat-card {
  text-align: center;
  background: rgba(5,150,105, 0.06);
  border: 1px solid rgba(5,150,105, 0.15);
  padding: 18px 10px;
  border-radius: 12px;
}

.vf-stat-card i {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.vf-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin: 5px 0;
}

.vf-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* --- Highlights --- */
.vf-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.vf-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.vf-highlight i {
  color: var(--gold);
}

/* --- Security Badges --- */
.vf-security-badges {
  display: flex;
  gap: 8px;
  margin-top: 15px;
  justify-content: center;
}

.vf-sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(5,150,105, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}

/* --- Feature Boxes --- */
.vf-feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 25px 0;
}

.vf-fbox {
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px 12px;
  border-radius: 12px;
  transition: border-color 0.3s;
}

.vf-fbox:hover {
  border-color: rgba(5,150,105, 0.4);
}

.vf-fbox i {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.vf-fbox h4 {
  color: #fff;
  font-size: 0.85rem;
  margin: 5px 0;
}

.vf-fbox p {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  margin: 0;
}

/* --- Registration Steps --- */
.vf-reg-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 25px 0;
}

.vf-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.vf-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark, #059669));
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.vf-step h4 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.vf-step p {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  margin: 0;
}

/* --- Benefit Badges --- */
.vf-benefit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.vf-bbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(5,150,105, 0.1);
  border: 1px solid rgba(5,150,105, 0.25);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

/* --- Tech Badges --- */
.vf-tech-badges {
  display: flex;
  gap: 8px;
  margin-top: 15px;
  justify-content: center;
}

.vf-tbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(5,150,105, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}

/* --- Tech Stats --- */
.vf-tech-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 25px 0;
}

.vf-tstat {
  text-align: center;
  background: rgba(5,150,105, 0.06);
  border: 1px solid rgba(5,150,105, 0.15);
  padding: 18px 10px;
  border-radius: 12px;
}

.vf-tstat-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
}

.vf-tstat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* --- Articles Grid --- */
.vf-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vf-article-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.vf-article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(5,150,105, 0.4);
}

.vf-article-thumb {
  height: 200px;
  background: linear-gradient(to top, rgba(10,10,26,0.85), rgba(10,10,26,0.3)), linear-gradient(135deg, var(--dark-2, #0f0f23), var(--dark));
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  position: relative;
}

.vf-article-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(5,150,105, 0.2);
  border: 1px solid rgba(5,150,105, 0.4);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

.vf-article-thumb h3 {
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

.vf-article-thumb a {
  text-decoration: none;
}

.vf-article-body {
  padding: 20px;
}

.vf-article-body p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vf-read-more {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vf-read-more:hover {
  text-decoration: underline;
}

/* --- Full CTA --- */
.vf-full-cta {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(5,150,105, 0.12), rgba(5,150,105, 0.03));
  border-top: 1px solid rgba(5,150,105, 0.15);
  border-bottom: 1px solid rgba(5,150,105, 0.15);
}

.vf-cta-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.vf-full-cta h2 {
  color: #fff;
  font-size: 2rem;
  margin: 0 0 10px;
}

.vf-full-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin: 0 0 25px;
}

/* --- Animations --- */
.vf-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vf-animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vf-animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vf-animate.vd-visible,
.vf-animate-left.vd-visible,
.vf-animate-right.vd-visible {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* ============================
   RESPONSIVE — 968px
   ============================ */
@media (max-width: 968px) {
  .vf-hero-grid,
  .vf-two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vf-reverse {
    direction: ltr;
  }

  .vf-hero-text h1 {
    font-size: 2rem;
  }

  .vf-hero {
    padding: 80px 0 50px;
  }

  .vf-section {
    padding: 50px 0;
  }

  .vf-section-header h2 {
    font-size: 1.6rem;
  }

  .vf-hero-image {
    order: -1;
  }

  .vf-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .vf-feature-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .vf-articles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vf-tech-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================
   RESPONSIVE — 480px
   ============================ */
@media (max-width: 480px) {
  .vf-hero-text h1 {
    font-size: 1.6rem;
  }

  .vf-hero-pills {
    gap: 6px;
  }

  .vf-pill {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .vf-hero-cta {
    flex-direction: column;
  }

  .vf-btn-primary, .vf-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .vf-section-header h2 {
    font-size: 1.3rem;
  }

  .vf-section-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .vf-mini-features {
    grid-template-columns: 1fr;
  }

  .vf-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .vf-feature-boxes {
    grid-template-columns: 1fr;
  }

  .vf-articles-grid {
    grid-template-columns: 1fr;
  }

  .vf-tech-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .vf-security-badges,
  .vf-tech-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  .vf-full-cta h2 {
    font-size: 1.4rem;
  }

  .vf-two-col {
    gap: 25px;
  }
}


/* Header Style 2 */
.header-2 { padding: 0; }
.h2-top { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; max-width: 1200px; margin: 0 auto; }
.h2-logo { order: 0; }
.h2-logo .logo-img { height: 48px; }
.h2-logo .logo-text { display: none; }
.h2-top-link { color: var(--gray); font-size: 14px; font-weight: 500; padding: 8px 16px; border-radius: 8px; transition: .3s; }
.h2-top-link:hover { color: var(--gold); background: rgba(5,150,105,0.1); }
.h2-top-cta { padding: 8px 24px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark) !important; border-radius: 50px; font-weight: 700; font-size: 14px; -webkit-text-fill-color: var(--dark) !important; }
.h2-nav { display: flex; justify-content: center; gap: 5px; padding: 8px 20px; border-top: 1px solid rgba(5,150,105,0.1); max-width: 1200px; margin: 0 auto; }
.h2-nav a { color: var(--gray); font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 6px; transition: .3s; }
.h2-nav a:hover, .h2-nav a.active { color: var(--gold); background: rgba(5,150,105,0.1); }
@media (max-width: 768px) {
  .h2-nav { display: none; flex-direction: column; gap: 0; padding: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark-2); border-top: 1px solid rgba(5,150,105,0.1); z-index: 100; }
  .h2-nav.active { display: flex; }
  .h2-nav a { padding: 14px 20px; border-bottom: 1px solid rgba(5,150,105,0.05); text-align: center; }
  .h2-top-link { display: none; }
  .h2-top-cta { display: none; }
  .h2-logo { display: flex; align-items: center; gap: 8px; }
  .h2-logo .logo-img { display: block; height: 32px; width: 32px; object-fit: contain; }
  .h2-logo .logo-text { display: block; font-size: 16px; font-weight: 700; color: var(--gold); }
  .header-2 .hamburger { display: flex; }
}
