:root {
--main-color: #ffab2e;
--h1-size: 2.4rem;
--h2-size: 1.8rem;
--h3-size: 1.5rem;
--main-width: 1200px;
--h1-color: #ffab2e;
--h2-color: #2727de;
--h3-color: #8d00fb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; background: #f5f5f5; }

.hero-section { padding: 60px 0; background: #0f0f10; position: relative; overflow: hidden; width: 100%; }
.hero-bg-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden; }
.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; }
.hero-content { flex: 1; }
.hero-title { font-size: var(--h1-size); line-height: 1.1; margin-bottom: 20px; position: relative; display: inline-block; color: var(--h1-color); font-weight: 700; text-transform: uppercase; }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 30px; position: relative; display: block; margin-top: 20px; color: #ffffff; }
.hero-subtitle span { content: ''; position: absolute; bottom: -8px; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, #ffab2e, transparent); }
.hero-btn { background: linear-gradient(135deg, #ffab2e 0%, #fdc11c 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 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); }
.hero-bonus { flex: 0 0 350px; position: relative; }
.hero-bonus > div:first-child { position: absolute; top: -25px; left: 50%; transform: translateX(-50%); z-index: 3; font-size: 2rem; color: #ffab2e; text-shadow: 0 0 10px #ffab2e, 0 0 20px #fdc11c; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3)); }
.hero-bonus > div:last-child { background: rgba(15, 15, 16, 0.7); backdrop-filter: blur(10px); border-radius: 20px; padding: 50px 25px 25px; border: 2px groove rgba(255, 171, 46, 0.329); position: relative; overflow: hidden; z-index: 2; text-align: center; }
.hero-bonus h3 { font-size: var(--h3-size); margin-top: 0; color: var(--h1-color); font-weight: 700; }
.hero-bonus button { background: linear-gradient(135deg, #ffab2e 0%, #fdc11c 100%); color: #fff; border: none; padding: 12px 30px; font-size: 1rem; border-radius: 6px; cursor: pointer; font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.3); transition: all 0.3s; margin-top: 15px; position: relative; overflow: hidden; width: 100%; }

.content-container { max-width: var(--main-width); margin: 40px auto; padding: 0 20px; }
.content-container h1 { font-size: var(--h1-size); color: var(--h1-color); margin: 30px 0 20px; }
.content-container h2 { font-size: var(--h2-size); color: var(--h2-color); margin: 25px 0 15px; }
.content-container h3 { font-size: var(--h3-size); color: var(--h3-color); margin: 20px 0 10px; }
.content-container p { margin-bottom: 20px; }
.content-container a { color: inherit; text-decoration: underline; }
.content-container img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
.content-container ul, .content-container ol { margin: 20px 0; padding-left: 30px; }
.content-container table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.content-container th, .content-container td { padding: 12px; text-align: left; border-bottom: 1px solid #ddd; }
.content-container th { background-color: #f2f2f2; }

.feed-container { margin: 40px 0; }
.feed-title { font-size: var(--h2-size); color: var(--h2-color); margin-bottom: 20px; }
.feed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.feed-item { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: transform 0.3s; }
.feed-item:hover { transform: translateY(-5px); }
.feed-item a { text-decoration: none; color: inherit; }
.feed-item-img { width: 100%; height: 200px; object-fit: cover; }
.feed-item-content { padding: 20px; }
.feed-item h3 { font-size: var(--h3-size); margin-bottom: 10px; color: var(--h3-color); }
.feed-item p { color: #666; }

.comments-container { margin: 40px 0; }
.comments-title { font-size: var(--h2-size); color: var(--h2-color); margin-bottom: 20px; }
.comment-list { display: flex; flex-direction: column; gap: 20px; }
.comment-item { background: linear-gradient(135deg, #2727de 0%, #8d00fb 100%); padding: 20px; border-radius: 8px; color: white; }
.comment-header { display: flex; justify-content: space-between; margin-bottom: 10px; font-weight: bold; }
.comment-text { line-height: 1.5; }

.faq-container { margin: 40px 0; }
.faq-title { font-size: var(--h2-size); color: var(--h2-color); margin-bottom: 20px; }
.faq-list { display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: #fff; border: 2px solid var(--main-color); border-radius: 8px; padding: 20px; }
.faq-question { font-weight: bold; color: var(--main-color); margin-bottom: 10px; }
.faq-answer { color: #666; }

.template_invisible { display: none; }

footer { background: #0f0f10; color: #fff; padding: 40px 0; margin-top: 60px; }
.footer-container { max-width: var(--main-width); margin: 0 auto; padding: 0 20px; }
.footer-menu { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.footer-menu a { color: #fff; text-decoration: none; transition: color 0.3s; }
.footer-menu a:hover { color: var(--main-color); }
.copyright { text-align: center; color: #aaa; }

@media (max-width: 768px) {
    .hero-container { flex-direction: column; }
    .hero-bonus { flex: 1 1 100%; margin-top: 40px; }
    .footer-menu { flex-direction: column; align-items: flex-start; gap: 10px; }
    .feed-grid { grid-template-columns: 1fr; }
}

@keyframes hero-shine { 100% { left: 100%; } }
@keyframes hero-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

    .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; }
    .hero-title-bounce { animation: hero-bounce 2s infinite; }
    :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 { margin: 30px 0; padding: 15px 20px; background: #fff; border-left: 5px solid #ff3366; box-shadow: 0 2px 10px rgba(0,0,0,0.05); display: inline-block; }
.random-link a { color: #ff3366; text-decoration: underline; font-weight: bold; font-size: 1.1rem; }
.random-link a:hover { text-decoration: none; }
.cta-button { display: block; margin: 40px auto; padding: 18px 40px; background: linear-gradient(135deg, #00c853 0%, #00e676 100%); color: white; border: none; border-radius: 8px; font-size: 1.2rem; font-weight: bold; text-align: center; text-decoration: none; box-shadow: 0 5px 15px rgba(0,200,83,0.3); transition: all 0.3s; position: relative; overflow: hidden; max-width: 300px; }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,200,83,0.4); }
.cta-button:active { transform: translateY(1px); }
.cta-button::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transition: none; }
.cta-button:hover::after { left: 100%; transition: all 0.5s; }
.brand-table { width: 100%; margin: 30px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-radius: 8px; overflow: hidden; background: #fff; }
.brand-table-header { display: flex; background: linear-gradient(135deg, #ffab2e 0%, #fdc11c 100%); color: #fff; font-weight: bold; }
.brand-table-header-cell { padding: 15px; text-align: center; flex: 1; display: flex; align-items: center; justify-content: center; }
.brand-table-row { display: flex; border-bottom: 1px solid #eee; transition: all 0.3s; }
.brand-table-row:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.brand-table-cell { padding: 15px; flex: 1; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 0.9rem; line-height: 1.3; }
.brand-table-cell.casino { justify-content: flex-start; }
.brand-table-cell.pros-cons { justify-content: flex-start; text-align: left; }
.brand-table-logo { width: 150px; height: auto; object-fit: contain; }
.brand-rating { color: #ffab2e; font-size: 1.2rem; }
.brand-button { background: #ff3366; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; font-weight: bold; box-shadow: 0 4px 8px rgba(255,51,102,0.3); }
.brand-button:hover { background: #ff1a53; transform: translateY(-2px); box-shadow: 0 6px 12px rgba(255,51,102,0.4); }
.brand-button i { font-size: 1.1rem; }
@media (max-width: 768px) {
    .brand-table-header, .brand-table-row { flex-direction: column; }
    .brand-table-header-cell, .brand-table-cell { width: 100%; text-align: center; justify-content: center; padding: 10px; }
    .brand-table-cell.pros-cons { text-align: left; justify-content: flex-start; }
    .brand-table-logo { margin: 0 auto; }
}
.floating-panel { position: fixed; bottom: -100px; left: 0; right: 0; height: 80px; background: linear-gradient(135deg, #8d00fb 0%, #2727de 100%); display: flex; align-items: center; justify-content: space-between; padding: 0 20px; margin: 0 10px 10px; border-radius: 8px; box-shadow: 0 -5px 20px rgba(0,0,0,0.2); transition: bottom 0.3s; z-index: 1000; }
.floating-panel.visible { bottom: 10px; }
.floating-panel-brand { color: white; font-size: 1.5rem; font-weight: bold; text-decoration: none; }
.floating-panel-button { background: linear-gradient(135deg, #ffab2e 0%, #fdc11c 100%); color: white; padding: 12px 30px; border-radius: 6px; font-weight: bold; text-decoration: none; transition: all 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.floating-panel-button:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0,0,0,0.3); }
@media (max-width: 768px) {
    .floating-panel-brand { display: none; }
    .floating-panel { justify-content: center; }
    }.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); }