body { margin: 0; font-family: Arial, Helvetica, Verdana, sans-serif; background: #112636; color: #ffffff; overflow-x: hidden; width: 100%; }
* { box-sizing: border-box; }
html { overflow-x: hidden; }
a { color: #fce5aa; text-decoration: none; }
img { max-width: 100%; height: auto; }
.wrapper { padding-top: 66px; }
@media (max-width: 767px) { .wrapper { padding-top: 54px; }
; }
.header { position: fixed; top: 0; left: 0; right: 0; height: 66px; background: #092e3e; z-index: 99; }
@media (max-width: 767px) { .header { height: 54px; }
; }
.header__inner { max-width: 1310px; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; position: relative; }
.logo img { max-height: 50px; }
@media (max-width: 767px) { .logo img { max-width: 90px; }
; }
.main-nav__list { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; }
.main-nav__list li { font-size: 16px; margin: 0 20px; }
.main-nav__list li a { color: #ffffff; }
.header-buttons { display: flex; align-items: center; }
.login-btn { display: flex; align-items: center; justify-content: center; padding: 0 10px; height: 42px; border-radius: 6px; font-size: 16px; background: linear-gradient(180deg, #019b65 0%, #018559 48%, #003b2d 95%); color: #fce5aa; }
.registr-btn { display: flex; align-items: center; justify-content: center; padding: 0 10px; height: 42px; border-radius: 6px; font-size: 16px; background: linear-gradient(180deg, #019b65 0%, #018559 49%, #003b2d 100%); color: #fce5aa; font-weight: 600; margin-left: 10px; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(1, 155, 101, 1); }
70% { transform: scale(1); box-shadow: 0 4px 24px 0 rgba(1, 133, 89, 1); }
100% { transform: scale(0.95); box-shadow: 0 0 0 0 transparent; }
; }
.main-section { max-width: 1110px; width: 100%; margin: 0 auto 100px; padding: 0 16px; }
.main-section__title { font-size: 42px; font-weight: 700; line-height: 110%; color: #fce5aa; text-align: center; margin: 40px auto 20px; text-shadow: 0 0 10px rgba(252, 229, 170, 0.3); }
@media (max-width: 767px) { .main-section__title { font-size: 32px; }
; }
.main-button { display: flex; align-items: center; justify-content: center; max-width: 300px; width: 100%; height: 60px; margin: 0 auto; border-radius: 6px; font-size: 18px; font-weight: 600; background: linear-gradient(180deg, #019b65 0%, #018559 49%, #003b2d 100%); color: #fce5aa; cursor: pointer; border: none; animation: pulse 2s infinite; }
.content-section { max-width: 1110px; width: 100%; margin: 0 auto 100px; padding: 0 16px; }
.content { color: #ffffff; font-size: 19px; line-height: 150%; }
.content p { color: #ffffff; font-size: 19px; line-height: 150%; margin-bottom: 25px; }
.content ul, .content ol { margin-bottom: 25px; padding-left: 25px; font-size: 18px; }
.content li { margin-bottom: 12px; padding-left: 5px; }
.content strong { color: #ffd27d; }
.content h2 { color: #FFC83D; font-size: 32px; font-weight: 700; margin: 50px 0 30px; padding-bottom: 10px; border-bottom: 2px solid #019b65; }
.content h3 { color: #8fdfff; font-size: 28px; font-weight: 600; margin: 35px 0 20px; }
@media (max-width: 767px) { .content p { font-size: 17px; }
.content { font-size: 17px; }
.content h2 { font-size: 28px; }
.content h3 { font-size: 22px; }
; }
.content-table { width: 100%; border-collapse: collapse; margin: 35px 0; background: #092e3e; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.content-table th { background: linear-gradient(180deg, #019b65 0%, #018559 48%, #003b2d 95%); color: #fce5aa; padding: 18px 20px; text-align: left; font-weight: 700; font-size: 18px; }
.content-table td { padding: 16px 20px; border-bottom: 1px solid #1d3a4a; font-size: 17px; }
.content-table tr:last-child td { border-bottom: none; }
.content-table tr:hover td { background: rgba(255, 210, 125, 0.05); }
.feed-block { margin: 70px 0; }
.feed-title { font-size: 36px; color: #ffd27d; margin-bottom: 40px; text-align: center; font-weight: 700; }
.feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.feed-item { background: #092e3e; border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid #1d3a4a; }
.feed-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(1, 155, 101, 0.2); border-color: #019b65; }
.feed-item-image { width: 100%; height: 200px; object-fit: cover; display: block; }
.feed-item-content { padding: 20px; }
.feed-item-title { color: #8fdfff; font-size: 24px !important; font-weight: 700; margin-top: 10px !important; margin-bottom: 10px; line-height: 1.3; }
.feed-item-title a { color: inherit; text-decoration: none; }
.feed-item-title a:hover { color: #ffd27d; text-decoration: none; }
.feed-item-description { color: #ffffff; font-size: 16px; line-height: 1.5; }
@media (max-width: 991px) { .feed-grid { grid-template-columns: repeat(2, 1fr); }
; }
@media (max-width: 767px) { .feed-grid { grid-template-columns: 1fr; }
.feed-title { font-size: 28px; }
; }
.comments-block { margin: 70px 0; }
.comments-title { font-size: 36px; color: #ffd27d; margin-bottom: 40px; text-align: center; font-weight: 700; }
.comment-item { background: #092e3e; border-left: 5px solid #019b65; padding: 25px; margin-bottom: 25px; border-radius: 0 12px 12px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.comment-header { display: flex; justify-content: space-between; margin-bottom: 15px; align-items: center; }
.comment-name { font-weight: 700; color: #8fdfff; font-size: 18px; }
.comment-date { color: #8aa4b8; font-size: 15px; background: rgba(0,0,0,0.2); padding: 4px 10px; border-radius: 12px; }
.comment-text { color: #ffffff; line-height: 1.6; font-size: 17px; }
.faq-block { margin: 70px 0; }
.faq-title { font-size: 36px; color: #ffd27d; margin-bottom: 40px; text-align: center; font-weight: 700; }
.faq-item { background: #092e3e; border: 2px solid #1d3a4a; padding: 25px; margin-bottom: 20px; border-radius: 12px; transition: border-color 0.3s; }
.faq-item:hover { border-color: #019b65; }
.faq-question { font-weight: 700; color: #ffd27d; margin-bottom: 15px; font-size: 20px; display: flex; align-items: center; }
.faq-question:before { content: "❓"; margin-right: 10px; font-size: 18px; }
.faq-answer { color: #ffffff; line-height: 1.6; font-size: 17px; padding-left: 30px; }
.random-link-block { margin: 50px 0; padding: 25px; background: linear-gradient(90deg, #092e3e, #0a2535); border-left: 5px solid #ffd27d; border-radius: 0 12px 12px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.random-link-text { color: #ffffff; }
.random-link-text a { color: #8fdfff; text-decoration: none; font-weight: 700; border-bottom: 2px solid #8fdfff; padding-bottom: 2px; }
.random-link-text a:hover { color: #ffd27d; border-bottom-color: #ffd27d; }
.cta-block { margin: 70px 0; text-align: center; }
.cta-button { display: inline-flex; align-items: center; justify-content: center; max-width: 500px; width: 100%; border-radius: 100px; padding: 30px 40px; font-size: 22px; font-weight: 700; background: linear-gradient(180deg, #019b65 0%, #018559 49%, #003b2d 100%); color: #fce5aa; cursor: pointer; border: none; animation: pulse 2s infinite; text-decoration: none; box-shadow: 0 8px 30px rgba(1, 155, 101, 0.4); }
.footer { padding: 80px 0 0; background: #092e3e; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 90px; }
@media (max-width: 1200px) { .footer { padding: 80px 16px 90px; }
; }
@media (max-width: 767px) { .footer { padding: 50px 16px 90px; }
; }
.footer__inner { max-width: 1110px; width: 100%; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; }
@media (max-width: 767px) { .footer__inner { flex-direction: column; }
; }
.footer__info .logo { margin-bottom: 28px; }
.footer__info .logo img { max-height: 100px; }
.footer__links { display: flex; align-items: flex-start; margin-left: 20px; }
@media (max-width: 767px) { .footer__links { margin: 40px 0 0; flex-direction: column; }
; }
.footer-nav + .footer-nav { margin-left: 120px; }
@media (max-width: 767px) { .footer-nav + .footer-nav { margin: 36px 0 0; }
; }
.footer-nav__list { list-style: none; margin: 0; padding: 0; }
.footer-nav__list li { font-size: 16px; }
.footer-nav__list li a { color: #ffffff; }
.footer-nav__list li + li { margin-top: 16px; }
.footer__bottom { display: flex; align-items: center; justify-content: center; padding: 0 0 40px; }
.copyright { color: #ffffff; font-size: 12px; text-align: center; }
.floating-panel { position: fixed; bottom: 10px; left: 50%; transform: translateX(-50%) translateY(100px); width: calc(100% - 20px); height: 80px; background: #092e3e; border: 2px solid #019b65; border-radius: 12px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; box-shadow: 0 -5px 25px rgba(0,0,0,0.5); z-index: 1000; transition: transform 0.4s ease; }
.floating-panel.visible { transform: translateX(-50%) translateY(0); }
.floating-logo { font-weight: 700; color: #fce5aa; font-size: 24px; }
.floating-button { padding: 15px 35px; background: linear-gradient(180deg, #019b65 0%, #018559 49%, #003b2d 100%); color: #fce5aa; border: none; border-radius: 6px; font-weight: 700; cursor: pointer; animation: pulse 2s infinite; text-decoration: none; font-size: 18px; }
@media (max-width: 767px) { .floating-panel { left: 10px; right: 10px; transform: translateX(0) translateY(100px); justify-content: center; padding: 0 15px; height: 70px; }
.floating-panel.visible { transform: translateX(0) translateY(0); }
.floating-logo { display: none; }
.floating-button { padding: 12px 20px; font-size: 16px; width: 100%; max-width: 280px; }
; }
.burger-menu { display: none; width: 40px; height: 40px; background: linear-gradient(180deg, #019b65 0%, #018559 48%, #003b2d 95%); border-radius: 6px; border: none; cursor: pointer; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); z-index: 1002; flex-direction: column; justify-content: center; align-items: center; }
.burger-menu span { display: block; width: 20px; height: 2px; background: #fce5aa; margin: 3px 0; transition: 0.3s; }
.burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
.menu-close { position: absolute; top: 20px; right: 20px; width: 30px; height: 30px; background: none; border: none; color: #ffffff; font-size: 24px; cursor: pointer; z-index: 1003; display: none; }
@media (max-width: 1023px) { .main-nav { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: #092e3e; z-index: 1000; padding: 70px 0 20px; transition: right 0.3s ease; overflow-y: auto; }
.main-nav.active { right: 0; }
.main-nav__list { display: block !important; }
.main-nav__list li { margin: 0 !important; border-bottom: 1px solid #1d3a4a; }
.main-nav__list li a { display: block; padding: 15px 20px; width: 100%; }
.burger-menu { display: flex; }
.header-buttons.right { display: none !important; }
.menu-close { display: block; }
; }