/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a1a3a;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 160px),
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 160px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    background: #0a1a3a;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-casino-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.casino-symbol {
    position: absolute;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.04);
    font-weight: 300;
    animation: floatSymbol 20s ease-in-out infinite;
}

.casino-symbol-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.casino-symbol-2 {
    top: 20%;
    right: 8%;
    animation-delay: 2s;
    color: rgba(255, 0, 0, 0.04);
}

.casino-symbol-3 {
    top: 50%;
    left: 3%;
    animation-delay: 4s;
    color: rgba(255, 0, 0, 0.04);
}

.casino-symbol-4 {
    top: 60%;
    right: 5%;
    animation-delay: 6s;
}

.casino-symbol-5 {
    top: 15%;
    left: 25%;
    font-size: 50px;
    color: rgba(255, 215, 0, 0.05);
    animation-delay: 1s;
}

.casino-symbol-6 {
    top: 70%;
    right: 20%;
    font-size: 50px;
    color: rgba(255, 215, 0, 0.05);
    animation-delay: 3s;
}

.casino-symbol-7 {
    top: 35%;
    left: 15%;
    animation-delay: 5s;
}

.casino-symbol-8 {
    top: 45%;
    right: 15%;
    animation-delay: 7s;
    color: rgba(255, 0, 0, 0.04);
}

.casino-symbol-9 {
    top: 80%;
    left: 10%;
    animation-delay: 8s;
    color: rgba(255, 0, 0, 0.04);
}

.casino-symbol-10 {
    top: 5%;
    right: 25%;
    animation-delay: 9s;
}

@keyframes floatSymbol {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.04;
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(5deg);
        opacity: 0.04;
    }
    50% {
        transform: translateY(-25px) translateX(-5px) rotate(-5deg);
        opacity: 0.04;
    }
    75% {
        transform: translateY(-10px) translateX(15px) rotate(3deg);
        opacity: 0.04;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #4caf50;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.8;
}

.btn-hero {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-hero:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

.btn-hero:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-characters-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* Casino Cards Section */
.casino-cards-section {
    background: #f5f5f5;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.casino-card {
    width: 100%;
    max-width: 100%;
}

.casino-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.card-badge {
    position: absolute;
    left: -16px;
    background: #ffd700;
    color: #000000;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.recommended {
    top: 58px;
}

.best-choice {
    top: 58px;
}

.verified-badge {
    top: 20px;
    left: -16px;
    background: rgba(76, 175, 80, 0.95);
    color: #ffffff;
    border: 1px solid rgba(76, 175, 80, 1);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.5);
    z-index: 11;
    padding: 8px 16px;
}

.verified-badge::before {
    content: '✓';
    margin-right: 4px;
    font-weight: 700;
}

.casino-card-wrapper {
    display: flex;
    min-height: 280px;
    width: 100%;
}

.casino-card-logo {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    color: #ffffff;
    font-weight: 700;
    border-radius: 16px 0 0 16px;
}

.nordicbet-logo {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
}

.expekt-logo {
    background: linear-gradient(135deg, #ff6600 0%, #cc5500 100%);
}

.logo-text-large {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-align: center;
    word-wrap: break-word;
    white-space: normal;
}

.logo-text-small {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.expekt-logo .logo-text-small {
    font-size: 20px;
    margin-left: 0;
    margin-top: 6px;
}

.logo-text-large sup {
    font-size: 20px;
    vertical-align: super;
    font-weight: 400;
    opacity: 0.9;
}

.casino-card-content {
    flex: 1;
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

.offer-table tr {
    border-bottom: none;
}

.offer-table td {
    padding: 8px 0;
    vertical-align: top;
}

.table-label {
    font-size: 11px;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    padding-right: 20px;
    width: 35%;
    line-height: 1.2;
}

.table-value {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    text-align: left;
    width: 65%;
}

.offer-table tr:nth-child(2) .table-value {
    font-size: 22px;
}

.rating-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    line-height: 1;
}

.score-number {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -1px;
}

.stars {
    display: flex;
    gap: 4px;
    align-items: center;
}

.star {
    color: #ffd700;
    font-size: 22px;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.star.half {
    opacity: 0.5;
    position: relative;
}

.star.half::after {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #ffd700;
}


.btn-bonus,
a.btn-bonus {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    margin-top: 8px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-bonus:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

.btn-bonus:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.card-terms {
    font-size: 11px;
    color: #777777;
    line-height: 1.4;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid #e8e8e8;
}

/* SEO Content Section */
.seo-content-section {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.seo-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content-block {
    margin-bottom: 50px;
}

.seo-content-block:last-child {
    margin-bottom: 0;
}

.seo-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.seo-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}

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

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

.seo-text strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Information Sections */
.info-sections {
    background: #0a1a3a;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-block {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.info-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Responsible Gaming Footer */
.responsible-footer {
    background: #1a1a2e;
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 8px;
}

.footer-block-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-block-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-age {
    width: 60px;
    height: 60px;
    background: #ff0000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.footer-slogan {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 600;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-logo-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.footer-logo-link:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.footer-logo-img {
    max-height: 50px;
    max-width: 120px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
    opacity: 1;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.made-with {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Page Styles */
.page-header {
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.content-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.content-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-text:last-child {
    margin-bottom: 0;
}

.content-link {
    color: #4caf50;
    text-decoration: none;
    transition: color 0.3s;
}

.content-link:hover {
    color: #45a049;
    text-decoration: underline;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-list li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.content-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-size: 20px;
    line-height: 1;
}

/* Enhanced Page Styles */
.page-header-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    color: #4caf50;
}

.page-header-icon i {
    display: inline-block;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 400;
}

.content-hero {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(10, 26, 58, 0.5) 100%);
    border-radius: 16px;
    margin-bottom: 50px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.content-hero .hero-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    color: #4caf50;
}

.content-hero .hero-icon i {
    display: inline-block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(76, 175, 80, 0.3);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    color: #4caf50;
}

.value-icon i {
    display: inline-block;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.value-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
    color: #4caf50;
}

.section-icon i {
    display: inline-block;
}

.work-process {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #4caf50;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.highlight-section {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(10, 26, 58, 0.5) 100%);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.help-organizations {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.help-link:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
    transform: translateY(-2px);
}

.help-icon {
    font-size: 20px;
    color: #4caf50;
}

.help-icon i {
    display: inline-block;
}

.cta-section {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(10, 26, 58, 0.6) 100%);
    border: 2px solid rgba(76, 175, 80, 0.3);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .casino-cards-section {
        padding: 60px 0;
    }

    .casino-cards {
        gap: 40px;
    }

    .casino-card-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .casino-card-logo {
        min-width: 100%;
        min-height: 160px;
        border-radius: 16px 16px 0 0;
        padding: 40px 30px;
    }

    .casino-card-content {
        padding: 35px 30px;
        gap: 24px;
    }

    .card-badge {
        left: 24px;
        top: -14px;
    }

    .logo-text-large {
        font-size: 40px;
    }

    .logo-text-small {
        font-size: 24px;
    }

    .offer-text {
        font-size: 20px;
    }

    .score-number {
        font-size: 36px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-blocks {
        grid-template-columns: 1fr;
    }
}

/* Legal Information Block Styles */
.legal-info-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.legal-info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-label {
    font-size: 14px;
    font-weight: 600;
    color: #a0aec0;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-value {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
}

.legal-value a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-value a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.map-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .casino-cards-section {
        padding: 40px 0;
    }

    .casino-cards {
        gap: 35px;
    }

    .casino-card-content {
        padding: 28px 24px;
        gap: 20px;
    }

    .card-badge {
        left: 20px;
        padding: 6px 16px;
        font-size: 12px;
    }

    .logo-text-large {
        font-size: 36px;
    }

    .logo-text-small {
        font-size: 20px;
    }

    .offer-text {
        font-size: 18px;
    }

    .min-deposit-amount {
        font-size: 20px;
    }

    .score-number {
        font-size: 32px;
    }

    .stars {
        gap: 3px;
    }

    .star {
        font-size: 20px;
    }

    .btn-bonus {
        padding: 16px 32px;
        font-size: 15px;
    }

    .card-terms {
        font-size: 10px;
        line-height: 1.5;
    }

    .info-sections {
        padding: 40px 0;
    }

    .responsible-footer {
        padding: 40px 0 20px;
    }
}
