:root {
--main-color: #ff00ff;
--h1-size: 2.4rem;
--h2-size: 1.8rem;
--h3-size: 1.5rem;
--main-width: 1200px;
--bg-color: #1a0a0a;
--text-color: #ffffff;
--accent-color1: #461206;
--accent-color2: #f40f30;
--accent-color3: #edee4a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; }
.hero-section { padding: 0px; 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: 1200px; 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 30px 0; }
.hero-title { font-size: var(--h1-size); line-height: 1.1; margin-bottom: 20px; position: relative; display: inline-block; color: rgb(255, 255, 255); font-weight: 700; }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 30px; position: relative; display: block; margin-top: 20px; color: #ffffff; }
.hero-btn { background: linear-gradient(135deg, rgb(255, 0, 255) 0%, rgb(255, 128, 0) 100%); color: rgb(255, 255, 255); border: 3px solid rgb(255, 204, 153); padding: 25px 46px; border-radius: 62px; font-size: 1.3rem; cursor: pointer; font-weight: bold; box-shadow: rgba(0, 0, 0, 0.5) 0px 8px 14px; transition: 0.3s; margin-top: 20px; position: relative; overflow: hidden; 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-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%; } }
    .content-wrapper { max-width: var(--main-width); margin: 0 auto; padding: 40px 20px; display: flex; gap: 40px; }
    .main-content { flex: 1; order: 1; }
    .sidebar { flex: 0 0 300px; order: 2; }
    .sidebar.sidebar-left { order: 1; }
    .main-content { order: 1; }
    .sidebar.sidebar-left ~ .main-content { order: 2; }
    h1 { font-size: var(--h1-size); color: var(--accent-color3); margin-bottom: 20px; }
    h2 { font-size: var(--h2-size); color: var(--accent-color2); margin-bottom: 15px; }
    h3 { font-size: var(--h3-size); color: var(--accent-color3); margin-bottom: 10px; }
    p { margin-bottom: 15px; }
    a { color: inherit; text-decoration: underline; }
    ul, ol { margin-bottom: 15px; padding-left: 20px; }
    li { margin-bottom: 5px; }
    table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
    th, td { border: 1px solid var(--accent-color1); padding: 8px; text-align: left; }
    th { background-color: var(--accent-color1); color: var(--text-color); }
    img { max-width: 100%; height: auto; border-radius: 5px; }
    .feed-item { margin-bottom: 20px; }
    .feed-item img { width: 100%; border-radius: 5px; }
    .feed-item h3 { margin-top: 10px; }
    .feed-item p { margin-top: 5px; }
    .comment { background-color: var(--accent-color1); padding: 15px; border-radius: 5px; margin-bottom: 15px; }
    .comment-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
    .faq-item { background-color: var(--accent-color2); padding: 15px; border-radius: 5px; margin-bottom: 15px; }
    .faq-question { font-weight: bold; margin-bottom: 10px; }
    footer { background-color: var(--accent-color1); padding: 20px; text-align: center; }
    .footer-menu { display: flex; justify-content: center; gap: 20px; margin-bottom: 10px; }
    .footer-menu a { text-decoration: none; }
    .template_invisible { display: none; }
@media (max-width: 768px) {
    .hero-container { flex-direction: column; text-align: center; }
    .content-wrapper { flex-direction: column; }
    .main-content, .sidebar { order: 1; }
    .sidebar { flex: 1; }
    .footer-menu { flex-direction: column; align-items: flex-start; gap: 10px; }
}
: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 { flex: 0 0 25%; margin-top: 20px; }
    .content-container > p, .content-container > ul > li, .content-container > ol > li { font-size: 1.15rem; letter-spacing: 0.5px; }
    .content-container > img, .content-container > p > img { max-width: 100%; border-radius: 10px; }
    .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; }
    .cta-button { text-decoration: none !important; }
    .toc-section { padding-top: 0px !important; }
    .random-link-block { margin: 30px 0; padding: 15px 20px; background: #1a0a0a; border-left: 5px solid #edee4a; box-shadow: 0 4px 15px rgba(237,238,74,0.2); }
    .random-link-text { color: #ffffff; font-size: 1.1rem; font-weight: bold; }
    .random-link-text a { color: #edee4a; text-decoration: underline; }
    .cta-button-container { text-align: center; margin: 40px 0; }
    .cta-button { display: inline-block; padding: 20px 50px; background: linear-gradient(135deg, #ff0000 0%, #ff8000 100%); color: #ffffff; text-decoration: none; border-radius: 60px; font-size: 1.4rem; font-weight: bold; box-shadow: 0 8px 25px rgba(255,0,0,0.4); transition: all 0.3s ease; position: relative; overflow: hidden; border: 3px solid #ffffff; }
    .cta-button:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 35px rgba(255,0,0,0.6); }
    .cta-button:active { transform: translateY(1px); }
    .brand-table { width: 100%; display: flex; flex-direction: column; background: #1a0a0a; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); margin: 30px 0; overflow: hidden; }
    .brand-table-header { display: flex; background: linear-gradient(135deg, #ff00ff 0%, #ff8000 100%); padding: 20px 15px; font-weight: bold; font-size: 1.1rem; }
    .brand-table-header-cell { flex: 1; text-align: center; color: white; text-transform: uppercase; letter-spacing: 1px; }
    .brand-table-row { display: flex; padding: 20px 15px; border-bottom: 1px solid #461206; background: #1a0a0a; transition: all 0.3s ease; align-items: center; }
    .brand-table-row:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255,0,255,0.2); background: #220d0d; }
    .brand-table-cell { flex: 1; text-align: center; font-size: 0.95rem; line-height: 1.3; display: flex; align-items: center; justify-content: center; }
    .brand-table-logo img { width: 150px; height: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
    .brand-table-rating { color: #edee4a; font-size: 1.2rem; }
    .brand-table-bonus { color: #ffffff; font-weight: 500; }
    .brand-table-proscons { text-align: left; justify-content: flex-start; color: #ffffff; }
    .brand-table-proscons span { display: block; line-height: 1.4; }
    .brand-table-button { padding: 12px 24px; background: linear-gradient(135deg, #00ff88 0%, #00ccff 100%); color: #000000; text-decoration: none; border-radius: 50px; font-weight: bold; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,255,136,0.3); display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; }
    .brand-table-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,255,136,0.5); }
@media (max-width: 768px) { .brand-table-header { display: none; } .brand-table-row { flex-direction: column; gap: 15px; padding: 25px 15px; text-align: center; } .brand-table-cell { width: 100%; justify-content: center; } .brand-table-proscons { justify-content: flex-start; text-align: left; } }
    .floating-panel { position: fixed; bottom: -100px; left: 0; width: calc(100% - 20px); margin: 0 10px 10px; height: 80px; background: linear-gradient(135deg, #ff00ff 0%, #ff8000 100%); display: flex; align-items: center; justify-content: space-between; padding: 0 30px; border-radius: 12px; box-shadow: 0 -5px 25px rgba(0,0,0,0.3); transition: bottom 0.4s ease; z-index: 1000; }
    .floating-panel-visible { bottom: 10px; }
    .floating-panel-logo { font-size: 1.6rem; font-weight: bold; color: #fff; text-decoration: none; }
    .floating-panel-button { padding: 15px 30px; background: #00ff88; color: #000000; text-decoration: none; border-radius: 50px; font-weight: bold; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
    .floating-panel-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
    .floating-panel-spacer { height: 80px; background: var(--accent-color1); }
@media (max-width: 768px) { .floating-panel-logo { display: none; } .floating-panel { justify-content: center; } }