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

:root {
    /* Blue theme colors inspired by Pikapotti */
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --light-blue: #60a5fa;
    --dark-blue: #1e40af;
    --accent-blue: #2563eb;
    --background-blue: #eff6ff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: rgba(30, 58, 138, 0.1);
    --shadow-hover: rgba(30, 58, 138, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

.img-rounded {
    border-radius: 12px; /* tu peux changer la valeur */
    overflow: hidden;
}
.payment-logos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0 24px;
    justify-content: center;
    align-items: center;
}

.payment-logos img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

/* Header Top Bar */
.header-top {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.875rem;
}

.casino-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.casino-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-img {
    height: 42px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.btn-login {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-login:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-hero-secondary {
    background: var(--white);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border: 2px solid var(--primary-blue);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-hero:hover,
.btn-hero-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 50%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-disclaimer {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-blue);
}


.section-title {
    font-size: 2rem;
    margin: 3rem 0 2rem;
    color: var(--primary-blue);
}

.section-subtitle {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.about-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-category,
.game-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-category:hover,
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.game-category h3,
.game-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.game-category p,
.game-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
}

.game-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.game-features li:last-child {
    border-bottom: none;
}

/* Features Section */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: var(--background-blue);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

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

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--background-blue) 0%, var(--white) 100%);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

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

.stat-label {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Intro Section */
.intro-section {
    margin-bottom: 3rem;
    text-align: center;
}

.intro-section h2 {
    margin-bottom: 1rem;
}

.intro-section p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 100%;
}

.game-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.game-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    padding-left: 1.5rem;
    position: relative;
}

.game-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-blue);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.faq-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Info Table Styles */
.info-table-wrapper {
    margin: 2rem auto;
    max-width: 100%;
    overflow-x: auto;
    display: flex;
    justify-content: center;
    width: 100%;
}

.info-table {
    width: 100%;
    max-width: 1200px;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    box-shadow: 0 8px 25px var(--shadow);
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto;
    display: table;
}

.info-table tr {
    transition: background-color 0.2s ease;
}

.info-table tr:not(:first-child) {
    border-top: 1px solid var(--border-color);
}

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

.info-table td {
    padding: 1.5rem 2rem;
    vertical-align: middle;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
}

/* Two-column tables */
.info-table td:first-child {
    font-weight: 600;
    color: var(--primary-blue);
    width: 35%;
    background: linear-gradient(135deg, var(--background-blue) 0%, rgba(239, 246, 255, 0.5) 100%);
    border-right: 2px solid var(--border-color);
}

.info-table td:last-child:not(:only-child) {
    color: var(--text-dark);
    width: 65%;
    text-align: left;
}

/* Multi-column tables (header row) */
.info-table tr:first-child td {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.info-table tr:first-child td:last-child {
    border-right: none;
}

.info-table tr:first-child td strong {
    color: var(--white);
    font-weight: 700;
}

/* Data rows styling */
.info-table tr:not(:first-child):hover {
    background: var(--background-blue);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.info-table tr:not(:first-child):nth-child(even) {
    background: rgba(239, 246, 255, 0.3);
}

.info-table tr:not(:first-child):nth-child(even):hover {
    background: var(--background-blue);
}

/* Multi-column data cells */
.info-table tr:not(:first-child) td {
    text-align: center;
    color: var(--text-dark);
    background: transparent;
    border-right: 1px solid var(--border-color);
}

.info-table tr:not(:first-child) td:last-child {
    border-right: none;
}

/* Strong text in tables */
.info-table td strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.info-table tr:first-child td strong {
    color: var(--white);
}

/* Responsive table adjustments */
@media (max-width: 768px) {
    .info-table-wrapper {
        margin: 1.5rem -20px;
        padding: 0 20px;
    }
    
    .info-table {
        border-radius: 12px;
    }
    
    .info-table td {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .info-table tr:first-child td {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }
    
    .info-table td:first-child {
        width: 40%;
    }
    
    .info-table td:last-child:not(:only-child) {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .info-table td {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .info-table tr:first-child td {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
}

/* Bonus Cards */
.bonus-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    margin-bottom: 2rem;
    overflow: hidden;
}

.bonus-card.featured {
    border: 3px solid var(--primary-blue);
}

.bonus-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonus-header h2,
.bonus-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.bonus-badge {
    background: var(--white);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.bonus-content {
    padding: 2rem;
}

.bonus-amount {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bonus-amount .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.bonus-amount .up-to {
    font-size: 1.25rem;
    color: var(--text-light);
}

.bonus-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.bonus-details table {
    width: 100%;
    margin-bottom: 2rem;
    border-collapse: collapse;
}

.bonus-details td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.bonus-details td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.bonus-details td:last-child {
    color: var(--primary-blue);
    font-weight: 600;
}

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

.bonus-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.bonus-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

/* Terms Section */
.terms-section {
    margin-top: 4rem;
    background: var(--background-blue);
    padding: 2rem;
    border-radius: 12px;
}

.terms-section h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.terms-content ul {
    list-style: none;
    padding-left: 0;
}

.terms-content li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    padding-left: 1.5rem;
    position: relative;
}

.terms-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.important-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
}

/* Providers Section */
.providers-section {
    margin-top: 3rem;
}

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

.provider-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.provider-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.provider-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Jackpot Section */
.jackpot-section {
    margin-top: 3rem;
}

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

.jackpot-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
}

.jackpot-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.jackpot-amount {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.jackpot-card p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--background-blue) 0%, var(--white) 100%);
    border-radius: 12px;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.age-warning {
    font-weight: 700;
    color: #fbbf24 !important;
    margin-bottom: 1rem !important;
}

.responsible-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.help-text {
    font-size: 0.875rem;
    margin-top: 1rem;
    opacity: 0.8;
}

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

.footer-bottom p {
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 15px var(--shadow);
        padding: 1rem;
        gap: 1rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

    .about-grid,
    .games-grid,
    .features-list {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .casino-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        display: none;
    }

    .nav-actions.mobile-open {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}

