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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Lists */
ul, ol {
    margin: 16px 0;
    padding-left: 24px;
    color: #d1d5db;
    line-height: 1.6;
}

ul li, ol li {
    margin-bottom: 8px;
    position: relative;
}

ul li::marker {
    color: #fbbf24;
}

ol li::marker {
    color: #fbbf24;
    font-weight: 600;
}

/* Nested lists */
ul ul, ol ol, ul ol, ol ul {
    margin: 8px 0;
    padding-left: 20px;
}

/* Custom bullet for unordered lists */
ul li {
    list-style-type: none;
}

ul li::before {
    content: "▶";
    color: #fbbf24;
    font-size: 12px;
    position: absolute;
    left: -20px;
    top: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #374151;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.text-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text {
    font-size: 24px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-accent {
    font-size: 24px;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.logo-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffffff;
}

.nav-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn {
    padding: 8px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-signup {
    background-color: #16a34a;
    color: white;
}

.btn-signup:hover {
    background-color: #15803d;
}

.btn-login {
    background-color: #2563eb;
    color: white;
}

.btn-login:hover {
    background-color: #1d4ed8;
}

.btn-claim {
    background-color: #dc2626;
    color: white;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    transform: scale(1);
}

.btn-claim:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
}

.btn-info-cta {
    background-color: transparent;
    color: #d1d5db;
    border: 1px solid #4b5563;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
    display: inline-block;
}

.btn-info-cta:hover {
    background-color: #374151;
    border-color: #6b7280;
    color: #ffffff;
}

.btn-claim-small {
    background-color: #dc2626;
    color: white;
    padding: 12px 24px;
    width: 100%;
}

.btn-claim-small:hover {
    background-color: #b91c1c;
}

.btn-claim-medium {
    background-color: #dc2626;
    color: white;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-claim-medium:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Header Section */
.header {
    padding: 96px 0 64px;
    background: linear-gradient(135deg, #111827 0%, #374151 50%, #111827 100%);
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
	margin-top: 64px;
	
}

.header-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 24px;
}

.header-text p {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 32px;
    line-height: 1.6;
}

.header-image {
    position: relative;
    z-index: 10;
}

.header-img {
    width: 100%;
    max-height: 450px;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    background-color: #374151;
    transform: translateY(40px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-img {
    width: 100%;
    max-height: 320px;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    background-color: #374151;
}

.header-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background-color: transparent;
    border-radius: 20px;
    position: relative;
}

.info-block img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    background-color: #374151;
    border-radius: 16px;
}

/* Responsive image adjustments */
@media (max-width: 768px) {
    .header-img {
        max-height: 350px;
        transform: translateY(20px);
    }
    
    .info-img {
        max-height: 250px;
    }
    
    .header-image {
        min-height: 320px;
    }
    
    .info-block img {
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .header-img {
        max-height: 280px;
        transform: translateY(15px);
        border-radius: 16px;
    }
    
    .info-img {
        max-height: 200px;
    }
    
    .header-image {
        min-height: 260px;
    }
    
    .info-block img {
        min-height: 180px;
    }
}

/* Sections */
.section {
    padding: 64px 0;
}

.section-dark {
    background-color: #374151;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 48px;
}

/* Bonuses Section */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.bonus-card {
    background-color: #374151;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #4b5563;
    text-align: center;
    transition: border-color 0.3s;
}

.bonus-card:hover {
    border-color: #6b7280;
}

.bonus-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background-color: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.bonus-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.bonus-card p {
    color: #d1d5db;
    margin-bottom: 24px;
}

/* Info Blocks */
.info-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 64px;
}

.info-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.info-text p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 16px;
}

.info-text p:last-of-type {
    margin-bottom: 0;
}

/* Top Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.game-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #4b5563;
}

/* Game Overlay */
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-now-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.games-button-container {
    text-align: center;
}

.btn-all-games {
    background-color: #fbbf24;
    color: #000000;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-all-games:hover {
    background-color: #f59e0b;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

/* Top Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.game-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #4b5563;
}

.games-button-container {
    text-align: center;
}

.btn-all-games {
    background-color: #fbbf24;
    color: #000000;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-all-games:hover {
    background-color: #f59e0b;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

/* Software Providers Section */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .providers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

@media (min-width: 768px) {
    .providers-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .providers-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
    }
}

.provider-card {
    background-color: #4b5563;
    border-radius: 8px;
    padding: 16px;
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #6b7280;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.provider-card:hover {
    background-color: #6b7280;
    border-color: #9ca3af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Provider Overlay */
.provider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.provider-card:hover .provider-overlay {
    opacity: 1;
}

.provider-img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.provider-card:hover .provider-img {
    filter: brightness(1);
}

/* Mobile responsiveness for providers */
@media (max-width: 480px) {
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .provider-card {
        padding: 12px;
    }
    
    .provider-img {
        max-height: 82px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-highlight {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-highlight:hover::before {
    left: 100%;
}

.cta-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #374151;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.cta-secondary:hover {
    border-color: #6b7280;
    background-color: #374151;
    transform: translateY(-2px);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.review-card {
    background-color: #374151;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #4b5563;
}

.stars {
    display: flex;
    margin-bottom: 16px;
}

.star {
    color: #fbbf24;
    font-size: 20px;
}

.star.empty {
    color: #6b7280;
}

.review-text {
    color: #d1d5db;
    margin-bottom: 16px;
}

/* Reviewer Info */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4b5563;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 2px;
}

.reviewer-location {
    font-size: 14px;
    color: #9ca3af;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #1f2937;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid #374151;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.faq-question::before {
    content: "▼";
    margin-right: 8px;
    color: #9ca3af;
}

.faq-answer {
    color: #d1d5db;
    line-height: 1.6;
}

/* Table */
.table-container {
    max-width: 900px;
    margin: 0 auto;
}

.info-table {
    width: 100%;
    background-color: #374151;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #4b5563;
}

.info-table tr {
    border-bottom: 1px solid #4b5563;
    transition: background-color 0.3s;
}

.info-table tr:hover {
    background-color: #4b5563;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 16px 24px;
}

.info-table td:first-child {
    font-weight: 600;
}

.info-table td:last-child {
    color: #d1d5db;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 48px 0;
    border-top: 1px solid #374151;
}

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

.footer-section h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

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

.footer-links a::before {
    content: "🔗";
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    color: #6b7280;
}

/* Payment Methods Table */
.payment-table-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 12px;
    background-color: #374151;
    border: 1px solid #4b5563;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #374151;
}

.payment-table thead {
    background-color: #1f2937;
}

.payment-table th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: #d1d5db;
    border-bottom: 1px solid #4b5563;
    font-size: 14px;
}

.payment-table tbody tr {
    border-bottom: 1px solid #4b5563;
    transition: background-color 0.3s;
}

.payment-table tbody tr:hover {
    background-color: #4b5563;
}

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

.payment-table td {
    padding: 16px 12px;
    color: #d1d5db;
    font-size: 14px;
    vertical-align: middle;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 140px;
}

.payment-logo {
    width: 40px;
    height: 28px;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 4px;
}

.payment-method span {
    font-weight: 500;
    color: #ffffff;
}

.btn-deposit {
    background-color: #fbbf24;
    color: #000000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-deposit:hover {
    background-color: #f59e0b;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(251, 191, 36, 0.3);
}

/* Mobile responsiveness for payment table */
@media (max-width: 768px) {
    .payment-table-container {
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .payment-method {
        min-width: 100px;
        gap: 8px;
    }
    
    .payment-logo {
        width: 32px;
        height: 22px;
    }
    
    .btn-deposit {
        padding: 6px 12px;
        font-size: 10px;
    }
}

/* SEO Text Blocks */
.seo-text-block {
    max-width: 1000px;
    margin: 48px auto 0;
    padding: 32px;
    background-color: #1f2937;
    border-radius: 12px;
    border: 1px solid #374151;
}

.seo-text-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.seo-text-block p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 16px;
}

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

/* SEO Content Block */
.seo-content-block {
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 32px;
    background-color: #1f2937;
    border-radius: 16px;
    border: 1px solid #374151;
}

.seo-content-block h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.2;
}

.seo-content-block h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin: 32px 0 16px 0;
    line-height: 1.3;
}

.seo-content-block h3:first-of-type {
    margin-top: 0;
}

.seo-content-block p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: justify;
}

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

/* Mobile responsiveness for SEO blocks */
@media (max-width: 768px) {
    .seo-text-block {
        margin: 32px -20px 0;
        padding: 24px 20px;
        border-radius: 0;
    }
    
    .seo-content-block {
        margin: 0 -20px;
        padding: 32px 20px;
        border-radius: 0;
    }
    
    .seo-content-block h2 {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    
    .seo-content-block h3 {
        font-size: 1.5rem;
        margin: 24px 0 12px 0;
    }
    
    .seo-content-block p {
        text-align: left;
        font-size: 15px;
        margin-bottom: 16px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .logo-img {
        height: 32px;
        max-width: 120px;
    }

    .nav-menu {
        display: none;
    }

    .nav-buttons {
        gap: 6px;
    }

    .nav-buttons .btn {
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 600;
    }

    .header-content {
        grid-template-columns: 1fr;
        text-align: center;
		
    }

    .header-text h1 {
        font-size: 2.5rem;
    }

    .info-block {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .info-block:nth-child(even) .info-text {
        order: 1;
    }

    .info-block:nth-child(even) .image-placeholder {
        order: 2;
    }

    .section-title {
        font-size: 2rem;
    }

    .info-text h2 {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }

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

    .cta-highlight,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Основные стили для иконок ответственной игры */
.responsible-gaming-icons {
    width: 100%;
    margin: 0 auto;
}

.rg-icons-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.rg-icons-grid figure {
    margin: 0;
    padding: 0;
}

.rg-icon {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.rg-icon:hover {
    opacity: 1;
}

/* Планшеты */
@media (max-width: 768px) {
    .rg-icons-grid {
        gap: 25px;
    }
    
    .rg-icon {
        height: 45px;
        max-width: 100px;
    }
}

/* Мобильные устройства */
@media (max-width: 480px) {
    .logo-text,
    .logo-accent {
        font-size: 18px;
    }
    
    .rg-icons-grid {
        gap: 20px;
        padding: 15px 10px;
    }
    
    .rg-icon {
        height: 40px;
        max-width: 80px;
    }
    
    .nav-buttons {
        gap: 4px;
    }
    .nav-buttons .btn {
        padding: 5px 10px;
        font-size: 11px;
    }
    .header-text h1 {
        font-size: 2rem;
    }
    .header-text p {
        font-size: 16px;
    }
    .btn-claim {
        padding: 12px 32px;
        font-size: 16px;
    }
    .cta-title {
        font-size: 1.8rem;
    }
    .cta-subtitle {
        font-size: 16px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 360px) {
    .rg-icons-grid {
        gap: 15px;
    }
    
    .rg-icon {
        height: 35px;
        max-width: 70px;
    }
}

@media (max-width: 768px) {
    .header {
        padding-top: 128px; /* Increase padding-top to account for the 64px navbar height */
    }
}

@media (max-width: 768px) {
    .header-content {
        margin-top: 84px; /* Offset by the navbar height */
    }
}