/* =================================================================
   ШРИФТЫ
   ================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;600;700;800&display=swap');

/* =================================================================
   ГЛОБАЛЬНЫЕ СТИЛИ ДЛЯ ТЕКСТОВЫХ ЭЛЕМЕНТОВ
   ================================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #E8ECF1;
}

/* Глобальные стили для заголовков */
h1 {
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    color: #1A2332;
    margin: 0 0 16px 0;
}

h2 {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #1A2332;
    margin: 32px 0 16px 0;
}

h3 {
    font-family: 'Lato', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1A2332;
    margin: 24px 0 12px 0;
}

h4 {
    font-family: 'Lato', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    color: #1A2332;
    margin: 20px 0 10px 0;
}

h5 {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: #1A2332;
    margin: 16px 0 8px 0;
}

h6 {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #1A2332;
    margin: 14px 0 8px 0;
}

/* Глобальные стили для параграфов */
p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #2C3E50;
    margin-bottom: 16px;
}

/* Глобальные стили для span */
span {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

/* Глобальные стили для ссылок */
a {
    color: #4A5568;
    text-decoration: underline;
    font-weight: 400;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

/* Глобальные стили для списков */
ul, ol {
    margin: 16px 0;
    padding-left: 28px;
}

li {
    font-size: 18px;
    line-height: 1.6;
    color: #2C3E50;
    margin-bottom: 10px;
}

/* Глобальные стили для таблиц */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: #F5F7FA;
    border-radius: 4px;
    overflow: hidden;
}

thead {
    background-color: #041129;
}

th {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 2px solid #D1D5DB;
}

td {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #2C3E50;
    padding: 14px 16px;
    border-bottom: 1px solid #D1D5DB;
}

tbody tr:hover {
    background-color: #F0F4F8;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Глобальные стили для strong/bold */
strong, b {
    font-weight: 700;
}

/* Глобальные стили для em/italic */
em, i {
    font-style: italic;
}

.cruksimg{
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
}

/* Table Wrapper */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
}

.table-wrapper table {
    margin: 0;
    min-width: 600px;
}

.table-wrapper td p,
.table-wrapper th p {
    margin: 0;
}

/* =================================================================
   HEADER
   ================================================================= */

.site-header {
    background-color: #1A2332;
    padding: 16px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    display: block;
    max-width: 80px;
    height: auto;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.header-menu li {
    margin: 0;
}

.header-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.header-menu a:hover {
    opacity: 0.8;
}

/* =================================================================
   CONTAINER
   ================================================================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =================================================================
   HERO BANNER
   ================================================================= */

.hero-banner {
    padding: 24px 0 20px;
    background-color: #E8ECF1;
}

/* Breadcrumbs */
.breadcrumb-navigation ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
}

.breadcrumb-navigation li {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

.breadcrumb-navigation li a {
    color: #2C3E50;
    text-decoration: none;
    font-weight: 400;
}

.breadcrumb-navigation li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path d="M4 2l4 4-4 4" stroke="%232C3E50" stroke-width="1.5" fill="none"/></svg>') center center no-repeat;
}

/* Author Meta */
.author-meta {
    margin: 24px 0 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}

.author-info-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.author-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-full-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #1A2332;
}

.author-role {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #6B7280;
}

.publication-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.4;
    color: #6B7280;
}

.date-icon {
    width: 16px;
    height: 16px;
}

/* Disclaimer Box */
.disclaimer-box {
    border-top: 1px solid #D1D5DB;
    padding-top: 16px;
    margin-top: 24px;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
}

/* Blockquote */
blockquote {
    background-color: #F5F7FA;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

blockquote p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #1A2332;
    margin-bottom: 12px;
}

blockquote p:not(:first-child) {
    font-size: 15px;
    line-height: 1.7;
    color: #6B7280;
    font-style: italic;
    margin: 0;
}

/* Pros and Cons Block */
.pros-cons-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

.pros-cons-item {
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pros-cons-item.pros {
    background-color: #F0FDF4;
    border: 1px solid #86EFAC;
}

.pros-cons-item.cons {
    background-color: #FEF2F2;
    border: 1px solid #FCA5A5;
}

.pros-cons-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-cons-item.pros h4 {
    color: #166534;
}

.pros-cons-item.cons h4 {
    color: #991B1B;
}

.pros-cons-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-cons-item li {
    font-size: 16px;
    line-height: 1.6;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.pros-cons-item.pros li {
    color: #166534;
}

.pros-cons-item.cons li {
    color: #991B1B;
}

.pros-cons-item.pros li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

.pros-cons-item.cons li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .pros-cons-block {
        grid-template-columns: 1fr;
    }
}

/* Casino Cards Block - 3 columns */
.casino-cards-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.casino-card {
    background-color: #F5F7FA;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.casino-card strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1A2332;
    margin-bottom: 16px;
    line-height: 1.4;
}

.casino-card ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: item;
}

.casino-card ol li {
    font-size: 16px;
    line-height: 1.6;
    color: #2C3E50;
    padding: 0px 0;
    padding-left: 24px;
    position: relative;
    counter-increment: item;
}

.casino-card ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: #1A2332;
}

.casino-card ol li p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #2C3E50;
}

@media (max-width: 1024px) {
    .casino-cards-block {
        grid-template-columns: 1fr;
    }
}

/* Bonus Info Rows */
.bonus-info-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.bonus-info-item {
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 4px solid transparent;
}

.bonus-info-item.what {
    border-left-color: #3B82F6;
    background-color: #EFF6FF;
}

.bonus-info-item.why {
    border-left-color: #10B981;
    background-color: #ECFDF5;
}

.bonus-info-item.offer {
    border-left-color: #F59E0B;
    background-color: #FFFBEB;
}

.bonus-info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-info-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

.bonus-info-item.what strong {
    color: #1E40AF;
}

.bonus-info-item.why strong {
    color: #047857;
}

.bonus-info-item.offer strong {
    color: #92400E;
}

/* =================================================================
   CASINO OFFERS SECTION (новая структура)
   ================================================================= */

.casino-offers-section {
    padding: 40px 0;
    background-color: #F5F7FA;
}

.offers-grid {
    display: flex;
    flex-direction: column;
    counter-reset: casino-counter 0;
    gap: 8px;
}

.casino-offer-item {
    position: relative;
    display: grid;
    align-items: center;
    padding-left: 46px;
    counter-increment: casino-counter 1;
    border-radius: 4px;
    background-color: #1A2332;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.24), 0 4px 16px 0 rgba(0, 0, 0, 0.36);
    gap: 16px;
    grid-template-areas: 'logo rating main';
    grid-template-columns: 187px 162px auto;
    grid-template-rows: 1fr;
    transition: transform 0.2s, box-shadow 0.2s;
}

.casino-offer-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 8px 20px 0 rgba(0, 0, 0, 0.4);
}

.casino-offer-item::before {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 100%;
    content: counter(casino-counter);
    color: #fff;
    border-radius: 4px 2px 2px 4px;
    background: #2C3E50;
}

.casino-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 187px;
    height: 90px;
    grid-area: logo;
}

.casino-brand-logo img {
    width: 127px;
    height: 52px;
    object-fit: contain;
}

.casino-score-block {
    display: flex;
    align-items: center;
    gap: 16px;
    grid-area: rating;
}

.score-value {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    height: 48px;
    text-align: center;
    color: #fff;
    border: 2px solid #4A5568;
    border-radius: 2px;
    background: #2C3E50;
}

.score-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.star-rating-visual img {
    height: 18px;
}

.casino-brand-title {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #fff;
}

.casino-offer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 8px 8px 16px;
    padding: 16px 32px;
    background: #2C3E50;
    gap: 16px;
    grid-area: main;
    border-radius: 4px;
}

.bonus-description {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 26px;
    color: #fff;
}

.claim-bonus-button {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 21.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    min-width: 190px;
    height: 48px;
    text-align: center;
    color: #fff !important;
    border-radius: 8px;
    background: #5B8DB8;
    text-decoration: none;
    transition: background 0.3s;
}

.claim-bonus-button:hover {
    background: #4A7BA3;
    opacity: 1;
}

.claim-bonus-button::before {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cpath d='M11.4552 1.90791L3.12187 11.9079H10.6219L9.78854 18.5746L18.1219 8.57458H10.6219L11.4552 1.90791Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.7207 1.29638C11.9921 1.41423 12.1534 1.69694 12.1167 1.9906L11.3771 7.90792H18.1219C18.3806 7.90792 18.6159 8.05756 18.7256 8.29181C18.8353 8.52607 18.7996 8.80265 18.634 9.00137L10.3007 19.0014C10.1112 19.2287 9.79456 19.304 9.52308 19.1861C9.2516 19.0683 9.09031 18.7856 9.12702 18.4919L9.86669 12.5746H3.12187C2.8632 12.5746 2.62787 12.4249 2.51815 12.1907C2.40843 11.9564 2.44413 11.6798 2.60973 11.4811L10.9431 1.48113C11.1325 1.25377 11.4492 1.17853 11.7207 1.29638ZM4.54524 11.2412H10.6219C10.8131 11.2412 10.9951 11.3234 11.1217 11.4667C11.2482 11.6101 11.3071 11.8009 11.2834 11.9906L10.7321 16.4009L16.6985 9.24125H10.6219C10.4307 9.24125 10.2486 9.15914 10.1221 9.01578C9.99554 8.87243 9.93664 8.68164 9.96036 8.49189L10.5116 4.08155L4.54524 11.2412Z' fill='white'/%3E%3C/svg%3E");
}

/* =================================================================
   COMPARISON TABLE
   ================================================================= */

.comparison-table-section {
    padding: 40px 0;
    background-color: #F5F7FA;
}

/* =================================================================
   TABLE OF CONTENTS (TOC)
   ================================================================= */

.toc-container {
	margin: 32px 0;
}

.toc-toggle {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	background: none;
	border: 1px solid #D1D5DB;
	border-radius: 8px;
	cursor: pointer;
	text-align: left;
	transition: background-color 0.3s, border-color 0.3s, border-radius 0.3s, border-bottom 0.3s;
	font-family: 'Lato', sans-serif;
}

.toc-toggle:hover {
	background-color: #F5F7FA;
	border-color: #9CA3AF;
}

.toc-toggle[aria-expanded="true"] {
	border-radius: 8px 8px 0 0;
	border-bottom: none;
}

.toc-toggle-text {
	font-size: 18px;
	font-weight: 700;
	color: #1A2332;
	line-height: 1.5;
}

.toc-toggle-icon {
	font-size: 24px;
	font-weight: 300;
	color: #5B8DB8;
	min-width: 30px;
	text-align: center;
	transition: transform 0.3s;
	line-height: 1;
}

.toc-toggle[aria-expanded="true"] .toc-toggle-icon {
	transform: rotate(45deg);
}

.toc-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, padding 0.4s ease-out, border 0.4s ease-out;
	border: 1px solid transparent;
	border-radius: 0 0 8px 8px;
}

.toc-toggle[aria-expanded="true"] + .toc-content {
	max-height: 2000px;
	padding: 16px 20px 20px 20px;
	border-color: #D1D5DB;
	border-top: none;
}

.toc-list {
	list-style: none;
	margin: 16px 0 0 0;
	padding: 0;
}

.toc-list > li {
	margin-bottom: 12px;
}

.toc-list a {
	display: block;
	font-size: 16px;
	line-height: 1.6;
	color: #2C3E50;
	text-decoration: none;
	padding: 4px 0;
	transition: color 0.2s, padding-left 0.2s;
}

.toc-list a:hover {
	color: #5B8DB8;
	padding-left: 8px;
}


@media screen and (max-width: 767px) {
	.toc-toggle-text {
		font-size: 16px;
	}
	
	.toc-list a {
		font-size: 15px;
	}
	
	.toc-sublist a {
		font-size: 14px;
	}
}

/* =================================================================
   MAIN CONTENT
   ================================================================= */

.main-content-area {
    padding: 10px 0;
    background-color: #F5F7FA;
}

/* Warning Notification */
.warning-notification {
    display: grid;
    grid-template-areas: "icon content";
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 20px 24px;
    border: 2px solid #5B8DB8;
    border-radius: 8px;
    margin: 32px 0;
    background-color: #F0F4F8;
    align-items: start;
}

.warning-icon {
    grid-area: icon;
    width: 28px;
    height: 28px;
}

.warning-text-content {
    grid-area: content;
}

.warning-message {
    margin: 0 0 12px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #2C3E50;
}

.warning-readmore {
    font-weight: 700;
    text-decoration: underline;
    color: #5B8DB8;
}

/* =================================================================
   FAQ SECTION
   ================================================================= */

.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1A2332;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #F5F7FA;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question-text {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #1A2332;
    padding-right: 20px;
}

.faq-toggle-icon {
    font-size: 28px;
    font-weight: 300;
    color: #5B8DB8;
    min-width: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 24px;
    border-top: 1px solid #E0E5EA;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #4A5568;
    margin: 16px 0 0 0;
}

/* =================================================================
   AUTHOR BIOGRAPHY
   ================================================================= */

.author-biography {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.biography-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.biography-image-area {
    flex: 0 0 200px;
    text-align: center;
}

.biography-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1A2332;
}

.biography-text-area {
    flex: 1;
    min-width: 300px;
}

.biography-text-area h3 {
    margin-top: 0;
    color: #1A2332;
}

/* =================================================================
   FOOTER
   ================================================================= */

.page-footer {
    padding: 30px 0;
    background-color: #1A2332;
    color: #fff;
    text-align: center;
}

.page-footer p {
    color: #fff;
    margin: 0;
    font-size: 14px;
}

.footer-nav {
    margin-bottom: 16px;
}

.footer-nav-secondary {
    margin-top: 12px;
    font-size: 13px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.footer-nav-secondary a {
    font-size: 13px;
}

.footer-nav a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-separator {
    color: #fff;
    margin: 0 12px;
    opacity: 0.6;
}

/* =================================================================
   PAGE CONTENT STYLES
   ================================================================= */

.site-main {
    padding: 20px 0;
}

.content-area {
    max-width: 1200px;
    margin: 0 auto;
}

.page-content {
    background-color: #F5F7FA;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.entry-content {
    line-height: 1.8;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: start;
}

.content-column {
    display: flex;
    flex-direction: column;
}

.content-column h2 {
    margin-top: 0;
}

.content-divider {
    margin: 40px 0;
    text-align: center;
    position: relative;
    padding: 20px 0;
}

.content-divider::before,
.content-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #4A5568;
}

.content-divider::before {
    left: 0;
}

.content-divider::after {
    right: 0;
}

.content-divider h4 {
    margin: 0;
    color: #4A5568;
    display: inline-block;
    background-color: #F5F7FA;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.image-wrapper {
    margin-top: 20px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.videos-section {
    margin: 40px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.coloring-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.coloring-page-item {
    text-align: center;
}

.coloring-page-link {
    display: inline-block;
    transition: transform 0.2s, opacity 0.2s;
}

.coloring-page-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.coloring-page-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    border: 2px solid #D1D5DB;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-content {
        padding: 20px;
    }
    
    .content-divider::before,
    .content-divider::after {
        width: 30%;
    }
    
    .coloring-pages-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
}

/* =================================================================
   DARK MODE SUPPORT
   ================================================================= */

@media (prefers-color-scheme: dark) {
    body.auto-dark-mode {
        background-color: #1a1a1a;
        color: #D1D5DB;
    }
    
    body.auto-dark-mode h1,
    body.auto-dark-mode h2,
    body.auto-dark-mode h3,
    body.auto-dark-mode h4,
    body.auto-dark-mode h5,
    body.auto-dark-mode h6 {
        color: #f0f0f0;
    }
    
    body.auto-dark-mode p,
    body.auto-dark-mode li,
    body.auto-dark-mode td {
        color: #D1D5DB;
    }
}

/* =================================================================
   RESPONSIVE STYLES
   ================================================================= */

/* Tablets (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 30px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 26px;
    }
    
    h4 {
        font-size: 24px;
    }
}

/* Mobile devices (до 991px) */
@media screen and (max-width: 991px) {
    .offers-grid {
        gap: 16px;
    }
    
    .casino-offer-item {
        padding-top: 8px;
        padding-left: 0;
        gap: 8px 16px;
        grid-template-areas: 'logo rating' 'main main';
        grid-template-columns: 176px auto;
    }
    
    .casino-offer-item::before {
        top: 0;
        width: 30px;
        height: 22px;
        border-radius: 4px 2px 2px;
    }
    
    .casino-brand-logo {
        width: 176px;
        height: 70px;
        padding-left: 31px;
    }
    
    .casino-brand-logo img {
        width: 127px;
        height: 52px;
    }
    
    .casino-score-block {
        gap: 12px;
    }
    
    .score-value {
        font-size: 16px;
        width: 34px;
        min-width: 34px;
        height: 34px;
    }
    
    .star-rating-visual img {
        height: 16px;
    }
    
    .casino-brand-title {
        font-size: 10px;
    }
    
    .casino-offer-content {
        flex-direction: column;
        margin: 8px;
        padding: 16px 24px;
        gap: 16px;
    }
    
    .bonus-description {
        font-size: 20px;
        line-height: 26px;
        text-align: center;
    }
    
    .claim-bonus-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile devices (до 767px) */
@media screen and (max-width: 767px) {
    .hero-banner {
        padding: 16px 0 32px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .breadcrumb-navigation ul {
        margin-bottom: 18px;
    }
    
    h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    h4 {
        font-size: 18px;
    }
    
    h5, h6 {
        font-size: 16px;
    }
    
    p, li {
        font-size: 16px;
        line-height: 1.75;
    }
    
    .author-meta {
        margin: 16px 0 24px 0;
        flex-direction: column;
        gap: 12px;
    }
    
    .author-avatar-img {
        width: 28px;
        height: 28px;
    }
    
    .author-full-name,
    .author-role,
    .publication-date {
        font-size: 14px;
    }
    
    .disclaimer-box {
        padding-top: 12px;
    }
    
    table {
        font-size: 14px;
    }
    
    th, td {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .warning-notification {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "icon"
            "content";
        gap: 12px;
        padding: 16px 20px;
    }
    
    .warning-icon {
        justify-self: center;
        width: 24px;
        height: 24px;
    }
    
    .warning-message {
        font-size: 15px;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .biography-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    
    .biography-image-area {
        flex: 0 0 auto;
    }
    
    .biography-photo {
        width: 100px;
        height: 100px;
    }
}

/* Very small screens (до 400px) */
@media screen and (max-width: 400px) {
    h1 {
        font-size: 20px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    p, li {
        font-size: 15px;
    }
    
    .claim-bonus-button {
        font-size: 16px;
        padding: 12px 20px;
    }
}