:root {
--main-color: #5a5af2;
--h1-size: 2.4rem;
--h2-size: 1.8rem;
--h3-size: 1.5rem;
--main-width: 1200px;
--accent-1: #4040d9;
--accent-2: #7e0ac5;
--dark-bg: #0f0f1a;
--text-light: #f0f0f0;
--text-muted: #b0b0c0;
--border-color: #2a2a3a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
background-color: var(--dark-bg);
color: var(--text-light);
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: underline; }
a:hover { color: var(--main-color); }
.container {
width: 100%;
max-width: var(--main-width);
margin: 0 auto;
padding: 0 20px;
}
.hero-section {
padding: 0px;
position: relative;
overflow: hidden;
width: 100%;
background: linear-gradient(135deg, #1a1a2e 0%, #0c0c1c 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%;
min-height: 200px;
}
.hero-content {
flex: 1;
margin: 50px 0 50px 0;
}
.hero-title {
font-size: var(--h1-size);
line-height: 1.1;
margin-bottom: 20px;
font-weight: 700;
position: relative;
display: inline-block;
color: #ffffff;
font-weight: 700;
}
.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, #5a5af2, transparent);
}
.hero-btn {
background: linear-gradient(135deg, rgb(90, 90, 242) 0%, rgb(76, 76, 230) 100%);
color: rgb(255, 255, 255);
border: medium;
padding: 18px 42px;
border-radius: 42px;
font-size: 1.4rem;
cursor: pointer;
font-weight: bold;
box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 15px;
transition: 0.3s;
margin-top: 20px;
position: relative;
overflow: hidden;
z-index: 2;
display: inline-block;
}
.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%; }
}
.hero-bonus2 {
flex: 0 0 636px;
display: flex;
align-items: center;
justify-content: center;
height: 346px;
position: relative;
overflow: hidden;
border-left: medium;
border-right: medium;
}
.hero-image-container {
position: relative;
width: 491px;
height: 269px;
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: 3px solid rgb(118, 176, 216);
box-sizing: border-box;
filter: drop-shadow(rgba(0, 0, 0, 0.8) 0px 10px 15px);
border-radius: 29px;
}
.content-wrapper {
padding: 60px 0;
flex-grow: 1;
}
.content-block {
display: flex;
gap: 40px;
flex-wrap: wrap;
}
.main-content {
flex: 1;
order: 1;
min-width: 0;
}
.sidebar {
flex: 0 0 300px;
order: 2;
}
.sidebar.sidebar-left {
order: 0;
}
h1, h2, h3, h4 {
margin-bottom: 1rem;
line-height: 1.2;
}
h1 { font-size: var(--h1-size); color: var(--main-color); }
h2 { font-size: var(--h2-size); color: var(--accent-2); margin-top: 2rem; }
h3 { font-size: var(--h3-size); color: var(--accent-1); }
p { margin-bottom: 1.5rem; }
ul, ol {
margin-bottom: 1.5rem;
padding-left: 2rem;
}
li { margin-bottom: 0.5rem; }
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 2rem;
border: 1px solid var(--border-color);
}
th, td {
padding: 12px 15px;
text-align: left;
border-bottom: 1px solid var(--border-color);
}
th {
background-color: rgba(64, 64, 217, 0.1);
color: var(--accent-1);
font-weight: 700;
}
tr:hover {
background-color: rgba(255, 255, 255, 0.03);
}
.content-image {
border-radius: 10px;
margin: 2rem auto;
box-shadow: 0 10px 25px rgba(0,0,0,0.5);
border: 2px solid var(--border-color);
}
.feed-block { margin-bottom: 3rem; }
.feed-title {
font-size: var(--h2-size);
color: var(--main-color);
margin-bottom: 1.5rem;
padding-bottom: 10px;
border-bottom: 2px solid var(--border-color);
}
.feed-item {
margin-bottom: 2rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid var(--border-color);
}
.feed-item:last-child { border-bottom: none; }
.feed-item-img {
border-radius: 8px;
overflow: hidden;
margin-bottom: 1rem;
display: block;
}
.feed-item-img img {
width: 100%;
height: 180px;
object-fit: cover;
transition: transform 0.3s;
}
.feed-item-img:hover img { transform: scale(1.05); }
.feed-item-title {
font-size: 1.2rem;
margin-bottom: 0.5rem;
display: block;
color: var(--text-light);
text-decoration: none;
}
.feed-item-title:hover { color: var(--main-color); }
.feed-item-desc {
color: var(--text-muted);
font-size: 0.95rem;
}
.comments-block { margin: 3rem 0; }
.comments-title {
font-size: var(--h2-size);
color: var(--accent-2);
margin-bottom: 1.5rem;
position: relative;
padding-left: 15px;
}
.comments-title::before {
content: '';
position: absolute;
left: 0;
top: 5px;
bottom: 5px;
width: 4px;
background: linear-gradient(to bottom, var(--accent-2), var(--main-color));
border-radius: 2px;
}
.comment-item {
background: rgba(126, 10, 197, 0.08);
border-left: 4px solid var(--accent-2);
padding: 1.5rem;
margin-bottom: 1.5rem;
border-radius: 0 8px 8px 0;
}
.comment-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.8rem;
flex-wrap: wrap;
}
.comment-name {
font-weight: bold;
color: #e0aaff;
}
.comment-date {
color: var(--text-muted);
font-size: 0.9rem;
}
.comment-text {
color: var(--text-light);
line-height: 1.5;
}
.faq-block { margin: 3rem 0; }
.faq-title {
font-size: var(--h2-size);
color: #ff9800;
margin-bottom: 1.5rem;
text-align: center;
position: relative;
}
.faq-title::after {
content: '';
display: block;
width: 80px;
height: 3px;
background: linear-gradient(to right, transparent, #ff9800, transparent);
margin: 10px auto;
}
.faq-item {
background: rgba(255, 152, 0, 0.05);
border: 1px solid rgba(255, 152, 0, 0.3);
border-radius: 10px;
padding: 1.5rem;
margin-bottom: 1rem;
transition: all 0.3s;
}
.faq-item:hover {
border-color: #ff9800;
box-shadow: 0 5px 15px rgba(255, 152, 0, 0.2);
}
.faq-question {
font-weight: bold;
color: #ffb74d;
margin-bottom: 0.8rem;
font-size: 1.1rem;
display: flex;
align-items: center;
}
.faq-question::before {
content: 'Q:';
margin-right: 10px;
color: #ff9800;
font-weight: 900;
}
.faq-answer {
color: var(--text-light);
padding-left: 2rem;
position: relative;
}
.faq-answer::before {
content: 'A:';
position: absolute;
left: 0;
color: #4caf50;
font-weight: 900;
}
.template_invisible {
display: none;
}
footer {
background-color: #050510;
color: var(--text-muted);
padding: 3rem 0 2rem;
margin-top: auto;
border-top: 1px solid var(--border-color);
}
.footer-container {
max-width: var(--main-width);
margin: 0 auto;
padding: 0 20px;
}
.footer-menu {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 2rem;
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--border-color);
}
.footer-menu a {
color: var(--text-muted);
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
padding: 5px 0;
position: relative;
}
.footer-menu a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--main-color);
transition: width 0.3s;
}
.footer-menu a:hover {
color: var(--main-color);
}
.footer-menu a:hover::after {
width: 100%;
}
.copyright {
text-align: center;
font-size: 0.9rem;
color: #666;
}
@media (max-width: 1024px) {
    .hero-container { flex-direction: column; text-align: center; gap: 30px; }
    .hero-content { margin: 40px 0; }
    .hero-bonus2 { flex: 0 0 auto; width: 100%; max-width: 636px; height: auto; min-height: 250px; }
    .hero-image-container { width: 100%; max-width: 491px; height: auto; }
    .content-block { flex-direction: column; }
    .main-content, .sidebar { flex: 1 1 100%; }
    .sidebar { order: 2; }
    .sidebar.sidebar-left { order: 2; }
}
@media (max-width: 768px) {
    :root { --h1-size: 2rem; --h2-size: 1.6rem; --h3-size: 1.3rem; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-btn { padding: 15px 30px; font-size: 1.2rem; }
    .container, .hero-container { padding: 0 15px; }
    .content-wrapper { padding: 40px 0; }
    .footer-menu { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .footer-menu a { padding-left: 0; }
    table { display: block; overflow-x: auto; }
}
: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; }
    .sidebar a { text-decoration: none; }
    .sidebar .feed-item { margin-bottom: 50px; }
    .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; }
    .content-container > table[border="1"] { border-spacing: 0 !important; border-collapse: collapse !important; border: 1px solid #C0C0C0 !important; }
    .content-container > table[border="1"] th { border: none !important; border: 1px solid #C0C0C0 !important; padding: 12px !important; text-align: left !important; }
    .content-container > table[border="1"] td { border: none !important; border: 1px solid #C0C0C0 !important; padding: 12px !important; text-align: left !important; }
    .main-content > table[border="1"] { border-spacing: 0 !important; border-collapse: collapse !important; border: 1px solid #C0C0C0 !important; }
    .main-content > table[border="1"] th { border: none !important; border: 1px solid #C0C0C0 !important; padding: 12px !important; text-align: left !important; }
    .main-content > table[border="1"] td { border: none !important; border: 1px solid #C0C0C0 !important; padding: 12px !important; text-align: left !important; }
    main > p, main > ul > li, main > ol > li { font-size: 1.15rem; letter-spacing: 0.5px; }
    main > img, main > p > img { max-width: 100%; border-radius: 10px; }
    main > table[border="1"] { border-spacing: 0 !important; border-collapse: collapse !important; border: 1px solid #C0C0C0 !important; }
    main > table[border="1"] th { border: none !important; border: 1px solid #C0C0C0 !important; padding: 12px !important; text-align: left !important; }
    main > table[border="1"] td { border: none !important; border: 1px solid #C0C0C0 !important; padding: 12px !important; text-align: left !important; }
    .cta-button { text-decoration: none !important; }
    .toc-section { padding-top: 0px !important; }
    .random-link-block { margin: 40px 0; padding: 15px 20px; background: linear-gradient(90deg, rgba(126, 10, 197, 0.15) 0%, transparent 100%); border-left: 6px solid var(--accent-2); border-radius: 0 8px 8px 0; }
    .random-link-text { font-size: 1.1rem; color: var(--text-light); }
    .random-link-text a { color: #e0aaff; text-decoration: underline; font-weight: bold; }
    .random-link-text a:hover { color: #fff; text-decoration: none; }
    .cta-button-wrapper { text-align: center; margin: 50px 0; }
    .cta-button-main { display: inline-block; background: linear-gradient(135deg, #00D2FF 0%, #3A7BD5 100%); color: #000; text-decoration: none; padding: 22px 50px; border-radius: 60px; font-size: 1.5rem; font-weight: 900; letter-spacing: 1px; box-shadow: 0 10px 30px rgba(0, 210, 255, 0.5); transition: all 0.4s; position: relative; overflow: hidden; border: 3px solid #fff; }
    .cta-button-main:hover { transform: scale(1.05) translateY(-5px); box-shadow: 0 15px 40px rgba(0, 210, 255, 0.7); color: #000; }
    .cta-button-main:active { transform: scale(1.02) translateY(-2px); }
    .cta-button-main::after { content: ''; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%; background: rgba(255, 255, 255, 0.3); transform: rotate(30deg); transition: left 0.6s; }
    .cta-button-main:hover::after { left: 120%; }
    .brand-table-container { width: 100%; margin: 40px 0; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); border-radius: 12px; overflow: hidden; background-color: var(--dark-bg); }
    .brand-table-header { display: flex; background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-1) 100%); padding: 18px 20px; font-size: 1.1rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; }
    .brand-table-header .brand-header-cell { flex: 1; text-align: center; display: flex; align-items: center; justify-content: center; }
    .brand-table-row { display: flex; align-items: center; padding: 20px; border-bottom: 1px solid var(--border-color); transition: all 0.3s ease; background-color: rgba(255, 255, 255, 0.02); }
    .brand-table-row:hover { background-color: rgba(255, 255, 255, 0.05); transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(90, 90, 242, 0.2); }
    .brand-table-cell { flex: 1; text-align: center; padding: 0 10px; font-size: 0.95rem; line-height: 1.3; display: flex; align-items: center; justify-content: center; }
    .brand-logo img { width: 150px; height: auto; max-height: 60px; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); transition: transform 0.3s; }
    .brand-logo img:hover { transform: scale(1.05); }
    .brand-rating { color: #FFD700; font-size: 1.2rem; letter-spacing: 2px; }
    .brand-bonus { color: var(--text-light); font-weight: 500; }
    .brand-pros-cons { text-align: left; justify-content: flex-start; color: var(--text-light); }
    .brand-pros-cons span { display: block; margin-bottom: 4px; }
    .brand-link .brand-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%); color: #fff; text-decoration: none; padding: 12px 24px; border-radius: 50px; font-weight: bold; font-size: 0.95rem; transition: all 0.3s; box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4); border: none; cursor: pointer; }
    .brand-link .brand-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6); background: linear-gradient(135deg, #FF8E53 0%, #FF6B6B 100%); }
    .brand-link .brand-button:active { transform: translateY(-1px); }
@media (max-width: 768px) { .brand-table-header { display: none; } .brand-table-row { flex-direction: column; align-items: center; padding: 25px 20px; gap: 15px; border-bottom: 2px solid var(--border-color); } .brand-table-cell { width: 100%; text-align: center; justify-content: center; padding: 5px 0; } .brand-pros-cons { justify-content: flex-start; text-align: left; } .brand-logo img { width: 180px; } }
    .floating-panel-spacer { height: 80px; background-color: #050510; }
    .floating-panel { position: fixed; bottom: 10px; left: 50%; transform: translateX(-50%); width: calc(100% - 20px); max-width: var(--main-width); height: 80px; background: linear-gradient(90deg, #FF416C 0%, #FF4B2B 100%); border-radius: 15px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; box-shadow: 0 -5px 25px rgba(255, 65, 108, 0.5); z-index: 9999; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); transform: translateX(-50%) translateY(100px); }
    .floating-panel.visible { transform: translateX(-50%) translateY(0); }
    .floating-panel-logo { font-size: 1.6rem; font-weight: bold; color: #fff; text-decoration: none; }
    .floating-panel-button { background: #000; color: #fff; text-decoration: none; padding: 15px 35px; border-radius: 50px; font-weight: bold; font-size: 1.1rem; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
    .floating-panel-button:hover { background: #222; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5); }
@media (max-width: 768px) { .floating-panel-logo { display: none; } .floating-panel { justify-content: center; } }