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

html {
    scroll-behavior: smooth;
}

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

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

.header {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #3b82f6;
}

.desktop-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #3b82f6;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background-color: #64748b;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    padding: 16px 0;
}

.mobile-nav-link {
    display: block;
    padding: 12px 8px;
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
}

.mobile-nav-link:hover {
    color: #3b82f6;
}


.hero {
    min-height: 40vh;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(5, 150, 105, 0.9) 100%),
                url('img/ukhero.webp') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 64px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 24px;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #f59e0b;
    color: #1e293b;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

.cta-button:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Casinos Section */
.casinos-section {
    padding: 80px 0;
    background-color: white;
}

.casinos-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.casino-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s;
}

.casino-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.casino-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 32px;
    gap: 32px;
}

.casino-logo {
    flex-shrink: 0;
}

.logo-container {

    width: 260px;
    height: auto;
    margin: 0 auto;
}
.casino-logo-img {
    display: block;
    max-width: 100%;
    height: auto;
}


.casino-info {
    flex: 1;
    min-width: 300px;
}

.casino-info h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 24px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    color: #059669;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature span {
    color: #64748b;
    font-size: 16px;
}

.bonus-offer {
    flex-shrink: 0;
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    color: white;
    min-width: 220px;
}

.rizk-bonus {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.betgrouse-bonus {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.bonus-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    opacity: 0.9;
}

.bonus-amount {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 4px;
}

.bonus-extra {
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.bonus-button {
    display: inline-block;
    background-color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    margin-bottom: 12px;
}

.rizk-button {
    color: #ea580c;
}

.rizk-button:hover {
    background-color: #fed7aa;
}

.betgrouse-button {
    color: #059669;
}

.betgrouse-button:hover {
    background-color: #a7f3d0;
}

.bonus-terms {
    font-size: 12px;
    opacity: 0.8;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 32px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 32px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsible Gambling Section */
.responsible-gambling {
    padding: 80px 0;
    background-color: #f1f5f9;
    text-align: center;
}

.responsible-gambling h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 32px;
}

.age-restriction {
    margin-bottom: 48px;
}

.age-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #333;
    margin: 0 auto;
    margin-bottom: 20px;
}

.org-icon .org-img {
    width: 140px;
    height: 80px;
    display: block;
}


.age-badge .age-icon {
    width: 80px;
    height: 80px;
    margin-right: 8px;
}



.age-number {
    font-size: 24px;
    margin-right: 8px;
}

.age-restriction p {
    font-size: 18px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.org-card {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.org-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.org-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
}


.org-name {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 48px 0;
}

.footer-logo-link {
    text-decoration: none;
    display: inline-block;
    color: inherit;
}
.footer-logo-link:hover {
    text-decoration: none;
}

.logo-img {
    width: 60px;
    height: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    margin-right: 12px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: bold;
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 14px;
    color: #6b7280;
}

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

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .casino-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .casino-info {
        min-width: auto;
    }
    
    .bonus-offer {
        min-width: auto;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .org-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .casino-content {
        padding: 24px;
    }
    
    .org-grid {
        grid-template-columns: 1fr;
    }
}