/* Hitnspin Casino - Feuille de style principale */
/* Février 2026 - Optimisé pour Google SEO */

:root {
    --primary-color: #ff6b00;
    --secondary-color: #ff8533;
    --dark-purple: #3d1366;
    --light-purple: #6b2d8f;
    --gradient-start: #c2185b;
    --gradient-end: #ff5722;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #0a0a0a;
    --shadow: rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Header et Navigation */
.header {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--light-purple) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease-in-out;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f8f9fa;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs a {
    color: var(--dark-purple);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

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

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #6c757d;
    font-size: 1.1rem;
}

.breadcrumbs .current {
    color: #6c757d;
    font-weight: 400;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Bouton CTA Principal */
.cta-button {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--text-light);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    display: inline-block;
    border: none;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    min-height: 44px;
    min-width: 44px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.6);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* WebP with fallback - replace banner-hero.jpg with banner-hero.webp after optimization */
    background-image: url('../images/banner-hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

/* WebP Support - Uncomment after uploading .webp files */
/*
@supports (background-image: url('image.webp')) {
    .hero::before {
        background-image: url('../images/banner-hero.webp');
    }
}
*/

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
    z-index: 1;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Sections */
.section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-alt {
    background: white;
}

.section h2 {
    font-size: 2.8rem;
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 3px;
}

.section h3 {
    font-size: 1.8rem;
    color: var(--dark-purple);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Listes */
.feature-list, .benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-list li, .benefits-list li {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.feature-list li:hover, .benefits-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-list li strong, .benefits-list li strong {
    color: var(--dark-purple);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.info-table thead {
    background: linear-gradient(135deg, var(--dark-purple), var(--light-purple));
    color: white;
}

.info-table th,
.info-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.info-table th {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.info-table tbody tr {
    transition: var(--transition);
}

.info-table tbody tr:hover {
    background: rgba(255, 107, 0, 0.05);
}

/* Bannières promotionnelles */
.promo-banner {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 3rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '🎰';
    position: absolute;
    font-size: 150px;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Bonus Banner avec image de fond */
.bonus-banner {
    /* WebP with fallback - replace banner-bonus.jpg with banner-bonus.webp after optimization */
    background-image: url('../images/banner-bonus.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 3rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WebP Support - Uncomment after uploading .webp files */
/*
@supports (background-image: url('image.webp')) {
    .bonus-banner {
        background-image: url('../images/banner-bonus.webp');
    }
}
*/

.bonus-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.7), rgba(255, 87, 34, 0.7));
    z-index: 0;
}

.bonus-banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.bonus-banner h3 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.bonus-banner p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Hero Characters Banner */
.hero-characters-banner {
    /* WebP with fallback - replace banner-hero.jpg with banner-hero.webp after optimization */
    background-image: url('../images/banner-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 3rem;
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-characters-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(61, 19, 102, 0.85) 0%, rgba(194, 24, 91, 0.6) 50%, transparent 100%);
    z-index: 0;
}

.hero-characters-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.hero-characters-banner h3 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-characters-banner p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.promo-banner h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.promo-banner p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
}

.promo-code {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: 2px dashed white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-purple), #1a0a2e);
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

.footer h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

.footer a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    body {
        overflow-x: hidden;
    }
    
    /* Header Mobile */
    .header {
        padding: 0.75rem 0;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 1rem;
        gap: 0;
    }
    
    .logo {
        height: 45px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, var(--dark-purple), var(--light-purple));
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 0.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1000;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 500px;
        padding: 3rem 1.5rem;
        background-position: center right;
    }
    
    .hero::before {
        opacity: 0.2;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        font-size: 1rem !important;
        padding: 0.9rem 1.5rem !important;
        width: 100%;
        max-width: 320px;
        display: block;
        margin: 0 auto;
    }
    
    /* Bonus Banner Mobile */
    .bonus-banner {
        padding: 2.5rem 1.5rem;
        min-height: 280px;
        margin: 2rem 0;
    }
    
    .bonus-banner h3 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .bonus-banner p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Hero Characters Banner Mobile */
    .hero-characters-banner {
        min-height: 400px;
        padding: 2.5rem 1.5rem;
        background-position: center right;
        background-size: cover;
    }
    
    .hero-characters-banner::before {
        background: linear-gradient(180deg, rgba(61, 19, 102, 0.92) 0%, rgba(194, 24, 91, 0.85) 100%);
    }
    
    .hero-characters-content {
        max-width: 100%;
    }
    
    .hero-characters-banner h3 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-characters-banner p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    /* Sections Mobile */
    .section {
        padding: 3rem 1.5rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .section h2::after {
        width: 60px;
        height: 4px;
    }
    
    .section h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 1rem;
    }
    
    .section p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    /* Lists Mobile */
    .feature-list, .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .feature-list li, .benefits-list li {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .feature-list li strong, .benefits-list li strong {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    /* Tables Mobile */
    .info-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .info-table thead {
        display: none;
    }
    
    .info-table tbody {
        display: block;
    }
    
    .info-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .info-table td {
        display: block;
        text-align: left;
        padding: 0.8rem 1rem;
        position: relative;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .info-table td:last-child {
        border-bottom: none;
    }
    
    .info-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--dark-purple);
        display: block;
        margin-bottom: 0.3rem;
        font-size: 0.9rem;
    }
    
    /* Promo Banner Mobile */
    .promo-banner {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .promo-banner h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .promo-banner p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .promo-code {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .footer p, .footer a {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }
}

/* Tablet Optimization (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .header-container {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 4rem 2rem;
    }
    
    .section h2 {
        font-size: 2.3rem;
    }
    
    .feature-list, .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-banner h3 {
        font-size: 2.2rem;
    }
    
    .hero-characters-banner h3 {
        font-size: 2.5rem;
    }
}

/* Small Mobile (max 375px) */
@media (max-width: 375px) {
    html {
        font-size: 13px;
    }
    
    .hero {
        min-height: 450px;
        padding: 2.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 2.5rem 1rem;
    }
    
    .bonus-banner,
    .hero-characters-banner,
    .promo-banner {
        padding: 2rem 1rem;
    }
    
    .cta-button {
        font-size: 0.95rem !important;
        padding: 0.85rem 1.2rem !important;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 400px;
        padding: 2rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .bonus-banner,
    .hero-characters-banner {
        min-height: 250px;
        padding: 2rem 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Bouton de menu mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
}

/* ================================
   Trust Badges Section
   ================================ */

.trust-badges-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.trust-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.trust-badge h4 {
    font-size: 1.2rem;
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.trust-badge p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Mobile Responsive для Trust Badges */
@media (max-width: 768px) {
    .trust-badges-container {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-badge {
        padding: 1.5rem 1rem;
    }
    
    .badge-icon {
        font-size: 2.5rem;
    }
    
    .trust-badge h4 {
        font-size: 1rem;
    }
    
    .trust-badge p {
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .trust-badge {
        padding: 1.2rem 0.8rem;
    }
}

