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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #691595;
    color: #333;
    line-height: 1.6;
}

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

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.4s ease-in-out, background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    will-change: padding, box-shadow;
}

header.header--scrolled {
    padding: 8px 0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.logo-container {
    text-align: center;
    line-height: 0;
}

header .logo-container img {
    width: 180px;
    height: auto;
    display: inline-block;
    transition: width 0.4s ease-in-out;
    will-change: width;
}

header.header--scrolled .logo-container img {
    width: 100px;
}

.banner {
    width: 100%;
    max-width: 1200px;
    height: 150px;
    margin: 30px auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-slot {
    width: 100%;
     
    background: #fff;
    border-radius: 15px;
    
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-height: 500px;
    position: relative;
}

.demo-slot-wrapper {
    width: 100%;
    height: 650px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.demo-slot-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.demo-slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.demo-slot-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid #667eea;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

.demo-slot iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.demo-slot-fullscreen-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.demo-slot-fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.demo-slot-fullscreen-btn svg {
    flex-shrink: 0;
}

.demo-slot-fullscreen-btn.is-fullscreen svg {
    transform: rotate(180deg);
}

.demo-slot-wrapper:fullscreen,
.demo-slot-wrapper:-webkit-full-screen {
    width: 100vw !important;
    height: 100vh !important;
    max-width: none;
    max-height: none;
    border-radius: 0;
    background: #000;
}

.demo-slot-wrapper:fullscreen .demo-slot-fullscreen-btn,
.demo-slot-wrapper:-webkit-full-screen .demo-slot-fullscreen-btn {
    bottom: 20px;
    right: 20px;
}

.slot-name {
    text-align: center;
    font-size: 48px;
    color: white;
    margin: 40px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

h1 {
    text-align: left;
    font-size: 28px;
    color: #2d3748;
    margin: 24px 0 12px;
    font-weight: 700;
}

.info-block {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.info-block-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #333;
    font-weight: 700;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 10px 16px;
    background: #d0dae9;
    border-radius: 10px;
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.info-item:hover {
    transform: translateY(-2px);
}

.info-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.info-label::after {
    content: ' — ';
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0;
}

.info-value {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.casinos-block {
    margin: 40px 0;
}

.casinos-title {
    text-align: center;
    color: white;
    font-size: 36px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.casinos-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.casino-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    max-height: 110px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.casino-card__logo {
    flex-shrink: 0;
    width: 220px;
    height: 110px;
    padding: 0;
    margin: 0;
    border-radius: 15px 0 0 15px;
    overflow: hidden;
}

.casino-card__logo .casino-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casino-card__main {
    min-width: 200px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.casino-name {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.casino-rating {
    font-size: 26px;
    color: #f5a623;
    letter-spacing: 2px;
    line-height: 1;
}

.casino-card__bonus {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    flex: 1;
    max-width: 280px;
}

.casino-card__bonus-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.casino-card__bonus-value {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.casino-card__actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 20px;
    margin-left: auto;
    align-items: flex-end;
    width: 200px;
    flex-shrink: 0;
}

.casino-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold; 
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
 
    box-sizing: border-box;
}

.casino-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.review-block {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.review-title {
    font-size: 25px;
    color: #333;
    margin-bottom: 19px;
    text-align: left;
    font-weight: 700;
    overflow: hidden;
}

.review-text {
    font-size: 14px;
    color: #444;
    line-height: 1.44;
    text-align: justify;
}

.review-text p {
    margin-bottom: 16px;
}

.review-text h1,
.review-text h2,
.review-text h3,
.review-text h4,
.review-text h5,
.review-text h6 {
    text-align: left;
}

.review-text h1 {
    font-size: 22px;
    color: #2d3748;
    margin: 26px 0 10px;
    font-weight: 700;
}

.review-text h2 {
    font-size: 19px;
    color: #333;
    margin: 22px 0 8px;
    font-weight: 700;
}

.review-text h3 {
    font-size: 16px;
    color: #4a5568;
    margin: 19px 0 8px;
    font-weight: 600;
}

.review-text h4 {
    font-size: 14px;
    color: #555;
    margin: 16px 0 6px;
    font-weight: 600;
}

.review-text h5 {
    font-size: 14px;
    color: #666;
    margin: 14px 0 5px;
    font-weight: 600;
}

.review-text h6 {
    font-size: 13px;
    color: #666;
    margin: 13px 0 5px;
    font-weight: 600;
}

.review-text ol {
    margin: 13px 0 19px;
    padding-left: 22px;
    color: #444;
}

.review-text ol li {
    margin-bottom: 8px;
    padding-left: 6px;
}

.review-text ol li::marker {
    color: #667eea;
    font-weight: bold;
}

.review-text ul {
    margin: 13px 0 19px;
    padding-left: 22px;
    color: #444;
    list-style: none;
}

.review-text ul li {
    margin-bottom: 8px;
    padding-left: 19px;
    position: relative;
}

.review-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

.review-table-wrap {
    margin: 20px 0 28px;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.review-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background: #fff;
}

.review-table thead {
    background: transparent;
}

.review-table th {
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e2e8f0;
}

.review-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #e2e8f0;
    color: #444;
}

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

.review-quote {
    margin: 24px 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf4 100%);
    border-left: 4px solid #667eea;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #4a5568;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-quote p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.36;
}

.review-quote cite {
    display: block;
    font-size: 11px;
    font-style: normal;
    color: #718096;
}

.review-callout {
    margin: 22px 0;
    padding: 16px 19px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border: 1px solid #f5a623;
    border-radius: 12px;
    color: #744210;
    font-size: 13px;
    line-height: 1.36;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15);
}

.review-callout strong {
    color: #c05621;
}

.footer {
    margin-top: 60px;
    padding: 40px 0; 
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer__logo img {
    max-width: 180px;
    height: auto;
    display: block;
   
}

.footer__menus {
    display: flex;
    gap: 48px;
}

.footer__menu-title {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.footer__menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__menu-list li {
    margin-bottom: 8px;
}

.footer__menu-list a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__menu-list a:hover {
    color: #fff;
}

.footer__text {
    font-size: 14px;
    line-height: 1.5;
    max-width: 320px;
}

.footer__text p {
    margin: 0 0 8px;
}

.footer__text p:last-child {
    margin-bottom: 0;
}

.footer__copyright {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 220px;
}

@media (max-width: 768px) {
    .review-block {
        padding: 15px;
    }
    h1 {
        font-size: 32px;
    }

    .casino-card {
        flex-direction: column;
        text-align: center;
        max-height: none;
    }

    .casino-card__logo {
        width: 100%;
        height: 110px;
        border-radius: 15px 15px 0 0;
    }

    .casino-card__main {
        align-items: center;
    }

    .casino-card__bonus {
        max-width: none;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .casino-card__actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .info-grid {
        flex-direction: column;
    }

    .banner {
        height: auto;
         
    }

    .banner img {
        object-fit: contain;
        width: 100%;
        height: auto;
        max-height: none;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button::before {
        border-left: 18px solid #667eea;
        border-top: 11px solid transparent;
        border-bottom: 11px solid transparent;
        margin-left: 3px;
    }

    .footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__menus {
        flex-direction: column;
        align-items: center;
    }

    .footer__copyright {
        max-width: none;
        text-align: center;
    }
}

img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}
a img.alignright {float:right; margin:0 0 1em 1em}
a img.alignleft {float:left; margin:0 1em 1em 0}
a img.aligncenter {display: block; margin-left: auto; margin-right: auto}