:root { --main-color: #30ac4a; --main-width: 1200px; --h1-size: 2.4rem; --h2-size: 1.8rem; --h3-size: 1.5rem; }
html, body { padding: 0; margin: 0; background: #101013; color: #f4f4f6; font-family: 'Segoe UI', 'Arial', sans-serif; font-size: 1.04rem; }
body { min-height: 100vh; }
.hero-section { padding: 0; position: relative; overflow: hidden; width: 100%; background: rgb(0,0,0); }
.hero-bg-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-container { max-width: var(--main-width); margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 40px; position: relative; z-index: 2; flex-direction: row; height: 100%; }
.hero-content { flex: 1; margin: 30px 0; }
.hero-title { font-size: var(--h1-size); line-height: 1.1; margin-bottom: 20px; position: relative; display: inline-block; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 30px; display: block; margin-top: 20px; color: #ffffff; position: relative; }
.hero-subtitle span { position: absolute; bottom: -8px; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, #30ac4a, transparent); }
.hero-btn { background: linear-gradient(135deg, #30ac4a 0%, #138b2d 100%); color: #fff; border: none; padding: 15px 35px; border-radius: 6px; font-size: 1.1rem; cursor: pointer; font-weight: bold; box-shadow: 0px 4px 15px rgba(0,0,0,0.3); transition: all 0.3s; margin-top: 20px; position: relative; overflow: hidden; }
.hero-btn span { position: relative; z-index: 2; }
.hero-btn-shine { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent); pointer-events: none; z-index: 1; }
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.hero-btn:hover .hero-btn-shine { animation: hero-shine 1s; }
@keyframes hero-shine { 100% { left: 100%; } }
    .hero-bonus2 { flex: 0 0 500px; display: flex; align-items: center; justify-content: center; height: 292px; border-left: none; border-right: none; }
    .hero-image-container { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 0px; box-sizing: border-box; }
    .hero-uploaded-image { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border: none; box-sizing: border-box; filter: none; border-radius: 0px; }
@media (max-width: 900px) {
    .hero-container { flex-direction: column; align-items: flex-start; gap: 20px; }
    .hero-bonus2 { width: 100%; flex: 1 1 100%; height: 220px; }
    .hero-image-container { min-height: 120px; }
}
@media (max-width: 600px) {
    .hero-container { padding: 0 8px; }
    .hero-title { font-size: 1.6rem; }
    .hero-bonus2 { height: 120px; }
}
@media (max-width: 430px) {
    .hero-bonus2 { height: 90px; }
}
.content-container { max-width: var(--main-width); width: 100%; margin: 40px auto 40px auto; padding: 36px 20px 36px 20px; box-sizing: border-box; }
.content-container h1 { font-size: var(--h1-size); color: #2ee672; margin: 1.3em 0 0.8em 0; font-weight: 700; line-height: 1.13; letter-spacing: 0.02em; }
.content-container h2 { font-size: var(--h2-size); color: #c7ffb8; margin: 1.2em 0 0.7em 0; font-weight: 600; }
.content-container h3 { font-size: var(--h3-size); color: #30ac4a; margin: 1.1em 0 0.7em 0; font-weight: 500; }
.content-container p { margin: 0 0 1.1em 0; color: #f4f4f6; line-height: 1.7; font-size: 1.08rem; }
.content-container ul, .content-container ol { margin-left: 1.3em; margin-bottom: 1.4em; }
.content-container ul li, .content-container ol li { margin-bottom: 0.6em; }
.content-container table { border-collapse: collapse; width: 100%; max-width: 100%; margin-bottom: 1.4em; }
.content-container th, .content-container td { border: 1.5px solid #30ac4a; padding: 10px 16px; text-align: left; }
.content-container th { background: #242928; color: #70f7b5; }
.content-container td { background: #191c1b; color: #f4f4f6; }
.content-container img { display: block; max-width: 100%; height: auto; border-radius: 8px; margin: 1em 0 1.4em 0; }
.content-container a { color: inherit; text-decoration: underline; transition: color 0.2s; }
.content-container a:hover { color: var(--main-color); }
.feed-block { margin: 50px 0 40px 0; }
.feed-block-title { color: #fff; font-size: 1.4rem; font-weight: 600; margin-bottom: 24px; letter-spacing: 0.01em; }
.feed-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feed-article { background: #191c1b; border-radius: 10px; padding: 14px 16px 18px 16px; transition: box-shadow 0.2s; box-shadow: 0 4px 20px 0 rgba(44, 196, 108, 0.08); display: flex; flex-direction: column; align-items: flex-start; min-height: 340px; }
.feed-article-img { width: 100%; display: block; border-radius: 8px; margin-bottom: 18px; object-fit: cover; }
.feed-article-title { font-size: 1.09rem; font-weight: 600; color: #43e066; margin: 0 0 10px 0; text-decoration: underline; }
.feed-article-title:hover { color: #19d75e; }
.feed-article-desc { color: #e5ffe6; font-size: 1rem; margin: 0; }
@media (max-width: 800px) {
    .feed-list { grid-template-columns: 1fr; gap: 16px; }
}
.comment-block { margin: 50px 0 40px 0; }
.comment-block-title { color: #fff; font-size: 1.22rem; font-weight: 600; margin-bottom: 22px; letter-spacing: 0.01em; }
.comment-list { display: flex; flex-direction: column; gap: 18px; }
.comment-item { border-left: 6px solid #30ac4a; background: #151e17; border-radius: 8px; padding: 16px 18px; color: #fff; box-shadow: 0 2px 12px 0 rgba(44,196,108,0.07); }
.comment-head { display: flex; justify-content: space-between; align-items: center; font-size: 1.04rem; font-weight: 500; margin-bottom: 5px; }
.comment-name { color: #2ee672; font-weight: 600; }
.comment-date { color: #fff; font-size: 0.96rem; opacity: 0.6; }
.comment-text { margin-left: 0; color: #e3ffe6; font-size: 1.03rem; line-height: 1.6; }
.faq-block { margin: 52px 0 45px 0; }
.faq-block-title { color: #30ac4a; font-size: 1.16rem; font-weight: 700; margin-bottom: 18px; letter-spacing: 0.02em; }
.faq-list { display: flex; flex-direction: column; gap: 22px; }
.faq-item { border-radius: 10px; background: linear-gradient(90deg, #30ac4a19 0%, #191c1b 80%); box-shadow: 0 2px 14px 0 rgba(45,236,133,0.07); padding: 16px 22px 18px 22px; }
.faq-q { color: #fff; font-weight: 600; margin-bottom: 6px; font-size: 1.04rem; }
.faq-a { color: #d6ffd1; font-size: 1.01rem; }
@media (max-width: 700px) {
    .content-container { padding: 26px 8px; }
    .feed-list { gap: 10px; }
}
.template_invisible { display: none; }
footer { background: #101f12; color: #bafbc2; padding: 34px 0 12px 0; margin: 0; font-size: 1.02rem; }
.footer-container { max-width: var(--main-width); margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; align-items: center; }
.footer-menu { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-menu a { color: #bafbc2; text-decoration: none; font-weight: 500; font-size: 1.04rem; padding: 7px 0; position: relative; transition: color 0.2s; }
.footer-menu a:hover { color: var(--main-color); }
@media (max-width: 800px) {
    .footer-container { padding: 0 8px; }
    .footer-menu { gap: 20px; }
}
@media (max-width: 600px) {
    .footer-container { align-items: flex-start; }
    .footer-menu { flex-direction: column; align-items: flex-start; gap: 9px; }
}
.footer-copyright { text-align: center; color: #64e181; font-size: 1.02rem; opacity: 0.98; margin-top: 15px; letter-spacing: 0.02em; }
:root { --menu-color: #000000; --menu-text: #FFFFFF; --hover-color: var(--main-color); --hover-text: #000000; }
[data-theme="light"] { --menu-color: #FFFFFF; --menu-text: #000000; --hover-color: var(--main-color); --hover-text: #FFFFFF; }
a { color: inherit; text-decoration: underline; }
.container { max-width: var(--main-width); margin: 0 auto; padding: 0 20px; }
header { padding: 0; background-color: var(--menu-color); position: relative; }
.desktop-menu { display: flex; list-style: none; margin: 0; padding: 0; }
.desktop-menu > li { position: relative; margin: 0px; }
.desktop-menu > li > a { color: var(--menu-text); text-decoration: none; font-size: 1rem; padding: 10px 15px; display: flex; align-items: center; transition: color 0.1s; }
.desktop-menu > li > a:hover { color: var(--hover-color); }
.desktop-menu > li.has-submenu > a::after { content: '▼'; font-size: 0.5rem; margin-top: 2px; margin-left: 5px; }
.submenu { position: absolute; top: 100%; left: 0; background-color: var(--menu-color); min-width: 200px; list-style: none; opacity: 0; visibility: hidden; transition: all 0.1s; z-index: 1000; border-radius: 5px; overflow: hidden; }
.desktop-menu > li:hover .submenu { opacity: 1; visibility: visible; }
.submenu { margin: 0px; padding: 0px !important; }
.submenu li { margin: 0px; padding: 0px !important; }
.submenu li a { color: var(--menu-text); text-decoration: none; display: block; width: 100% !important; padding: 12px 15px; margin: 0px !important; transition: background 0.1s; }
.submenu li a:hover { color: var(--hover-text); background-color: var(--hover-color); }
.burger-menu { order: 3; display: none; background: none; border: none; color: #ffffff; font-size: 1.6rem; cursor: pointer; }
.mobile-menu-close { position: absolute; top: 15px; right: 15px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; display: none; }
.header-container { display: flex; flex-wrap: wrap; align-items: center; }
nav { order: 2; display: block; width: auto; margin-left: auto; margin-top: 12px; margin-bottom: 12px; }
.logo { order: 1; font-size: 1.8rem; font-weight: bold; color: var(--hover-color); text-decoration: none; margin-right: auto; }
.logo img { margin: 0px; }
.header-right { order: 3; display: inline-block; margin-left: 20px; padding: 12px 0; }
.language-switcher { }
.language-switcher:empty { display: none; }
.language-switcher { display: flex; gap: 15px; }
.language-switcher a { color: #fff; text-decoration: none; font-size: 14px; }
@media (max-width: 768px) {
    .logo { order: 1; font-size: 1.4rem; }
    .burger-menu { display: block; margin-left: auto; }
    .header-right { display: block; width: 100%; text-align: center; }
    .language-switcher { display: inline-flex; margin: 10px auto 0px auto; }
}
@media (max-width: 768px) {
    nav { position: fixed; top: 0; left: 0; width: 80%; height: 100vh; background: #1a1a1a; z-index: 1000; transform: translateX(-100%); transition: transform 0.3s ease; padding: 60px 20px 20px; box-sizing: border-box; }
    nav.active { transform: translateX(0); }
    .desktop-menu { flex-direction: column; margin: 0px; }
    .has-submenu { position: relative; width: 100%; font-size: 0.9rem; margin: 0px; padding-right: 30px; }
    .has-submenu > a { display: flex; }
    .desktop-menu > li.has-submenu > a::after { position: absolute; right: 0px; top: 20px; transform: translateY(-50%); font-size: 0.8rem; margin-left: 0; transition: transform 0.3s; padding: 10px; }
    .desktop-menu > li.has-submenu > a.submenu-active::after { padding: 10px; transform: translateY(-50%) rotate(180deg); }
    .submenu { display: none; position: static; opacity: 1; visibility: visible; background-color: transparent; padding-left: 15px; }
    .submenu.active { display: block; margin-left: 20px; margin-bottom: 0px;}
    .submenu li a { color: var(--menu-text); background-color: transparent; text-decoration: none; display: block; padding: 5px 0px; transition: background 0.1s; }
    .submenu li a:hover { color: var(--hover-color); background-color: transparent; }
    .nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; }
    .nav-overlay.active { display: block; }
    .mobile-menu-close { display: block; }
}


@media (max-width: 1919px) { :root { --main-width: 1200px; } [style*="max-width: 1200px"] { max-width: 1200px !important; } }
@media (min-width: 1530px) and (max-width: 1920px) { :root { --main-width: 90%; } [style*="max-width: 1200px"], .hero-container, .hero-section .hero-container, .hero-section .hero-container[style*="max-width: 1200px"], .hero-container[style*="max-width: 1200px"], [style*="max-width: 1200px"].hero-container { max-width: 90% !important; width: 90% !important; } }
@media (min-width: 1921px) { :root { --main-width: 80%; } [style*="max-width: 1200px"], .hero-container, .hero-section .hero-container, .hero-section .hero-container[style*="max-width: 1200px"], .hero-container[style*="max-width: 1200px"], [style*="max-width: 1200px"].hero-container { max-width: 80% !important; width: 80% !important; } }
    .main-content { margin-top: 20px; }
    .sidebar { margin-top: 20px; }
    .main-content > p, .main-content > ul > li, .main-content > ol > li { font-size: 1.15rem; letter-spacing: 0.5px; }
    .main-content > img, .main-content > p > img { max-width: 100%; border-radius: 10px; }
    .toc-section { padding-top: 0px !important; }

    .random-link-block { display: flex; align-items: center; background: #101013; border-left: 7px solid #fc2b79; padding: 18px 20px; margin: 39px 0 40px 0; border-radius: 11px; font-size: 1.12rem; color: #fff; font-weight: 500; box-shadow: 0 3px 18px 0 #ff4dce2a; }
    .random-link-block a { color: #fc2b79; text-decoration: underline; font-weight: 700; background: none; padding: 0 4px; }
    .random-link-block a:hover { color: #ffb742; background: none; }
@media (max-width: 700px) { .random-link-block { font-size: 1.03rem; padding: 13px 12px; border-radius: 7px; } }
    .cta-btn-block { display: flex; justify-content: center; align-items: center; margin: 40px 0 54px 0; }
    .cta-btn { display: inline-block; background: linear-gradient(90deg, #ff6100 18%, #42d3ff 92%); color: #fff; font-size: 1.29rem; font-weight: 800; border: none; border-radius: 16px; box-shadow: 0 8px 32px 0 #228cff44; padding: 19px 56px; letter-spacing: 0.02em; text-transform: uppercase; cursor: pointer; transition: box-shadow 0.24s, transform 0.15s, background 0.23s; outline: none; text-decoration: none; position: relative; overflow: hidden; }
    .cta-btn:before { content: ""; position: absolute; left: -75px; top: 0; width: 48px; height: 100%; background: linear-gradient(90deg,rgba(255,255,255,0.23) 0%,rgba(255,255,255,0.08) 80%,transparent 100%); z-index: 1; opacity: 0.7; transform: skewX(-15deg); transition: left 0.7s cubic-bezier(.55,.06,.42,.95); }
    .cta-btn:hover:before { left: 115%; transition: left 0.7s cubic-bezier(.47,1.64,.41,.8); }
    .cta-btn:hover { box-shadow: 0 12px 44px 0 #228cff65; background: linear-gradient(90deg, #42d3ff 0%, #ff6100 80%); transform: scale(1.025); }
@media (max-width: 700px) { .cta-btn-block { margin: 25px 0 32px 0; } .cta-btn { font-size: 1.03rem; border-radius: 10px; padding: 13px 14vw; } }
    .brand-table-block { box-shadow: 0 10px 36px 0 rgba(60,230,104,0.18), 0 1.5px 5px 0 rgba(60,230,104,0.12); border-radius: 18px; overflow: hidden; margin: 45px 0 48px 0; width: 100%; background: #181f1b; }
    .brand-table-head { display: flex; background: linear-gradient(90deg, #30ac4a 70%, #2be974 100%); color: #fff; font-weight: 700; font-size: 1.07rem; letter-spacing: 0.01em; text-transform: uppercase; padding: 0; border-radius: 18px 18px 0 0; min-height: 52px; align-items: center; }
    .brand-table-head .brand-th { flex: 1 1 0; padding: 16px 6px; text-align: center; }
    .brand-th.brand-th-casino { flex: 1.45 1 0; min-width: 150px; }
    .brand-th.brand-th-rating { flex: 0.82 1 0; min-width: 90px; }
    .brand-th.brand-th-bonus { flex: 1.23 1 0; min-width: 120px; }
    .brand-th.brand-th-proscons { flex: 2.1 1 0; min-width: 180px; }
    .brand-th.brand-th-links { flex: 1.18 1 0; min-width: 115px; }
    .brand-table-body { display: flex; flex-direction: column; }
    .brand-row { display: flex; align-items: stretch; background: #232a27; border-bottom: 2.5px solid #24dc61; transition: box-shadow 0.24s, transform 0.22s; font-size: 0.98rem; line-height: 1.3; }
    .brand-row:last-child { border-bottom: none; }
    .brand-row:hover { box-shadow: 0 0 24px 0 #2be97438; transform: scale(1.015); z-index: 1; }
    .brand-td { flex: 1 1 0; padding: 22px 6px; display: flex; align-items: center; justify-content: center; font-size: 0.98rem; }
    .brand-td.brand-td-casino { flex: 1.45 1 0; }
    .brand-td.brand-td-rating { flex: 0.82 1 0; }
    .brand-td.brand-td-bonus { flex: 1.23 1 0; }
    .brand-td.brand-td-proscons { flex: 2.1 1 0; justify-content: flex-start; align-items: center; text-align: left; line-height: 1.34; }
    .brand-td.brand-td-links { flex: 1.18 1 0; }
    .brand-logo-img { display: block; width: 150px; max-width: 95%; height: auto; object-fit: contain; border-radius: 10px; background: #111c13; box-shadow: 0 0 14px #2be97410; }
    .brand-rating { display: flex; align-items: center; justify-content: center; gap: 3px; font-size: 1.18rem; color: #ffd601; }
    .brand-bonus { display: block; font-weight: 500; color: #27ffc3; letter-spacing: 0.01em; font-size: 1.03rem; }
    .brand-proscons { display: block; color: #b8f3cf; font-size: 0.96rem; line-height: 1.27; }
    .brand-links-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 29px; border-radius: 11px; background: linear-gradient(90deg, #fc2b79 20%, #ffb742 100%); color: #fff; font-size: 1.09rem; font-weight: 700; border: none; box-shadow: 0 5px 18px 0 #ff4dce3b; cursor: pointer; text-decoration: none; position: relative; overflow: hidden; gap: 12px; transition: box-shadow 0.19s, transform 0.14s, background 0.23s; }
    .brand-links-btn:active { transform: scale(0.97); }
    .brand-links-btn .brand-links-btn-ico { font-size: 1.22rem; margin-right: 5px; vertical-align: middle; }
    .brand-row .brand-links-btn:hover, .brand-row .brand-links-btn:focus { background: linear-gradient(90deg, #ffb742 0%, #fc2b79 80%); box-shadow: 0 7px 32px 0 #f936b73a; }
@media (max-width: 980px) {
    .brand-table-block { border-radius: 11px; }
    .brand-table-head { font-size: 0.97rem; min-height: 42px; }
    .brand-row { font-size: 0.96rem; }
    .brand-td { font-size: 0.96rem; padding: 17px 3px; }
    .brand-logo-img { width: 95px; }
}
@media (max-width: 700px) {
    .brand-table-block { border-radius: 8px; }
    .brand-table-head { display: none; }
    .brand-table-body { display: flex; flex-direction: column; }
    .brand-row { flex-direction: column; align-items: stretch; border-radius: 12px; box-shadow: 0 2px 14px #2be97411; margin-bottom: 18px; border-bottom: none; border: 2px solid #24dc61; background: #222926; transition: box-shadow 0.21s; }
    .brand-td { justify-content: center; align-items: center; padding: 16px 10px; }
    .brand-td.brand-td-proscons { align-items: flex-start; justify-content: flex-start; text-align: left; }
    .brand-logo-img { width: 90vw; max-width: 200px; margin: 0 auto 14px auto; }
}
@media (max-width: 510px) {
    .brand-row { margin-bottom: 10px; }
    .brand-table-block { margin: 29px 0 35px 0; }
}
@media (max-width: 430px) {
    .brand-row { border-radius: 7px; }
    .brand-td { padding: 10px 2px; }
}
.floating-panel-container { position: fixed; left: 0; right: 0; bottom: 10px; width: calc(100% - 20px); margin: 0 10px; z-index: 1700; transition: transform 0.5s cubic-bezier(.61,.04,.46,1.01); will-change: transform; pointer-events: none; }
.floating-panel { width: 100%; min-height: 80px; background: linear-gradient(92deg, #2be974 9%, #147e2b 70%, #31aeef 110%); border-radius: 18px; box-shadow: 0 8px 44px 0 #43e1e84a; display: flex; align-items: center; justify-content: space-between; padding: 0 38px; gap: 24px; transition: box-shadow 0.21s; pointer-events: auto; }
.floating-panel-logo { font-size: 1.6rem; font-weight: bold; color: #fff; text-decoration: none; margin-right: 18px; white-space: nowrap; }
.floating-panel-btn { display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(90deg, #ff6100 18%, #42d3ff 92%); color: #fff; font-size: 1.12rem; font-weight: 800; border: none; border-radius: 12px; padding: 13px 36px; box-shadow: 0 4px 19px 0 #228cff3a; text-transform: uppercase; text-decoration: none; transition: box-shadow 0.17s, transform 0.12s, background 0.23s; cursor: pointer; position: relative; overflow: hidden; outline: none; }
.floating-panel-btn:before { content: ""; position: absolute; left: -75px; top: 0; width: 38px; height: 100%; background: linear-gradient(90deg,rgba(255,255,255,0.18) 0%,rgba(255,255,255,0.08) 80%,transparent 100%); z-index: 1; opacity: 0.5; transform: skewX(-13deg); transition: left 0.7s cubic-bezier(.55,.06,.42,.95); }
.floating-panel-btn:hover:before { left: 100%; transition: left 0.7s cubic-bezier(.47,1.64,.41,.8); }
.floating-panel-btn:hover { box-shadow: 0 8px 30px 0 #228cff70; background: linear-gradient(90deg, #42d3ff 0%, #ff6100 85%); transform: scale(1.025); }
@media (max-width: 700px) {
    .floating-panel { padding: 0 9vw; gap: 13px; border-radius: 11px; }
    .floating-panel-logo { display: none; }
    .floating-panel-btn { width: 100%; justify-content: center; padding: 12px 0; font-size: 1.01rem; border-radius: 8px; }
}
@media (max-width: 480px) {
    .floating-panel-container { bottom: 4px; width: calc(100% - 6px); margin: 0 3px; }
    .floating-panel { padding: 0 5vw; border-radius: 8px; }
}
.floating-panel-fix { width: 100%; height: 80px; background: #101f12; }.language-selector { position: relative; display: inline-block; font-family: system-ui, -apple-system, sans-serif; font-size: 16px; }
.language-selector-button { display: flex; align-items: center; padding: 8px 12px; background-color: #1E1E1E; border: 1px solid #444444; border-radius: 6px; cursor: pointer; }
.language-selector-button:hover { background-color: #333333; }
.language-flag { width: 24px; height: 16px; margin-right: 10px; background-size: contain; background-repeat: no-repeat; background-position: center; flex-shrink: 0; }
.language-code { font-weight: bold; width: 30px; color: #FFFFFF; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; }
.language-dropdown { position: absolute; top: 100%; left: 0; min-width: 200px; max-width: 300px; max-height: 300px; overflow-y: auto; background-color: #1E1E1E; border: 1px solid #444444; border-radius: 6px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); z-index: 1000; display: none; margin-top: 5px; }
.language-option { display: flex; align-items: center; padding: 12px 12px; cursor: pointer; white-space: nowrap; text-decoration: none; color: inherit; }
.language-option:hover { background-color: #333333; }
.language-name { margin-left: 8px; color: #CCCCCC; overflow: hidden; text-overflow: ellipsis; }
.language-dropdown::-webkit-scrollbar { width: 6px; }
.language-dropdown::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 3px; }
.language-dropdown::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); border-radius: 3px; transition: background 0.3s ease; }
.language-dropdown::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.3); }
.language-dropdown { scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05); }

/* === Theme overrides (append at end) === */
:root {
  --main-color: #2fb34f;
  --menu-color: #000000;
  --menu-text: #c3c3c3;
  --hover-color: #2fb34f;
  --hover-text: #000000;
}

html, body { background: #000000 !important; color: #c3c3c3 !important; }
a:hover, .footer-menu a:hover, .content-container a:hover { color: #2fb34f !important; }

::selection { background: #ceb273; color: #000000; }
::-moz-selection { background: #ceb273; color: #000000; }

/* Buttons: unified gradient */
.hero-btn,
.cta-btn,
.brand-links-btn,
.floating-panel-btn {
  background: linear-gradient(135deg, #2fb34f 0%, #09623b 100%) !important;
  color: #c3c3c3 !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(15, 15, 15, 0.6) !important;
}

.hero-btn:hover,
.cta-btn:hover,
.brand-row .brand-links-btn:hover,
.brand-row .brand-links-btn:focus,
.floating-panel-btn:hover {
  background: linear-gradient(135deg, #09623b 0%, #2fb34f 100%) !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(15, 15, 15, 0.7) !important;
}

/* Remove previous accent gradients where present */
.brand-table-head,
.floating-panel {
  background: linear-gradient(135deg, #09623b 0%, #2fb34f 100%) !important;
  color: #c3c3c3 !important;
  box-shadow: none !important;
}

/* Text blocks inherit new palette */
.hero-title, .hero-subtitle, .feed-block-title, .comment-block-title, .faq-q {
  color: #c3c3c3 !important;
}

/* Minor accents */
.comment-item { border-left-color: #2fb34f !important; }
.content-container th, .content-container td { border-color: #2fb34f !important; }

/* Hero */
.hero-section {
  background: #000000;
  max-width: var(--main-width);
  width: 100%;
  margin: 40px auto 40px auto;
  padding: 36px 20px 36px 20px;
  box-sizing: border-box;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  margin: 0 0 20px;
  color: #c3c3c3;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 48px);
}

.hero-image-container {
  width: 100%;
}

.hero-uploaded-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Fix layout: force single column in hero */
.hero-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.hero-title { width: 100%; text-align: center; }

.hero-image-container,
.hero-uploaded-image {
  width: 100% !important;
  height: auto !important;
}
/* === TOC palette overrides === */
.toc-toggle-btn{
  background: linear-gradient(135deg, #2fb34f 0%, #09623b 100%) !important;
  color: #c3c3c3 !important;
  box-shadow: 0 12px 26px rgba(0,0,0,.5) !important;
}
.toc-toggle-btn:focus-visible{
  box-shadow: 0 0 0 3px rgba(206,178,115,.45), 0 12px 28px rgba(0,0,0,.6) !important;
}
.toc-toggle-btn .toc-chevron{ color: #c3c3c3 !important; fill: currentColor; }

.toc-panel{
  background: #000000 !important;
  border-color: #09623b !important;
  color: #c3c3c3 !important;
  box-shadow: 0 1px 8px rgba(0,0,0,.6) !important;
}

.toc-title{ color: #c3c3c3 !important; }

.toc-content > ol > li:hover{ background: rgba(206,178,115,.12) !important; }
.toc-content > ol > li::marker{ color: #ceb273 !important; }

.toc-content > ol a{
  color: #c3c3c3 !important;
}
.toc-content > ol a:hover{
  color: #ceb273 !important;
  text-decoration-color: #ceb273 !important;
}

