/* Finnish Betting Site CSS - Pure CSS Implementation - Updated */

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

:root {
    /* Color System - HSL Values */
    --background: hsl(228, 45%, 7%);
    --foreground: hsl(210, 40%, 98%);
    --card: hsl(228, 40%, 12%);
    --card-foreground: hsl(210, 40%, 98%);
    --primary: hsl(142, 71%, 45%);
    --primary-foreground: hsl(210, 40%, 98%);
    --secondary: hsl(228, 40%, 15%);
    --secondary-foreground: hsl(210, 40%, 98%);
    --muted: hsl(228, 30%, 20%);
    --muted-foreground: hsl(210, 20%, 70%);
    --accent: hsl(18, 95%, 55%);
    --accent-foreground: hsl(210, 40%, 98%);
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(210, 40%, 98%);
    --border: hsl(228, 30%, 18%);
    --input: hsl(228, 30%, 18%);
    --ring: hsl(142, 71%, 45%);
    --success: hsl(142, 71%, 45%);
    --warning: hsl(45, 95%, 65%);
    --casino-gold: hsl(45, 95%, 65%);
    --casino-red: hsl(0, 85%, 55%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius: 0.75rem;
    
    /* Spacing */
    --container-max-width: 1080px;
    --section-padding: 4rem 1rem;
}

body {
    font-family: var(--font-family);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout Utilities */


/* FAQ Header Specific Styles */
.faq-section .section-header {
    text-align: center !important;
}

.faq-section .section-title {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    justify-content: center !important;
}

.faq-section .section-description {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    max-width: 100% !important;
}

/* FAQ Section Styles */
.faq-section {
    padding: var(--section-padding);
    background: var(--background);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--foreground);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
}
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: static;
    z-index: 1000;
    background: hsla(228, 45%, 7%, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav {
    display: none;
    gap: 2rem;
    margin-left: auto;
}

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

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}


.nav.mobile {
    position: fixed;
    inset: 0; /* top, right, bottom, left = 0 */
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    overflow-y: auto;
    display: none; /* hidden by default */
}

.nav.mobile.open {
    display: flex; /* shown when open */
}

.nav.mobile .nav-item {
    font-size: 1.25rem;
    padding: 1rem 0;
    color: var(--foreground);
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--muted-foreground);
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-item:hover,
.nav-item.active:hover {
    color: var(--primary);
}

.nav-item.active {
    color: var(--muted-foreground);
    font-weight: 400;
}

.nav-dot {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.mobile-menu-btn {
    display: block;
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: color 0.2s ease;
    z-index: 1002;
    position: relative;
}

.mobile-menu-btn:hover {
    color: var(--foreground);
}

.mobile-menu-btn.hidden {
    display: none;
}

.mobile-menu-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 0.375rem;
    z-index: 1003;
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: var(--muted);
}

/* Hero Section */
.hero {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--background), var(--secondary));
}

.hero-header {
    text-align: left;
    margin-bottom: 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.hero-content {
    text-align: left;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-top: 0rem;
    font-size: 0.875rem;
}

.hero-meta-label {
    color: var(--muted-foreground);
}

.hero-meta-date {
    font-weight: 500;
    color: var(--foreground);
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
    background: linear-gradient(to right, var(--foreground), hsla(210, 40%, 98%, 0.7));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 100%;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 60rem;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

.featured-offer {
    background: linear-gradient(145deg, var(--card), hsla(228, 35%, 15%, 1));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 336px;
    margin: 0 auto;
}

.featured-offer-content {
    text-align: center;
}

.featured-offer h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
}

.featured-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.bonus-text {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Responsive Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.hero-content {
    order: 2;
}

.featured-offer {
    order: 1;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1.4fr 0.9fr;
        gap: 3rem;
        align-items: start;
    }
    
    .hero-content {
        order: 0;
    }
    
    .featured-offer {
        order: 0;
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background: hsla(142, 71%, 45%, 0.9);
}

.btn-success {
    background: var(--success);
    color: var(--primary-foreground);
}

.btn-success:hover {
    background: hsla(142, 71%, 45%, 0.9);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--secondary);
}

.btn-large {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

/* Badge Styles */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.badge-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted-foreground);
}

.badge-accent {
    background: hsla(18, 95%, 55%, 0.1);
    color: var(--accent);
    border: 1px solid hsla(18, 95%, 55%, 0.2);
}

/* Introduction Section */
.intro-section {
    padding: var(--section-padding);
    background: linear-gradient(to bottom right, hsla(228, 40%, 15%, 0.1), var(--background));
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.intro-content {
    space-y: 2rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-icon {
    color: var(--primary);
}

.intro-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.intro-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.intro-buttons {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    align-items: stretch;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    align-items: stretch;
}

@media (min-width: 640px) {
    .intro-buttons {
        flex-direction: row;
        align-items: center;
    }
}

.btn-hero {
    flex: 1;
    min-width: 0;
}

.featured-card {
    background: linear-gradient(145deg, var(--card), hsla(228, 35%, 15%, 1));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px hsla(142, 71%, 45%, 0.1);
}

.featured-card-content {
    text-align: center;
    space-y: 1rem;
}

.featured-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sparkles-icon {
    color: var(--accent);
}

.featured-icon,
.featured-logo {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, var(--accent), hsla(18, 95%, 55%, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    color: white;
}

.featured-logo {
    background: transparent;
    border-radius: 0.5rem;
    width: auto;
    height: auto;
    max-width: 120px;
}

.featured-logo img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.bonus-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
    text-align: center;
}

.bonus-extra {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    text-align: center;
}

/* Filter Section */
.filter-section {
    padding: 2rem 1rem;
    border-bottom: 1px solid var(--border);
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    background: transparent;
    color: var(--muted-foreground);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.filter-tab.active {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 12px hsla(142, 71%, 45%, 0.3);
}

.filter-tab:hover:not(.active) {
    color: var(--foreground);
    background: var(--secondary);
}

.filter-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox {
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkbox::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--muted-foreground);
    border-radius: 0.125rem;
}

/* Sites Section */
.sites-section {
    padding: var(--section-padding);
}

.section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 100%;
    width: 100%;
    margin: 0;
    text-align: left;
    line-height: 1.6;
}

.sites-grid {
    display: grid;
    gap: 1.5rem;
}

/* Site Cards */
.site-card {
    background: linear-gradient(145deg, var(--card), hsla(228, 35%, 15%, 0.8));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

@media (min-width: 768px) {
    .site-card {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

.site-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px hsla(142, 71%, 45%, 0.1);
}

/* Disable scroll appearance for Best and New Sites cards */
#best-sites .site-card,
#new-sites .site-card {
    opacity: 1 !important;
    transform: none !important;
}


.site-main {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    min-width: 0;
}

@media (max-width: 767px) {
    .site-main {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .site-card .site-logo {
        margin-bottom: 0.5rem !important;
        width: 90% !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .site-card .site-logo img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }
    
    .site-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .site-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .rating {
        justify-content: center !important;
    }
    
    .site-description {
        text-align: center !important;
    }
    
    .site-features {
        text-align: center !important;
    }
    
    .site-details {
        width: 100% !important;
    }
    
    .show-more {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.site-logo {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, var(--primary), hsla(142, 71%, 45%, 0.8));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px hsla(142, 71%, 45%, 0.3);
}

@media (min-width: 768px) {
    .site-logo {
        width: 6.66rem;
        height: 6.66rem;
    }
}

.site-info {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.site-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.site-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.site-card:hover .site-name {
    color: var(--primary);
}

.site-badges {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.star {
    color: hsla(210, 20%, 70%, 0.3);
    font-size: 1rem;
}

.star.filled {
    color: var(--casino-gold);
}

.star.half {
    color: hsla(45, 95%, 65%, 0.5);
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.site-description {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.site-features {
    list-style: none;
    margin-bottom: 1rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.site-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.site-features li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.site-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    font-size: 0.875rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-icon {
    color: var(--muted-foreground);
    width: 1rem;
    height: 1rem;
}

.license-icon {
    width: 1rem;
    height: 1rem;
    background: var(--primary);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 700;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.detail-value {
    font-weight: 500;
    color: var(--foreground);
}

.site-tags {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

/* Site Actions */
.site-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

@media (min-width: 768px) {
    .site-actions {
        width: 20rem;
    }
}

.bonus-info {
    background: linear-gradient(to right, hsla(142, 71%, 45%, 0.1), hsla(18, 95%, 55%, 0.1));
    border: 1px solid hsla(142, 71%, 45%, 0.2);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.bonus-type {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.show-more {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0;
    font-family: inherit;
    transition: color 0.2s ease;
}

.show-more:hover {
    color: hsla(142, 71%, 45%, 0.8);
}

.chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.show-more:hover .chevron {
    transform: translateX(2px);
}

/* Criteria Section */
.criteria-section {
    padding: var(--section-padding);
}

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

.criteria-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: hsla(228, 40%, 15%, 0.3);
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.criteria-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px hsla(142, 71%, 45%, 0.1);
}

.criteria-header {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 0;
    flex-direction: column;
    flex: 1;
}

.criteria-icon {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    min-width: 1.5rem;
    flex-shrink: 0;
}

.criteria-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.criteria-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: var(--section-padding);
    background: hsla(228, 40%, 15%, 0.2);
}

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

.benefit-card {
    background: linear-gradient(145deg, var(--card), hsla(228, 35%, 15%, 0.8));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px hsla(142, 71%, 45%, 0.1);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem auto;
    background: hsla(142, 71%, 45%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Removed tablet-specific overrides to ensure hamburger is visible on tablets */

    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-offer-content {
        text-align: left;
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .site-card {
        grid-template-columns: minmax(0, 1fr) 320px;
    }
    
    .site-actions {
        width: 320px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--card), var(--background));
    border-top: 1px solid var(--border);
    padding: 3rem 0 0 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.footer-slogan {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.footer-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--secondary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Responsible Gambling Section - Compact */
.rg-intro {
    font-weight: 500;
    color: var(--foreground) !important;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.help-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.help-link:hover {
    text-decoration: underline;
}

.help-note {
    color: var(--muted-foreground);
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    border-top: 1px solid var(--border);
}

.age-badge-small {
    background: var(--destructive);
    color: var(--destructive-foreground);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Guide Section */
.guide-section {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--background), var(--secondary));
}

.guide-content {
    text-align: center;
    margin-bottom: 3rem;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guide-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px hsla(142, 71%, 45%, 0.1);
}

.guide-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guide-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Criteria Section */
.criteria-section {
    padding: var(--section-padding);
    background: var(--background);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.criteria-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.criteria-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px hsla(142, 71%, 45%, 0.1);
}

.criteria-score {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.criteria-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
    margin-right: 4rem;
}

.criteria-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.criteria-item ul {
    list-style: none;
    padding: 0;
}

.criteria-item li {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.criteria-item li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* Introduction Highlights */
.intro-highlights {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .intro-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: hsla(228, 40%, 15%, 0.3);
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary);
}

.highlight-icon {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    min-width: 1.5rem;
}

.highlight-text {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.highlight-text strong {
    color: var(--foreground);
    font-weight: 600;
}

/* Safety Section */
.safety-section {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--secondary), var(--background));
}

.safety-content {
    margin-top: 3rem;
}

.payment-methods, .safety-tips {
    margin-bottom: 4rem;
}

.payment-methods h3, .safety-tips h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.payment-methods p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.payment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsla(142, 71%, 45%, 0.1);
}

.payment-icon {
    font-size: 2rem;
    min-width: 3rem;
    text-align: center;
}

.payment-item strong {
    color: var(--foreground);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.payment-item p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

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

.tip-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px hsla(142, 71%, 45%, 0.1);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tip-item h4 {
    color: var(--foreground);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tip-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--background), var(--secondary));
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

.team-member {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .team-member {
        padding: 2.5rem;
    }
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px hsla(142, 71%, 45%, 0.15);
}

.member-avatar {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.member-expertise {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.expertise-tag {
    background: hsla(142, 71%, 45%, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid hsla(142, 71%, 45%, 0.2);
}

/* Problem Gambling Section */
.problem-gambling-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, hsla(0, 84%, 60%, 0.05), var(--background));
    border-top: 2px solid hsla(0, 84%, 60%, 0.2);
}

.problem-gambling-content {
    margin-top: 2rem;
}

.warning-signs {
    margin: 3rem 0;
}

.warning-signs h3 {
    color: var(--destructive);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.sign-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card);
    border-left: 4px solid var(--destructive);
    border-radius: var(--radius);
}

.sign-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.sign-item strong {
    color: var(--foreground);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.sign-item p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: 0;
}

.help-resources {
    margin-top: 3rem;
}

.help-resources h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.help-item {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.help-item strong {
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.help-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.help-item a:hover {
    text-decoration: underline;
}

/* Licenses Section */
.licenses-section {
    padding: var(--section-padding);
    background: var(--background);
}

.licenses-content {
    margin-top: 3rem;
}

.current-situation {
    margin-bottom: 4rem;
}

.current-situation h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.current-situation p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.future-changes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.change-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.change-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.change-item strong {
    color: var(--foreground);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.offshore-licenses h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 2rem;
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Mobile: Stack vertically */
@media (max-width: 768px) {
    .license-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.license-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.license-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px hsla(142, 71%, 45%, 0.1);
}

.license-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.license-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.license-badge.est {
    background: var(--casino-gold);
    color: var(--background);
}

.license-badge.curacao {
    background: var(--accent);
}

.license-badge.estonia {
    background: var(--casino-gold);
    color: var(--background);
}

.tax-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.tax-status.tax-free {
    background: hsla(142, 71%, 45%, 0.1);
    color: var(--success);
    border: 1px solid hsla(142, 71%, 45%, 0.2);
}

.tax-status svg {
    width: 14px;
    height: 14px;
}

.license-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.license-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.license-pros, .license-cons {
    margin-bottom: 1.5rem;
}

.license-pros strong {
    color: var(--success);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.license-cons strong {
    color: var(--destructive);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.license-item ul {
    list-style: none;
    padding-left: 0;
}

.license-item li {
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.license-pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.license-cons li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--destructive);
}

/* Finnish Convenience Section - Redesigned */
.finnish-convenience-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 50%, var(--background) 100%);
    position: relative;
}

.section-header-large {
    text-align: left;
    max-width: 100%;
    margin: 0 auto 4rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-top: 1rem;
}

.convenience-features {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Feature Block Styling */
.convenience-feature-block {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.convenience-feature-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px hsla(142, 71%, 45%, 0.1);
}

.convenience-feature-block.accent {
    border-left: 4px solid var(--primary);
}

.feature-block-header {
    background: linear-gradient(135deg, var(--secondary), var(--muted));
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    opacity: 0.3;
    min-width: 4rem;
}

.feature-block-title h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin: 0;
    font-style: italic;
}

.feature-block-content {
    padding: 2.5rem 2rem;
}

.feature-text-section {
    margin-bottom: 2rem;
}

.feature-text-section p {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.feature-text-section strong {
    color: var(--foreground);
    font-weight: 600;
}

/* Highlight Grid */
.feature-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .feature-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-box {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    background: var(--muted);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-box h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.highlight-box p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Translation Comparison Large */
.translation-comparison-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .translation-comparison-large {
        grid-template-columns: 1fr;
    }
}

.comparison-column {
    background: var(--secondary);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.comparison-column.bad {
    border-color: hsla(0, 84%, 60%, 0.3);
    background: hsla(0, 84%, 60%, 0.05);
}

.comparison-column.good {
    border-color: hsla(142, 71%, 45%, 0.3);
    background: hsla(142, 71%, 45%, 0.05);
}

.comparison-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.comparison-icon {
    font-size: 2.5rem;
}

.comparison-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.comparison-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.comparison-badge.warning {
    background: hsla(45, 95%, 65%, 0.2);
    color: var(--warning);
    border: 1px solid hsla(45, 95%, 65%, 0.3);
}

.comparison-badge.success {
    background: hsla(142, 71%, 45%, 0.2);
    color: var(--success);
    border: 1px solid hsla(142, 71%, 45%, 0.3);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.comparison-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    color: var(--muted-foreground);
    position: relative;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-column.bad .comparison-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--destructive);
    font-weight: 700;
    font-size: 1.25rem;
}

.comparison-column.good .comparison-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.25rem;
}

.comparison-result {
    background: var(--card);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--border);
}

.comparison-column.bad .comparison-result {
    border-left-color: var(--destructive);
}

.comparison-column.good .comparison-result {
    border-left-color: var(--success);
}

.comparison-result strong {
    color: var(--foreground);
    display: block;
    margin-bottom: 0.25rem;
}

/* Payment Methods Showcase */
.payment-methods-showcase {
    margin-top: 2rem;
}

.payment-tier {
    margin-bottom: 2.5rem;
}

.payment-tier h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-tier h4 svg {
    color: var(--casino-gold);
}

.payment-methods-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.payment-methods-row.compact {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.payment-method-card {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsla(142, 71%, 45%, 0.15);
}

.payment-method-card.featured {
    border: 2px solid var(--primary);
    background: hsla(142, 71%, 45%, 0.05);
}

.payment-method-card.small {
    padding: 1rem;
}

.payment-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    text-align: center;
    padding: 0.75rem;
    background: var(--card);
    border-radius: 0.375rem;
}

.payment-logo-small {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.payment-method-card.small p {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    margin: 0;
}

.payment-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-tag {
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
    background: var(--card);
    border-radius: 0.25rem;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
}

/* Payment Benefits */
.payment-benefits {
    margin-top: 3rem;
    background: var(--secondary);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.payment-benefits h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.benefits-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--primary);
    background: var(--muted);
}

.benefit-icon {
    font-size: 1.75rem;
    min-width: 2.5rem;
    text-align: center;
}

.benefit-icon.success {
    color: var(--success);
}

.benefit-text strong {
    display: block;
    color: var(--foreground);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Summary Section */
.convenience-summary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
    padding: 2.5rem;
    border-radius: var(--radius);
    margin-top: 2rem;
}

.convenience-summary h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.convenience-summary p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.summary-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
}

.checklist-item svg {
    color: white;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 0.25rem;
}

@media (max-width: 768px) {
    .feature-block-header {
        flex-direction: column;
    }
    
    .feature-number {
        font-size: 2rem;
        min-width: auto;
    }
    
    .feature-block-title h3 {
        font-size: 1.5rem;
    }
    
    .feature-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-comparison {
        grid-template-columns: 1fr;
    }
}

/* Finnish Features Section */
.finnish-features-section {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--secondary), var(--background));
}

.finnish-features-content {
    margin-top: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px hsla(142, 71%, 45%, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    color: var(--foreground);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Statistics Section */
.statistics-section {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--background), var(--secondary));
}

.statistics-content {
    margin-top: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px hsla(142, 71%, 45%, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.stat-item p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.market-trends {
    margin-top: 4rem;
}

.market-trends h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 2rem;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trend-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsla(142, 71%, 45%, 0.1);
}

.trend-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.trend-item h4 {
    color: var(--foreground);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.trend-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Betting Tips Section */
.betting-tips-section {
    padding: var(--section-padding);
    background: var(--background);
}

.betting-tips-content {
    margin-top: 3rem;
}

.tips-categories {
    margin-top: 4rem;
}

.tips-category {
    margin-bottom: 5rem;
}

.tips-category h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px hsla(142, 71%, 45%, 0.1);
}

.tip-card .tip-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.tip-card h4 {
    color: var(--foreground);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* AI Tips Specific Styles */
.ai-intro {
    background: linear-gradient(135deg, hsla(142, 71%, 45%, 0.1), hsla(18, 95%, 55%, 0.1));
    border: 1px solid hsla(142, 71%, 45%, 0.2);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 3rem;
}

.ai-intro p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ai-tool {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-tool:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px hsla(142, 71%, 45%, 0.1);
}

.ai-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.ai-tool h4 {
    color: var(--foreground);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ai-tool p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tool-examples, .chatgpt-tips {
    background: hsla(228, 40%, 15%, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.tool-examples strong, .chatgpt-tips strong {
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.tool-examples ul, .chatgpt-tips ul {
    list-style: none;
    padding: 0;
}

.tool-examples li, .chatgpt-tips li {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.tool-examples li::before, .chatgpt-tips li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.ai-warning {
    display: flex;
    gap: 1rem;
    background: hsla(0, 84%, 60%, 0.1);
    border: 1px solid hsla(0, 84%, 60%, 0.2);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 3rem;
}

.warning-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.ai-warning strong {
    color: var(--destructive);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.ai-warning p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-legal p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cert-badge {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

.cert-badge.gpwa {
    background: var(--success);
}

.cert-badge.secure {
    background: var(--muted);
}

.cert-badge.co2 {
    background: var(--casino-gold);
    color: var(--background);
}

.cert-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.footer-disclaimer {
    padding: 1rem;
    background: var(--secondary);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary);
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

.footer-disclaimer strong {
    color: var(--foreground);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Footer Responsive Design */
@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .age-verification {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .legal-links {
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .footer-bottom-content {
        flex-wrap: nowrap;
    }
    
    .nav {
        display: flex;
        margin-left: auto;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .header-actions {
        margin-left: 0;
    }
}

@media (max-width: 1023px) {
    .nav:not(.mobile) {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Betting Strategies Two Column Layout */
.betting-strategies-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .betting-strategies-text {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==============================================ADDING POLICY SECTION STYLES*/
.policy-section h1,
.policy-section h2,
.policy-section h3 {
    color: var(--foreground);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.policy-section h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.75rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
}

.policy-section h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
}

.policy-section p {
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.policy-section ul,
.policy-section ol {
    margin: 1.25rem 0 1.25rem 2rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.policy-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.policy-section a:hover {
    text-decoration: underline;
}

.policy-section strong {
    color: var(--foreground);
    font-weight: 600;
}

.policy-section blockquote {
    background: var(--card);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    color: var(--muted-foreground);
    border-radius: var(--radius);
}

.policy-section code {
    background: var(--secondary);
    color: var(--accent);
    padding: 0.15rem 0.35rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    font-family: monospace;
}

.policy-section hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
}
