:root {
--main-color: #f2615a;
--main-width: 1200px;
--h1-size: 2.4rem;
--h2-size: 1.8rem;
--h3-size: 1.5rem;
--bg-dark: #1a0a09;
--bg-content: #220e0c;
--accent-red: #d30a00;
--accent-teal: #027f8f;
--text-light: #f0f0f0;
--text-muted: #d1d5db;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--bg-dark);
color: var(--text-light);
line-height: 1.6;
}
img {
max-width: 100%;
height: auto;
display: block;
margin: 0;
}
a {
color: inherit;
text-decoration: underline;
}
a:hover {
color: var(--main-color);
}
h1 { font-size: var(--h1-size); color: #ffffff; }
h2 { font-size: var(--h2-size); color: var(--main-color); margin-bottom: 1rem; }
h3 { font-size: var(--h3-size); color: var(--accent-teal); margin-bottom: 0.75rem; }
.hero-title { font-size: var(--h1-size); }
.hero-section {
padding: 50px 0;
background: #330300;
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;
flex-direction: row;
}
.hero-content {
flex: 1;
}
.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, #f2615a, transparent);
}
.hero-btn {
background: linear-gradient(135deg, #f2615a 0%, #e6544c 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-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-bonus {
flex: 0 0 350px;
position: relative;
}
.hero-bonus > div:first-child {
position: absolute;
top: -30px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 80px;
background: linear-gradient(135deg, #f2615a 0%, #e6544c 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 solid #ffffff;
}
.hero-bonus > div:first-child span {
font-size: 1.5rem;
font-weight: bold;
color: white;
text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.hero-bonus > div:last-child {
background: rgba(51, 3, 0, 0.35);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 60px 25px 25px;
border: 2px solid rgba(242, 97, 90, 0.5110908200717508);
position: relative;
overflow: hidden;
z-index: 2;
text-align: center;
}
.hero-bonus h3 {
font-size: 1.5rem;
margin-top: 0;
color: #f2615a;
font-weight: 700;
}
.hero-bonus ul {
list-style: none;
padding: 0;
margin: 0 0 25px 0;
}
.hero-bonus li {
padding: 10px 0;
border-bottom: 1px dashed rgba(242, 97, 90, 0.3);
font-size: 1rem;
color: #d1d5db;
}
.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: 0;
}
.feed-article {
margin-bottom: 25px;
padding-bottom: 25px;
border-bottom: 1px solid rgba(242, 97, 90, 0.2);
}
.feed-article:last-child {
border-bottom: none;
}
.feed-article img {
border-radius: 8px;
margin-bottom: 10px;
}
.feed-article h4 {
margin-bottom: 8px;
}
.feed-article h4 a {
text-decoration: none;
color: var(--text-light);
}
.feed-article h4 a:hover {
color: var(--main-color);
}
.feed-article p {
font-size: 0.95rem;
color: var(--text-muted);
}
.comment-block {
margin: 40px 0;
}
.comment {
background: rgba(210, 10, 0, 0.08);
border-left: 4px solid var(--accent-red);
padding: 15px;
margin-bottom: 20px;
border-radius: 0 8px 8px 0;
}
.comment-header {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
font-size: 0.9rem;
}
.comment-name {
font-weight: bold;
color: var(--accent-red);
}
.comment-date {
color: var(--text-muted);
}
.comment-text {
color: var(--text-light);
}
.faq-block {
margin: 40px 0;
}
.faq-item {
background: rgba(2, 127, 143, 0.08);
border: 1px solid var(--accent-teal);
border-radius: 10px;
padding: 20px;
margin-bottom: 15px;
position: relative;
padding-left: 60px;
}
.faq-item:before {
content: 'Q';
position: absolute;
left: 20px;
top: 20px;
width: 30px;
height: 30px;
background: var(--accent-teal);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
.faq-question {
font-weight: bold;
color: var(--accent-teal);
margin-bottom: 10px;
}
.faq-answer {
color: var(--text-light);
}
.random-link-block {
margin: 30px 0;
padding: 15px 20px;
background: linear-gradient(to right, rgba(242, 97, 90, 0.1), transparent);
border-left: 5px solid var(--main-color);
font-weight: bold;
}
.cta-button-block {
margin: 40px 0;
text-align: center;
}
.cta-button {
display: inline-block;
background: linear-gradient(135deg, var(--accent-red) 0%, #b30900 100%);
color: white;
padding: 20px 50px;
font-size: 1.4rem;
font-weight: bold;
border-radius: 50px;
text-decoration: none;
box-shadow: 0 8px 25px rgba(211, 10, 0, 0.4);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border: none;
cursor: pointer;
}
.cta-button:before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transition: left 0.7s;
}
.cta-button:hover:before {
left: 100%;
}
.cta-button:hover {
transform: scale(1.05);
box-shadow: 0 12px 30px rgba(211, 10, 0, 0.6);
}
footer {
background-color: #110503;
color: var(--text-muted);
padding: 40px 20px;
text-align: center;
border-top: 1px solid rgba(242, 97, 90, 0.3);
}
.footer-menu {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 25px;
margin-bottom: 30px;
}
.footer-menu a {
text-decoration: none;
color: var(--text-muted);
font-weight: 500;
}
.footer-menu a:hover {
color: var(--main-color);
}
.copyright {
font-size: 0.9rem;
}
.floating-panel-spacer {
height: 80px;
background-color: #110503;
}
.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, var(--accent-red), var(--main-color));
border-radius: 15px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 30px;
z-index: 1000;
box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
transition: transform 0.4s ease;
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-btn {
background: white;
color: var(--accent-red);
border: none;
padding: 12px 30px;
font-size: 1.1rem;
font-weight: bold;
border-radius: 50px;
cursor: pointer;
text-decoration: none;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
transition: all 0.3s;
}
.floating-panel-btn:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: rgba(255,255,255,0.03);
border-radius: 8px;
overflow: hidden;
}
th {
background: rgba(242, 97, 90, 0.2);
color: var(--main-color);
padding: 15px;
text-align: left;
}
td {
padding: 15px;
border-bottom: 1px solid rgba(255,255,255,0.05);
color: var(--text-light);
}
tr:last-child td {
border-bottom: none;
}
ul, ol {
padding-left: 20px;
margin: 20px 0;
}
li {
margin-bottom: 8px;
color: var(--text-light);
}
.template_invisible {
display: none;
}
@media (max-width: 992px) {
    .hero-container {
    flex-direction: column;
    text-align: center;
}
.hero-bonus {
flex: 0 0 auto;
width: 100%;
max-width: 400px;
margin-top: 40px;
}
.content-wrapper {
flex-direction: column;
}
.sidebar {
flex: 0 0 auto;
width: 100%;
order: 2;
}
.sidebar.sidebar-left {
order: 2;
}
.floating-panel-logo {
display: none;
}
.floating-panel {
justify-content: center;
padding: 0 20px;
}
.footer-menu {
justify-content: flex-start;
flex-direction: column;
gap: 15px;
align-items: flex-start;
padding-left: 20px;
}
}
@media (max-width: 768px) {
    :root {
    --h1-size: 2rem;
    --h2-size: 1.6rem;
    --h3-size: 1.3rem;
}
.hero-section {
padding: 30px 0;
}
.content-wrapper {
padding: 30px 15px;
}
.faq-item {
padding-left: 20px;
padding-top: 50px;
}
.faq-item:before {
top: 15px;
left: 15px;
}
}
: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; }.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, var(--accent-red), var(--main-color)); border-radius: 15px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; z-index: 1000; box-shadow: 0 -5px 25px rgba(0,0,0,0.5); transition: transform 0.4s ease; 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-btn { background: white; color: var(--accent-red); border: none; padding: 12px 30px; font-size: 1.1rem; font-weight: bold; border-radius: 50px; cursor: pointer; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: all 0.3s; }
    .floating-panel-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
@media (max-width: 992px) {
    .floating-panel-logo { display: none; }
    .floating-panel { justify-content: center; padding: 0 20px; }
}