/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #059669, #0d9488);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #047857, #0f766e);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.btn-outline {
    background: transparent;
    color: #1877f2;
    border: 2px solid #1e3a8a;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: #1e3a8a;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.age-modal-content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.age-logo {
    margin-bottom: 24px;
}

.logo-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.age-modal h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.age-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fef2f2;
    color: #dc2626;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-weight: 600;
}

.age-modal p {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.age-disclaimer {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 0;
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 100;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease;
}

.cookie-content {
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cookie-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.cookie-text p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #fbbf24, #1e3a8a) 1;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a8a, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 12px;
    color: #6b7280;
    margin-top: -2px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a8a;
    background: #eff6ff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #1e3a8a;
    border-radius: 2px;
}

.responsible-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    padding: 8px 16px;
    border-radius: 12px;
}

.badge-18 {
    color: #059669;
    font-weight: 700;
    font-size: 16px;
}

.badge-text {
    color: #047857;
    font-size: 12px;
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #059669 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    color: #bfdbfe;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Section */
.stats {
    background: white;
    padding: 64px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* License Notice */
.license-notice {
    background: #ecfdf5;
    padding: 32px 0;
}

.license-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #047857;
    font-weight: 600;
    font-size: 18px;
}

.license-icon {
    font-size: 32px;
}

/* Filters */
.filters {
    background: white;
    padding: 32px 0;
    border-bottom: 1px solid #e5e7eb;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    background: #f3f4f6;
    color: #374151;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #1e3a8a, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.filter-icon {
    font-size: 20px;
}

/* Casino Section */
.casinos {
    background: #f9fafb;
    padding: 64px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
    align-items: stretch;
}

.casino-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.casino-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.casino-sponsored {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-weight: 700;
}

.casino-header {
    background: linear-gradient(135deg, #eff6ff, #ecfdf5);
    padding: 24px;
}

.casino-header-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.casino-rank {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.casino-logo {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.casino-details h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star {
    color: #fbbf24;
    font-size: 16px;
}

.star.empty {
    color: #d1d5db;
}

.rating-text {
    margin-left: 8px;
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
}

.casino-license {
    text-align: right;
}

.license-badge {
    background: #ecfdf5;
    color: #047857;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    display: inline-block;
}

.license-number {
    font-size: 10px;
    color: #6b7280;
}

.casino-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.casino-bonus {
    background: linear-gradient(135deg, #1e3a8a, #059669);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.bonus-amount {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.bonus-type {
    font-size: 14px;
    opacity: 0.9;
}

.casino-features {
    margin-bottom: 20px;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.feature-label {
    color: #6b7280;
}

.feature-value {
    font-weight: 600;
    color: #047857;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #374151;
}

.casino-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.casino-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.casino-cta {
    flex: 1;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.casino-cta:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.casino-favorite {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-favorite:hover {
    background: #f9fafb;
    border-color: #fbbf24;
    transform: scale(1.05);
}

.casino-favorite.favorited {
    background: #fef2f2;
    border-color: #f87171;
    color: #dc2626;
}

.casino-favorite.favorited:hover {
    background: #fee2e2;
    border-color: #dc2626;
}

.casino-terms {
    font-size: 10px;
    color: #9ca3af;
    text-align: center;
    margin-top: 12px;
}

.view-all {
    text-align: center;
}

/* Why Choose Section */
.why-choose {
    background: white;
    padding: 64px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 32px;
    border-radius: 16px;
    background: #f9fafb;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsible Gaming Section */
.responsible-gaming {
    background: linear-gradient(135deg, #047857, #1e3a8a);
    color: white;
    padding: 64px 0;
}

.age-restriction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #dc2626;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 48px;
}

.age-badge {
    font-size: 36px;
    font-weight: 700;
}

.age-text {
    text-align: center;
}

.age-text p:first-child {
    font-weight: 700;
    font-size: 18px;
}

.age-text p:last-child {
    font-size: 14px;
    opacity: 0.9;
}

.support-orgs h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
}

.orgs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.org-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.org-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}

.org-logo {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin: 0 auto 16px;
    overflow: hidden;
}

.org-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.org-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.org-card p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.org-phone,
.org-website {
    font-weight: 600;
    font-size: 14px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1f2937, #1e3a8a);
    color: white;
    padding: 64px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer-responsible {
    background: #047857;
    color: white;
    padding: 24px 0;
}

.footer-responsible h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.responsible-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.resp-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.resp-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.logo-box {
    width: 48px;
    height: 48px;
    background: white;
    color: #047857;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.resp-logo span {
    font-size: 14px;
    font-weight: 500;
}

.footer-main {
    background: #1f2937;
    color: white;
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
}

.footer-section p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.instagram {
    background: #e4405f;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    background: #111827;
    color: #9ca3af;
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright p {
    font-size: 14px;
    margin-bottom: 4px;
}

.age-notice {
    display: flex;
    align-items: center;
    gap: 12px;
}

.age-badge-large {
    background: #fbbf24;
    color: #1f2937;
    font-size: 24px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 8px;
}

.age-text-small {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 800px) {
    .stats-grid {
        display: block !important;
    }
    
    .casino-grid {
        display: block !important;
    }
    
    .features-grid {
        display: block !important;
    }
    
    .orgs-grid {
        display: block !important;
    }
    
    .footer-grid {
        display: block !important;
    }
    .reviews-grid, .reviews-grid, .about-grid {
        display: block !important;
    }
    .guides-grid {
        display: flex !important;
        flex-direction: column;
    }
    .hero-class {
        display: block !important;
    }
}

@media (max-width: 768px) {

    

    .container {
        padding: 0 16px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .responsible-badge {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-info {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .orgs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .responsible-logos {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .age-restriction {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .age-modal-content {
        padding: 24px;
    }
    
    .hero {
        padding: 48px 0;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-actions {
        flex-direction: column;
    }
}

/* Hidden class for JavaScript */
.hidden {
    display: none !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}