:root { --main-color: #76f25a; --h1-color: #ffffff; --h2-color: #69e64c; --h3-color: #60f340; --main-width: 1120px; --h1-size: 2.4rem; --h2-size: 1.8rem; --h3-size: 1.5rem; }
html, body { height: 100%; padding: 0; margin: 0; background: #081046; font-family: 'Segoe UI', 'Arial', sans-serif; }
body { color: #e8f9e0; font-size: 1.1rem; margin: 0; background: #081046; }
.hero-section { padding: 0; background: #0b3003; position: relative; overflow: hidden; width: 100%; }
.hero-bg-container { width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 0; }
.hero-section .hero-bg-container svg { min-height: 380px; min-width: 100vw; }
.hero-container { max-width: var(--main-width); margin: 0 auto; padding: 72px 20px 48px; display: flex; align-items: center; gap: 48px; position: relative; z-index: 2; flex-direction: row; }
.hero-content { flex: 1; min-width: 0; }
.hero-title { font-size: var(--h1-size); line-height: 1.1; margin-bottom: 18px; font-weight: 700; position: relative; color: var(--h1-color); letter-spacing: 1px; }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 32px; margin-top: 18px; color: #ffffff; display: block; position: relative; }
.hero-btn { background: linear-gradient(135deg, #76f25a 0%, #69e64c 100%); color: #fff; border: none; padding: 15px 35px; font-size: 1.1rem; border-radius: 6px; cursor: pointer; font-weight: bold; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: all 0.3s; margin-top: 20px; position: relative; overflow: hidden; }
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.hero-btn .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); z-index: 1; }
.hero-btn:hover .hero-btn-shine { animation: hero-shine 1s; }
@keyframes hero-shine { 100% { left: 100%; } }
    .hero-title-float { animation: hero-float 3s ease-in-out infinite; }
@keyframes hero-float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
    .hero-bonus { flex: 0 0 340px; min-width: 260px; position: relative; }
    .hero-bonus-badge { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); width: 80px; height: 80px; background: linear-gradient(135deg, #76f25a 0%, #69e64c 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 3; box-shadow: 0 5px 15px rgba(0,0,0,0.3); border: 2px ridge #ffffff; }
    .hero-bonus-badge span { font-size: 1.5rem; font-weight: bold; color: white; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
    .hero-bonus-inner { background: rgba(11,48,3,0.7); backdrop-filter: blur(10px); border-radius: 20px; padding: 62px 28px 28px; border: 2px ridge rgba(118,242,90,0.31); position: relative; overflow: hidden; z-index: 2; text-align: center; }
    .hero-bonus-inner h3 { font-size: var(--h3-size); margin-top: 0; color: var(--h3-color); font-weight: 700; margin-bottom: 24px; letter-spacing: 1px; }
    .hero-bonus .hero-btn { margin-top: 6px; }
@media (max-width: 900px) {
    .hero-container { flex-direction: column; gap: 32px; padding: 56px 12px 32px; }
    .hero-bonus { align-self: stretch; width: 100%; min-width: 0; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 600px) {
    .hero-section .hero-bg-container svg { min-height: 310px; }
    .hero-container { flex-direction: column; gap: 22px; padding: 36px 5vw 22px; }
    .hero-title { font-size: 1.5rem; }
    .hero-bonus { min-width: 0; max-width: 96vw; }
    .hero-bonus-inner { padding: 52px 11vw 22px; }
}
.content-container { max-width: var(--main-width); margin: 0 auto; padding: 46px 24px 46px 24px; box-sizing: border-box; }
@media (max-width: 700px) {
    .content-container { padding: 28px 5vw 32px 5vw; }
}
/* Typography */
.content-container h1, .content-container h2, .content-container h3 { margin-top: 1.4em; margin-bottom: .8em; }
.content-container h1 { font-size: var(--h1-size); color: var(--h1-color); font-weight: 800; letter-spacing: 1px; }
.content-container h2 { font-size: var(--h2-size); color: var(--h2-color); font-weight: 700; letter-spacing: .5px; }
.content-container h3 { font-size: var(--h3-size); color: var(--h3-color); font-weight: 600; }
.content-container p { margin: 0 0 1.15em 0; line-height: 1.65; color: #e8f9e0; }
.content-container ul, .content-container ol { margin: 1.2em 0 1.2em 1.5em; }
.content-container li { margin-bottom: 0.5em; }
.content-container a { color: inherit; text-decoration: underline; transition: color 0.18s; }
.content-container a:hover { color: var(--main-color); }
.content-container table { width: 100%; max-width: 100%; border-collapse: collapse; background: rgba(16,35,60,0.97); margin-bottom: 1.6em; font-size: 1.04rem; border-radius: 8px; overflow: hidden; }
.content-container th, .content-container td { padding: 12px 14px; border-bottom: 1px solid #0087b4; text-align: left; }
.content-container th { background: #004a93; color: #76f25a; font-weight: 700; }
.content-container tr:last-child td { border-bottom: none; }
.content-container img { max-width: 100%; display: block; margin: 0.7em 0 1.5em 0; border-radius: 11px; }
.article-feed { margin-top: 48px; margin-bottom: 32px; }
.article-feed-title { font-size: 1.5rem; color: #60f340; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 18px; margin-top: 0; }
.article-feed-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
@media (max-width: 900px) { .article-feed-list { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; } }
@media (max-width: 600px) { .article-feed-list { grid-template-columns: 1fr; gap: 20px 0; } }
    .feed-article { background: #0b3003; border-radius: 12px; overflow: hidden; box-shadow: 0 3px 13px rgba(8,16,70,0.09); transition: transform 0.14s, box-shadow 0.14s; display: flex; flex-direction: column; height: 100%; }
    .feed-article:hover { transform: translateY(-5px) scale(1.025); box-shadow: 0 7px 32px rgba(118,242,90,0.08); }
    .feed-article-image-link { display: block; width: 100%; }
    .feed-article-image { width: 100%; height: 160px; object-fit: cover; }
    .feed-article-body { padding: 19px 16px 17px 16px; display: flex; flex-direction: column; flex: 1 1 auto; }
    .feed-article-title { color: #69e64c; font-size: 1.13rem; font-weight: 700; margin-bottom: 0.6em; margin-top: 0; letter-spacing: .5px; line-height: 1.25; text-decoration: underline; }
    .feed-article-title a { color: inherit; text-decoration: inherit; }
    .feed-article-description { color: #d1ffd8; font-size: 1.01rem; }
    /* Comments */
    .comments-block { margin-top: 48px; margin-bottom: 48px; background: #0087b4; border-radius: 15px; padding: 32px 22px; box-shadow: 0 3px 19px rgba(6,50,110,0.13); }
    .comments-title { font-size: 1.4rem; color: #fff; font-weight: 800; margin-bottom: 20px; letter-spacing: .5px; text-shadow: 0 1px 2px rgba(0,0,0,0.10); }
    .comment-item { background: #0b3003; border-radius: 11px; margin-bottom: 18px; padding: 17px 18px 15px 18px; box-shadow: 0 1px 8px rgba(118,242,90,0.11); }
    .comment-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; }
    .comment-name { color: #76f25a; font-weight: 700; font-size: 1rem; }
    .comment-date { color: #bbffbd; font-size: 0.98rem; font-weight: 500; }
    .comment-text { color: #f2fff6; font-size: 1.04rem; line-height: 1.6; word-break: break-word; }
    /* FAQ */
    .faq-block { margin: 54px 0 54px 0; background: linear-gradient(105deg, #69e64c 30%, #60f340 100%); border-radius: 18px; padding: 36px 22px; box-shadow: 0 3px 24px rgba(118,242,90,0.17); }
    .faq-title { font-size: 1.4rem; color: #081046; font-weight: 800; margin-bottom: 20px; letter-spacing: .5px; text-shadow: 0 2px 4px rgba(96,243,64,0.13); }
    .faq-item { background: #fff; border-radius: 11px; margin-bottom: 18px; padding: 19px 18px 15px 18px; box-shadow: 0 1px 12px rgba(8,16,70,0.09); }
    .faq-question { color: #0087b4; font-weight: 700; font-size: 1.08rem; margin-bottom: 7px; }
    .faq-answer { color: #093109; font-size: 1.05rem; line-height: 1.6; }
    /* Footer */
    footer { background: #004a93; padding: 38px 0 0 0; color: #e8f9e0; margin-top: 0; width: 100%; }
    .footer-content { max-width: var(--main-width); margin: 0 auto; padding: 0 24px 0 24px; }
    .footer-menu { display: flex; justify-content: center; align-items: flex-start; gap: 30px; flex-wrap: wrap; margin-bottom: 24px; }
    .footer-menu a { color: #e8f9e0; text-decoration: none; font-weight: 600; padding: 5px 0; transition: color 0.18s; position: relative; }
    .footer-menu a:after { content: ""; display: block; margin-top: 1.5px; height: 2px; background: var(--main-color); width: 0; transition: width 0.18s; }
    .footer-menu a:hover:after { width: 100%; }
    .footer-menu a:hover { color: var(--main-color); }
    .footer-copyright { text-align: center; margin: 14px 0 0 0; font-size: 1.08rem; color: #b9fbc0; }
@media (max-width: 600px) {
    .footer-menu { flex-direction: column; align-items: flex-start; gap: 7px; margin-bottom: 16px; }
}
@media (max-width: 460px) {
    .footer-content { padding-left: 5vw; padding-right: 5vw; }
    .footer-copyright { font-size: .96rem; }
}
/* Hide invisible template */
.template_invisible { display: none; }
: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: 12px 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; }
.logo { order: 1; font-size: 1.8rem; font-weight: bold; color: var(--hover-color); text-decoration: none; margin-right: auto; }
.header-right { order: 3; display: inline-block; margin-left: 20px; }
.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; }
}

.random-link-block { background: #fff; color: #1a1628; font-weight: bold; font-size: 1.13rem; border-radius: 13px; padding: 19px 20px 17px 23px; margin: 38px 0 26px 0; box-shadow: 0 2px 12px #fe34565b; display: block; border-left: 7px solid #fe3456; }
.random-link-block a { color: #fe3456; text-decoration: underline; font-weight: 900; font-size: 1.1em; transition: color 0.1s; }
.random-link-block a:hover { color: #ff9c15; }
@media (max-width: 600px) { .random-link-block { padding: 12px 6vw 13px 12px; font-size: 1.02rem; } }
    .cta-center-btn { display: flex; justify-content: center; align-items: center; margin: 44px auto 44px auto; }
    .cta-main-btn { font-size: 1.23rem; font-weight: 800; letter-spacing: 1.3px; color: #fff; padding: 20px 54px 20px 42px; background: linear-gradient(92deg,#ff1eaa 5%,#fffb13 94%); border: none; border-radius: 17px; box-shadow: 0 6px 40px #ff1eaa5b, 0 2px 10px #fffb1327; cursor: pointer; transition: background 0.25s, transform 0.17s, box-shadow 0.19s; position: relative; min-width: 230px; }
    .cta-main-btn:after { content: "🎁"; position: absolute; right: 28px; top: 50%; transform: translateY(-52%); font-size: 1.5em; }
    .cta-main-btn:hover { background: linear-gradient(92deg,#fffb13 5%,#ff1eaa 94%); color: #fff; transform: scale(1.06) translateY(-3px); box-shadow: 0 10px 56px #fffb137a,0 2px 12px #ff1eaa29; }
@media (max-width: 600px) { .cta-main-btn { font-size: 1.07rem; padding: 14px 27px 14px 18px; min-width: 132px; border-radius: 9px; } }
    .brand-table-block { width: 100%; max-width: 100%; margin: 52px 0 36px 0; border-radius: 22px; box-shadow: 0 7px 32px 0 rgba(96,243,64,0.17), 0 2px 8px 0 rgba(8,16,70,0.14); overflow: hidden; background: #142064; }
    .brand-table-header { display: flex; align-items: stretch; width: 100%; background: linear-gradient(90deg,#76f25a 0%,#60f340 100%); color: #081046; font-weight: 700; font-size: 1.13rem; letter-spacing: 0.5px; text-transform: uppercase; min-height: 62px; }
    .brand-table-header-cell { flex: 1 1 0; display: flex; align-items: center; justify-content: center; padding: 0 8px; font-size: 1.09rem; letter-spacing: .5px; }
    .brand-table-header-cell:first-child { flex: 1.4 1 0; min-width: 154px; }
    .brand-table-header-cell:last-child { flex: 1.1 1 0; }
    .brand-table-rows { width: 100%; }
    .brand-table-row { display: flex; align-items: stretch; background: #223081; transition: box-shadow 0.21s, transform 0.2s; border-bottom: 2px solid #60f340; position: relative; font-size: 0.98rem; }
    .brand-table-row:last-child { border-bottom: none; }
    .brand-table-row:hover { box-shadow: 0 4px 36px 0 #76f25a3a,0 2px 7px 0 #0087b422; transform: scale(1.017); z-index: 1; }
    .brand-table-cell { flex: 1 1 0; display: flex; align-items: center; justify-content: center; padding: 18px 8px; min-height: 84px; box-sizing: border-box; font-size: 0.96rem; line-height: 1.32; }
    .brand-table-cell-logo { flex: 1.4 1 0; min-width: 154px; justify-content: center; }
    .brand-table-cell-logo img { width: 144px; max-width: 98%; height: auto; display: block; border-radius: 10px; box-shadow: 0 4px 14px #08104633; background: #f9fff7; }
    .brand-table-cell-rating { color: #ffe24d; font-size: 1.15rem; letter-spacing: 1.2px; }
    .brand-table-cell-bonus { color: #ffffff; background: linear-gradient(90deg,#69e64c 60%,#60f340 100%); border-radius: 13px; padding: 7px 14px; font-weight: 600; font-size: 0.99rem; margin: 0 2px; box-shadow: 0 2px 7px #60f34029; }
    .brand-table-cell-pros { flex-direction: column; align-items: flex-start; justify-content: center; color: #ffffff; font-size: 0.95rem; line-height: 1.23; padding-left: 16px; }
    .brand-table-cell-pros span { display: block; text-align: left; }
    .brand-table-cell-links { flex: 1.1 1 0; }
    .brand-table-link-btn { display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(90deg,#fe3456 8%,#ff9c15 97%); color: #fff; font-weight: bold; font-size: 1.06rem; padding: 14px 32px 14px 22px; border: none; border-radius: 8px; cursor: pointer; box-shadow: 0 3px 16px #ff9c152d; transition: transform 0.18s, box-shadow 0.19s, background 0.18s; gap: 11px; position: relative; outline: none; min-width: 155px; }
    .brand-table-link-btn svg { margin-left: 4px; width: 20px; height: 20px; fill: #fff; }
    .brand-table-link-btn:hover { background: linear-gradient(90deg,#ff9c15 8%,#fe3456 97%); transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 26px #fe345678; }
@media (max-width: 900px) {
    .brand-table-block { border-radius: 14px; }
    .brand-table-header { font-size: 1.02rem; min-height: 52px; }
    .brand-table-row { font-size: 0.95rem; }
    .brand-table-cell-logo img { width: 120px; }
    .brand-table-link-btn { padding: 11px 18px 11px 13px; font-size: 0.98rem; min-width: 118px; }
}
@media (max-width: 650px) {
    .brand-table-header { display: none; }
    .brand-table-row { flex-direction: column; align-items: stretch; border-bottom: 11px solid #081046; margin-bottom: 19px; border-radius: 15px; background: #2639a6; box-shadow: 0 2px 16px #0810462a; }
    .brand-table-cell { justify-content: center; padding: 12px 10px; min-height: 0; }
    .brand-table-cell-logo { justify-content: center; }
    .brand-table-cell-pros { align-items: flex-start; justify-content: center; padding-left: 11px; }
    .brand-table-cell-links { justify-content: center; }
}
@media (max-width: 480px) {
    .brand-table-block { margin-left: -5vw; margin-right: -5vw; border-radius: 7px; }
    .brand-table-row { border-radius: 10px; }
    .brand-table-cell-logo img { width: 92px; }
    .brand-table-link-btn { font-size: 0.89rem; padding: 9px 9px 9px 8px; min-width: 85px; }
}
.brand-table-cell-pros { font-size: 0.93rem; }
.brand-table-cell-pros br { line-height: 1.22; }
.brand-table-row { font-size: 0.92rem; }
.brand-table-block { font-size: 0.97rem; }
.brand-float-panel { position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 99999; height: 80px; background: linear-gradient(91deg,#0f194d 8%,#09280a 100%); box-shadow: 0 8px 32px #60f34080; border-radius: 22px; display: flex; align-items: center; justify-content: space-between; transition: transform 0.38s cubic-bezier(.77,.11,.28,1.09),opacity 0.23s; transform: translateY(110px); opacity: 0; }
.brand-float-panel.visible { transform: translateY(0); opacity: 1; }
.brand-float-panel-logo { flex: 0 0 auto; margin-left: 29px; margin-right: 20px; display: flex; align-items: center; }
.brand-float-panel-logo a { display: block; font-size: 2.1rem; text-decoration: none; font-weight: 800; color: #76f25a; }
.brand-float-panel-logo img { height: 54px; width: auto; border-radius: 13px; box-shadow: 0 3px 9px #60f34034; display: block; }
.brand-float-panel-btn { flex: 0 0 auto; margin-right: 34px; }
.brand-float-panel-btn-link { display: inline-flex; align-items: center; background: linear-gradient(92deg,#fe3456 7%,#ff9c15 96%); color: #fff; font-weight: 800; font-size: 1.13rem; letter-spacing: 1px; padding: 16px 38px 16px 23px; border-radius: 14px; box-shadow: 0 3px 18px #fe34564c,0 2px 9px #ff9c1542; text-decoration: none; border: none; transition: background 0.17s,transform 0.15s,box-shadow 0.19s; position: relative; }
.brand-float-panel-btn-link:after { content: "🚀"; position: absolute; right: 22px; top: 50%; transform: translateY(-53%); font-size: 1.25em; }
.brand-float-panel-btn-link:hover { background: linear-gradient(92deg,#ff9c15 7%,#fe3456 96%); color: #fff; transform: scale(1.07) translateY(-3px); box-shadow: 0 10px 36px #fe34568c; }
@media (max-width: 700px) {
    .brand-float-panel { height: 70px; border-radius: 13px; }
    .brand-float-panel-logo { margin-left: 13px; margin-right: 9px; }
    .brand-float-panel-btn { margin-right: 10px; }
    .brand-float-panel-btn-link { font-size: 1.02rem; padding: 10px 19px 10px 10px; border-radius: 8px; }
}
@media (max-width: 500px) {
    .brand-float-panel { left: 3vw; right: 3vw; bottom: 5px; height: 57px; border-radius: 7px; }
    .brand-float-panel-logo { display: none !important; }
    .brand-float-panel-btn { margin-right: 0; width: 100%; display: flex; justify-content: center; }
    .brand-float-panel-btn-link { margin: 0 auto; font-size: 0.93rem; min-width: 112px; border-radius: 6px; padding: 7px 8vw 7px 12px; }
}
.brand-float-panel-placeholder { width: 100%; height: 80px; background: #004a93; display: block; }
@media (max-width: 700px) { .brand-float-panel-placeholder { height: 70px; } }
@media (max-width: 500px) { .brand-float-panel-placeholder { height: 57px; } }.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); }