/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0d1f2e;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

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

/* Dynamic Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #0d1f2e;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 151, 57, 0.05) 0%, rgba(13, 31, 46, 0) 70%);
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 25px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 151, 57, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 151, 57, 0.2);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(0, 151, 57, 0.2);
    transform: translateY(-2px);
}

.trust-badge i {
    color: #009739;
}

/* Featured Casino Cards */
.featured-casinos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.casino-featured-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 280px;
}

.casino-featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-label {
    position: absolute;
    top: 15px;
    left: 0;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 20px 20px 0;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.exclusif {
    background: #009739;
    color: white;
}

.nouveau {
    background: #ff6b6b;
    color: white;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 31, 46, 0.3), rgba(13, 31, 46, 0.9));
    z-index: 2;
}

.card-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.casino-brand {
    margin-bottom: 30px;
    padding-top: 20px;
}

.casino-brand h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 5px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.casino-brand p {
    font-size: 1rem;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-container {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.bonus-offer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 15px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-amount {
    font-size: 1.5rem;
    color: #009739;
    font-weight: 700;
    margin-bottom: 5px;
}

.bonus-limit {
    font-size: 0.8rem;
    color: #e0e0e0;
}

.card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-info {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-info:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-claim {
    flex: 1;
    background: #009739;
    color: white;
    border-radius: 10px;
    padding: 14px 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-claim:hover {
    background: #00b344;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-claim i {
    animation: bounceRight 1s infinite;
}

@keyframes bounceRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
}

.section-title p {
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
}

/* Comparator Section */
.comparator {
    padding: 60px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.casino-list {
    width: 100%;
}

.casino-card {
    background: rgba(13, 41, 56, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 151, 57, 0.2);
}

.casino-card-left {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 25%;
    min-width: 200px;
}

.casino-image {
    position: relative;
    width: 70px;
    height: 70px;
}

.casino-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.casino-label {
    position: absolute;
    top: -10px;
    left: -10px;
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 5px;
    z-index: 2;
    text-transform: uppercase;
}

.casino-info {
    flex: 1;
}

.casino-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.casino-review {
    font-size: 0.8rem;
    color: #aaaaaa;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.casino-review:hover {
    color: #009739;
}

.casino-review i {
    font-size: 0.7rem;
}

.casino-card-offers {
    display: flex;
    gap: 15px;
    width: 25%;
    min-width: 200px;
}

.offer-item {
    text-align: center;
    min-width: 85px;
}

.offer-item.primary .offer-value {
    color: #009739;
}

.offer-item.empty .offer-value {
    color: #aaaaaa;
}

.offer-value {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.offer-limit {
    font-size: 0.8rem;
    color: #aaaaaa;
}

.casino-card-details {
    display: flex;
    gap: 15px;
    width: 20%;
    min-width: 200px;
}

.detail-item {
    text-align: center;
    min-width: 85px;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.detail-value.highlight {
    color: #009739;
}

.detail-label {
    font-size: 0.8rem;
    color: #aaaaaa;
}

.detail-item.special .detail-value {
    color: #ff9800;
}

.casino-card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 25%;
    min-width: 200px;
    margin-left: auto;
}

.btn-info-small {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-info-small:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-claim-casino {
    flex: 1;
    background: #009739;
    color: white;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-claim-casino:hover {
    background: #00b344;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-claim-casino i {
    animation: bounceRight 1s infinite;
}

.show-more {
    text-align: center;
    margin-top: 30px;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 151, 57, 0.1);
    color: white;
    border: 2px solid #009739;
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-show-more:hover {
    background: rgba(0, 151, 57, 0.2);
    transform: translateY(-3px);
}

.btn-show-more i {
    animation: spin 2s linear infinite;
    animation-play-state: paused;
}

.btn-show-more:hover i {
    animation-play-state: running;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(13, 31, 46, 0) 0%, rgba(13, 31, 46, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/trust-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.trust-container h2 {
    margin-bottom: 50px;
    font-size: 2rem;
    color: #ffffff;
}

.trust-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-card {
    background: rgba(13, 41, 56, 0.8);
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    border: 1px solid rgba(0, 151, 57, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 151, 57, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 151, 57, 0.3);
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-icon {
    color: #009739;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.trust-card h3 {
    margin-bottom: 15px;
    color: #ffffff;
}

.trust-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 20px;
    background: url('../img/newsletter-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 31, 46, 0.9) 0%, rgba(0, 151, 57, 0.8) 100%);
    z-index: 1;
}

.newsletter-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #ffffff;
}

.newsletter-content p {
    margin-bottom: 30px;
    color: #ffffff;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 15px 20px;
    border-radius: 10px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    background: rgba(255, 255, 255, 0.9);
}

.btn-submit {
    background: #009739;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
    background: #00b344;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Sticky CTA for Mobile */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(13, 31, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: none;
    justify-content: center;
    border: 1px solid rgba(0, 151, 57, 0.3);
}

.sticky-cta .btn-primary {
    width: 100%;
    justify-content: center;
    background: #009739;
    color: white;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}



/* Ajout au fichier css/style.css */

/* Fix pour les boutons sur PC */
.casino-featured-card .card-actions {
    display: flex !important;
    width: 100% !important;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.casino-featured-card .btn-info {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 45px !important;
    height: 45px !important;
    min-width: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.casino-featured-card .btn-claim {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    background: #009739;
    color: white;
    border-radius: 10px;
    padding: 14px 20px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Fix pour les boutons des cartes de casino */
.casino-card .casino-card-actions {
    display: flex !important;
    gap: 10px;
    align-items: center;
    width: 25%;
    min-width: 200px;
    margin-left: auto;
}

.casino-card .btn-info-small {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.casino-card .btn-claim-casino {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    background: #009739;
    color: white;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}








<style>
/* FIX CRITIQUE - BOUTONS DES CARTES CASINO */
.casino-featured-card {
    position: relative !important;
    z-index: 5 !important;
    overflow: visible !important;
}

.casino-featured-card .card-content {
    position: relative !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.casino-featured-card .card-actions {
    position: relative !important;
    z-index: 20 !important;
    display: flex !important;
    width: 100% !important;
    margin-top: auto !important;
}

.casino-featured-card .btn-info {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
}

.casino-featured-card .btn-claim {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 1 !important;
    padding: 14px 20px !important;
}
</style>
