/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

.navigation {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.article {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

h1 {
    font-size: 36px;
    color: #1e3c72;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 700;
}

h2 {
    font-size: 28px;
    color: #2a5298;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 10px;
}

h3 {
    font-size: 20px;
    color: #1e3c72;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

.intro {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #2a5298;
}

/* Top Casinos List */
.top-casinos-section {
    margin-top: 40px;
}

.top-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.top-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 60px 150px 1fr 200px 120px 150px;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.top-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #ffd700;
}

.top-card--first {
    border: 3px solid #ffd700;
    background: linear-gradient(to right, #fff9e6, #ffffff);
}

.rank {
    font-size: 32px;
    font-weight: bold;
    color: #2a5298;
    text-align: center;
}

.rank--1 {
    color: #ffd700;
}

.rank--2 {
    color: #c0c0c0;
}

.rank--3 {
    color: #cd7f32;
}

.logo-link img {
    max-width: 130px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.main-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.casino-name {
    font-size: 20px;
    font-weight: 600;
    color: #1e3c72;
    text-decoration: none;
    transition: color 0.3s ease;
}

.casino-name:hover {
    color: #2a5298;
}

.rating .stars {
    color: #ffd700;
    font-size: 18px;
}

.review-link {
    color: #2a5298;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.review-link:hover {
    text-decoration: underline;
}

.bonus-info,
.games-count {
    text-align: center;
}

.bonus-label,
.games-label {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.bonus-value {
    font-size: 16px;
    font-weight: 600;
    color: #1e3c72;
}

.games-value {
    font-size: 18px;
    font-weight: 700;
    color: #2a5298;
}

.play-btn {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(42, 82, 152, 0.3);
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(42, 82, 152, 0.4);
}

/* Methodology Section */
.criteria-list {
    margin-top: 20px;
}

.criteria-item {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
}

.criteria-item h3 {
    margin-top: 0;
    color: #1e3c72;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin-top: 25px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

th {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    padding: 15px;
    text-align: left
    ;
font-weight: 600;
}
td {
padding: 15px;
border-bottom: 1px solid #e0e0e0;
vertical-align: top;
}
.section-label {
font-weight: 600;
color: #1e3c72;
background: #f8f9fa;
}
.pros-section {
background: #f0f8ff;
}
.cons-section {
background: #fff5f5;
}
table ul {
list-style-position: inside;
margin: 0;
padding: 0;
}
table ul li {
margin-bottom: 8px;
color: #555;
}
/* Games Section */
.games-list {
margin-top: 25px;
}
.game-item {
background: #f8f9fa;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
border-left: 4px solid #ffd700;
}
.game-item h3 {
margin-top: 0;
color: #1e3c72;
}
/* Safety Section */
.safety {
background: #f0f8ff;
padding: 25px;
border-radius: 8px;
margin-top: 40px;
}
/* FAQ Section */
.faq {
margin-top: 40px;
}
.faq-item {
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 20px;
margin-bottom: 15px;
}
.faq-item h3 {
color: #1e3c72;
margin-top: 0;
margin-bottom: 10px;
}
/* Footer */
.footer {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: #fff;
padding: 40px 0 20px;
margin-top: 60px;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 30px;
}
.footer-section h3 {
color: #ffd700;
margin-bottom: 15px;
font-size: 18px;
}
.footer-section p {
color: #e0e0e0;
font-size: 14px;
}
.footer-links,
.responsible-gaming {
list-style: none;
padding: 0;
}
.footer-links li,
.responsible-gaming li {
margin-bottom: 10px;
}
.footer-links a,
.responsible-gaming a {
color: #e0e0e0;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover,
.responsible-gaming a:hover {
color: #ffd700;
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.2);
padding-top: 20px;
text-align: center;
}
.footer-bottom p {
color: #e0e0e0;
font-size: 14px;
margin-bottom: 10px;
}
.disclaimer {
font-size: 12px;
color: #bbb;
}
/* Responsive Design */
@media (max-width: 1024px) {
.top-card {
grid-template-columns: 50px 120px 1fr;
gap: 15px;
}
.bonus-info,
.games-count {
    grid-column: 2 / 4;
    text-align: left;
    display: flex;
    gap: 20px;
}

.play-btn {
    grid-column: 2 / 4;
}
}
@media (max-width: 768px) {
.header-content {
flex-direction: column;
gap: 15px;
}
.navigation {
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.article {
    padding: 20px;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

.top-card {
    grid-template-columns: 1fr;
    text-align: center;
}

.rank {
    position: absolute;
    top: 10px;
    left: 10px;
}

.logo-link {
    margin-top: 30px;
}

.bonus-info,
.games-count {
    flex-direction: column;
    gap: 10px;
}

.play-btn {
    width: 100%;
}

table {
    font-size: 14px;
}

th, td {
    padding: 10px;
}
}
@media (max-width: 480px) {
.container {
padding: 0 15px;
}
h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

.top-card {
    padding: 15px;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
}
}

.logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}

/* Author Box Section */
.author-section {
    margin: 50px 0 40px;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 25px;
    border-radius: 12px;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    border: 2px solid #e0e0e0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.author-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.12);
    border-color: #2a5298;
}

.author-box__img {
    flex: 0 0 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4f6;
    border: 3px solid #2a5298;
}

.author-box__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-box__content {
    flex: 1;
    min-width: 0;
}

.author-box__name {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #1e3c72;
}

.author-box__role {
    font-size: 14px;
    color: #2a5298;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-box__bio {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .author-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .author-box__img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        flex: none;
    }
}

@media (max-width: 480px) {
    .author-box {
        padding: 20px;
    }
    
    .author-box__name {
        font-size: 20px;
    }
    
    .author-box__bio {
        font-size: 14px;
    }
}

/* Author Page Styles */
.author-page {
    max-width: 1000px;
    margin: 0 auto;
}

.author-hero {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid #e0e0e0;
}

.author-hero__image {
    flex: 0 0 200px;
}

.author-hero__image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #2a5298;
    box-shadow: 0 5px 20px rgba(42, 82, 152, 0.2);
}

.author-hero__content h1 {
    margin: 0 0 10px 0;
    color: #1e3c72;
    font-size: 36px;
}

.author-title {
    font-size: 18px;
    color: #2a5298;
    font-weight: 600;
    margin-bottom: 25px;
}

.author-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2a5298;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-top: 5px;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.expertise-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.expertise-item h3 {
    margin-top: 0;
    color: #1e3c72;
    font-size: 18px;
}

.expertise-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Approach List */
.approach-list {
    margin-top: 30px;
}

.approach-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.approach-number {
    flex: 0 0 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 10px;
}

.approach-content h3 {
    margin-top: 0;
    color: #1e3c72;
}

.approach-content p {
    font-size: 15px;
    color: #555;
}

/* Mission Section */
.mission-content {
    background: linear-gradient(to right, #f0f8ff, #ffffff);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #ffd700;
}

.mission-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    text-align: center;
    transition: border-color 0.3s ease;
}

.value-item:hover {
    border-color: #2a5298;
}

.value-item h3 {
    color: #1e3c72;
    margin-top: 0;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 14px;
    color: #666;
}

/* Contact Section */
.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
}

.contact-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

/* Disclaimer Section */
.author-disclaimer {
    background: #fff9e6;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #ffd700;
    margin-top: 40px;
}

.author-disclaimer h2 {
    color: #1e3c72;
    margin-top: 0;
}

.author-disclaimer p {
    color: #555;
    line-height: 1.7;
}

/* Responsive Design for Author Page */
@media (max-width: 768px) {
    .author-hero {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .author-hero__image {
        flex: none;
    }
    
    .author-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .approach-item {
        flex-direction: column;
        text-align: center;
    }
    
    .approach-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .author-hero__content h1 {
        font-size: 28px;
    }
    
    .author-title {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .expertise-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-page h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.mv-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    text-align: center;
}

.mv-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.mv-item h2 {
    margin-top: 0;
    color: #1e3c72;
    border: none;
    padding: 0;
}

.mv-item p {
    text-align: left;
    line-height: 1.8;
}

/* Our Story */
.our-story p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-item h3 {
    margin-top: 0;
    color: #1e3c72;
}

.service-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Values List */
.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    border-color: #2a5298;
    box-shadow: 0 5px 15px rgba(42, 82, 152, 0.1);
}

.value-card h3 {
    color: #1e3c72;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Team Roles */
.team-roles {
    margin-top: 25px;
}

.role-item {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.role-item h3 {
    color: #1e3c72;
    margin-top: 0;
    margin-bottom: 10px;
}

.role-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Methodology Steps */
.methodology-steps {
    margin-top: 30px;
}

.method-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-number {
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
}

.step-content h3 {
    margin-top: 0;
    color: #1e3c72;
    font-size: 18px;
}

.step-content p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

/* Commitment Section */
.commitment-content {
    background: linear-gradient(to right, #f0f8ff, #ffffff);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #2a5298;
    margin-top: 20px;
}

.commitment-list {
    margin-top: 25px;
}

.commitment-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.check-icon {
    flex: 0 0 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a5298;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
}

.commitment-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.contact-box {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 25px;
text-align: left;
}
.contact-method {
background: #fff;
padding: 25px;
border-radius: 10px;
border: 2px solid #e0e0e0;
}
.contact-method h3 {
color: #1e3c72;
margin-top: 0;
margin-bottom: 15px;
}
.contact-method p {
font-size: 15px;
color: #555;
margin-bottom: 10px;
}
.contact-method strong {
color: #2a5298;
font-size: 16px;
}
/* Responsible Gaming Info */
.responsible-gaming-info {
background: #fff9e6;
padding: 30px;
border-radius: 10px;
border: 2px solid #ffd700;
margin-top: 40px;
}
.responsible-gaming-info h2 {
color: #1e3c72;
margin-top: 0;
}
.help-organizations {
list-style: none;
padding: 0;
margin: 20px 0;
}
.help-organizations li {
margin-bottom: 10px;
}
.help-organizations a {
color: #2a5298;
text-decoration: none;
font-weight: 600;
font-size: 16px;
}
.help-organizations a:hover {
text-decoration: underline;
}
.age-warning {
background: #ffe6e6;
padding: 15px;
border-radius: 8px;
border-left: 4px solid #d32f2f;
margin-top: 20px;
font-size: 15px;
}
.age-warning strong {
color: #d32f2f;
}
/* Responsive Design for About Page */
@media (max-width: 768px) {
.mv-grid {
grid-template-columns: 1fr;
}
.services-grid,
.values-list {
    grid-template-columns: 1fr;
}

.method-step {
    flex-direction: column;
    text-align: center;
}

.step-number {
    margin: 0 auto;
}

.contact-box {
    grid-template-columns: 1fr;
}
}
@media (max-width: 480px) {
.commitment-item {
flex-direction: column;
align-items: center;
text-align: center;
}
.check-icon {
    margin-bottom: 10px;
}
}

/* Legal Pages Styles */
.legal-page h1 {
    text-align: center;
    margin-bottom: 30px;
}

.legal-intro {
    background: linear-gradient(to right, #f0f8ff, #ffffff);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
    margin-bottom: 30px;
}

.legal-intro p {
    margin-bottom: 10px;
    font-size: 15px;
}

.legal-intro strong {
    color: #1e3c72;
}

.legal-section {
    margin-bottom: 35px;
}

.legal-section h2 {
    color: #1e3c72;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #2a5298;
    padding-bottom: 8px;
}

.legal-section h3 {
    color: #2a5298;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
    padding: 0;
}

.legal-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.legal-section ul li strong {
    color: #1e3c72;
}

.legal-footer {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.legal-footer p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

/* Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 20px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-section h3 {
        font-size: 16px;
    }
    
    .legal-section p,
    .legal-section ul li {
        font-size: 14px;
    }
}

/* Vodniki Page Styles */
.wrapper {
    background: #f5f5f5;
}

.intro-home {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.intro-home__title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #fff;
}

.intro-home__subtitle {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: #999;
    font-size: 18px;
}

.breadcrumbs a {
    color: #2a5298;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #1e3c72;
}

.breadcrumbs span {
    color: #666;
}

/* Content */
.content {
    padding: 40px 0;
}

.guides-intro {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.guides-intro h2 {
    color: #1e3c72;
    margin-top: 0;
    margin-bottom: 15px;
}

.guides-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Casino Bonuses Grid */
.casino-bonuses {
    margin-bottom: 50px;
}

.casino-bonuses ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    max-width: 1400px;
}

.casino-bonuses li {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(33.333% - 20px);
    min-width: 280px;
    max-width: 320px;
}

.casino-bonuses li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(42, 82, 152, 0.15);
}

.casino-bonuses__logo {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.casino-bonuses__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casino-bonuses__desc {
    font-size: 13px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-weight: 600;
}

.casino-bonuses__text {
    font-size: 20px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
    line-height: 1.4;
}

.casino-bonuses .button {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(42, 82, 152, 0.3);
}

.casino-bonuses .button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(42, 82, 152, 0.4);
}

/* Guides Info Section */
.guides-info {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.guides-info h2 {
    text-align: center;
    color: #1e3c72;
    margin-top: 0;
    margin-bottom: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #2a5298;
}

.info-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.info-item h3 {
    color: #1e3c72;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.info-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Guides CTA */
.guides-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e0e0e0;
}

.guides-cta h2 {
    color: #1e3c72;
    margin-top: 0;
    margin-bottom: 15px;
}

.guides-cta p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.guides-cta a {
    color: #2a5298;
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-home {
        padding: 40px 20px;
    }
    
    .intro-home__title {
        font-size: 32px;
    }
    
    .intro-home__subtitle {
        font-size: 16px;
    }
    
    .casino-bonuses ul {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .guides-info,
    .guides-cta {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .intro-home__title {
        font-size: 26px;
    }
    
    .breadcrumbs {
        font-size: 14px;
    }
    
    .casino-bonuses__text {
        font-size: 18px;
    }
}

/* Casino Review Page Styles */
.wrapper {
    background: #f5f5f5;
}

.cols {
    padding: 40px 0;
}

.cols__main {
    width: 100%;
}

/* Casino Info Card */
.casino-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
}

.casino-info-card__header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
}

.casino-info-card__logo {
    width: 150px;
    height: auto;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.casino-info-card__title-block {
    flex: 1;
}

.casino-info-card__title {
    font-size: 28px;
    color: #1e3c72;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.casino-info-card__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.rating-stars {
    color: #ffd700;
    font-size: 20px;
}

.rating-text {
    font-size: 16px;
    font-weight: 600;
    color: #2a5298;
}

.casino-info-card__availability {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.casino-info-card__details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.detail-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #2a5298;
}

.detail-label {
    display: block;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.detail-value {
    display: block;
    font-size: 18px;
    color: #1e3c72;
    font-weight: 700;
}

.casino-info-card__payments {
    margin-bottom: 25px;
}

.payments-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-badge {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.casino-info-card__button {
    display: block;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    text-align: center;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

.casino-info-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.4);
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.pros,
.cons {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pros {
    border-left: 4px solid #4caf50;
}

.cons {
    border-left: 4px solid #f44336;
}

.pros h4 {
    color: #4caf50;
    margin: 0 0 15px 0;
    font-size: 20px;
}

.cons h4 {
    color: #f44336;
    margin: 0 0 15px 0;
    font-size: 20px;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros ul li,
.cons ul li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.pros ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 18px;
}

.cons ul li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
    font-size: 18px;
}

/* Bonus Box */
.bonus-box {
    background: linear-gradient(to right, #fff9e6, #ffffff);
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

.bonus-box p {
    line-height: 1.7;
}

.bonus-box strong {
    color: #1e3c72;
    font-size: 18px;
}

/* Table Styles */
.table {
    margin: 25px 0;
    overflow-x: auto;
}

.table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.table th {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    line-height: 1.6;
}

.table tr:last-child td {
    border-bottom: none;
}

.table tr:hover {
    background: #f8f9fa;
}

.table-action-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.table-action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(42, 82, 152, 0.3);
}

/* FAQ Styles */
.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #1e3c72;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Content Typography */
.content h1 {
    font-size: 32px;
    color: #1e3c72;
    margin-bottom: 25px;
    line-height: 1.3;
}

.content h2 {
    font-size: 26px;
    color: #2a5298;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 10px;
}

.content h3 {
    font-size: 20px;
    color: #1e3c72;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .casino-info-card {
        padding: 20px;
    }
    
    .casino-info-card__header {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-info-card__logo {
        width: 120px;
    }
    
    .casino-info-card__details {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .content h1 {
        font-size: 24px;
    }
    
    .content h2 {
        font-size: 20px;
    }
    
    .table {
        font-size: 14px;
    }
    
    .table th,
    .table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .casino-info-card__title {
        font-size: 22px;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .detail-value {
        font-size: 16px;
    }
}


/* 404 Error Page Styles */
.error-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.error-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.error-content {
    max-width: 600px;
}

.error-number {
    font-size: 120px;
    font-weight: 900;
    color: #2a5298;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-title {
    font-size: 42px;
    color: #1e3c72;
    margin-bottom: 20px;
    font-weight: 700;
}

.error-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.error-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.error-button--primary {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

.error-button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.4);
}

.error-button--secondary {
    background: #fff;
    color: #2a5298;
    border: 2px solid #2a5298;
}

.error-button--secondary:hover {
    background: #2a5298;
    color: #fff;
    transform: translateY(-2px);
}

.error-suggestions {
    margin-bottom: 40px;
}

.error-suggestions h2 {
    font-size: 20px;
    color: #1e3c72;
    margin-bottom: 20px;
}

.suggestion-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.suggestion-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.suggestion-link:hover {
    background: #e8f0fe;
    border-color: #2a5298;
    transform: translateX(5px);
}

.suggestion-icon {
    font-size: 24px;
}

.error-search {
    background: #f0f8ff;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
}

.error-search h3 {
    font-size: 18px;
    color: #1e3c72;
    margin-bottom: 10px;
}

.error-search p {
    color: #666;
    margin-bottom: 10px;
}

.contact-link {
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.contact-link:hover {
    text-decoration: underline;
}

.error-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-illustration svg {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Responsive Design */
@media (max-width: 968px) {
    .error-container {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
    
    .error-illustration {
        order: -1;
    }
    
    .error-illustration svg {
        max-width: 200px;
    }
    
    .error-number {
        font-size: 80px;
    }
    
    .error-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .error-container {
        padding: 30px;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .error-button {
        width: 100%;
        justify-content: center;
    }
    
    .suggestion-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .error-page {
        padding: 30px 0;
    }
    
    .error-container {
        padding: 20px;
    }
    
    .error-number {
        font-size: 60px;
    }
    
    .error-title {
        font-size: 24px;
    }
    
    .error-description {
        font-size: 16px;
    }
}

.top-games-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin: 40px auto;
        max-width: 900px;
    }

    .game-card {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 30px 20px;
        border-radius: 15px;
        text-align: center;
        color: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .game-card__icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .game-card__title {
        font-size: 20px;
        font-weight: 700;
        margin: 10px 0;
        color: white;
    }

    .game-card__rating {
        color: #ffd700;
        font-size: 14px;
        margin: 10px 0;
    }

    .game-card__desc {
        font-size: 14px;
        opacity: 0.9;
        margin: 0;
        color: white;
    }

    .providers-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin: 40px 0;
    }

    .provider-card {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 12px;
        border-left: 4px solid #2a5298;
        transition: all 0.3s ease;
    }

    .provider-card:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
    }

    .provider-card h3 {
        color: #1e3c72;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .provider-card p {
        color: #666;
        line-height: 1.7;
        margin: 0;
    }

    .steps-container {
        margin: 40px 0;
    }

    .step-item {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        padding: 25px;
        background: #f0f8ff;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .step-item:hover {
        box-shadow: 0 5px 20px rgba(42, 82, 152, 0.15);
        transform: translateX(5px);
    }

    .step-number {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
        color: white;
        font-size: 24px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .step-content h4 {
        color: #1e3c72;
        font-size: 18px;
        margin: 0 0 10px 0;
    }

    .step-content p {
        color: #666;
        line-height: 1.7;
        margin: 0;
    }

    @media (max-width: 768px) {
        .top-games-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            max-width: 100%;
        }

        .game-card {
            padding: 20px 15px;
        }

        .game-card__icon {
            font-size: 36px;
        }

        .providers-grid {
            grid-template-columns: 1fr;
        }

        .step-item {
            flex-direction: column;
            padding: 20px;
        }
    }

    @media (max-width: 480px) {
        .top-games-grid {
            grid-template-columns: 1fr;
        }
    }