/* Styles pour mobile (écrans jusqu'à 768px) */
@media only screen and (max-width: 768px) {
  /* Insérez ici tous vos styles spécifiques pour mobile */
  
ul.nav.nav-tabs {
                margin-top: 0px !important; /* Maintenu en mode mobile */}

ul.nav.nav-tabs  li.nav-item  button.nav-link {
  height: 45px !important;
}

}



/* MENU CONTENT FOR SPECIAL MATCH */
                :root {
            --smatch-primary: #0d6efd;
            --smatch-secondary: #6c757d;
            --smatch-success: #198754;
            --smatch-danger: #dc3545;
            --smatch-dark: #141c33;
            --smatch-light: #1a243f;
            --smatch-background: #0f1425;
            --smatch-card-bg: #141c33;
            --smatch-text-primary: #8a92ab;
            --smatch-text-secondary: #8a92ab;
            --smatch-border: #1e2a4d;
            --smatch-odds-bg: #1a243f;
            --smatch-hover: #222e53;
            --bitcoin-color: #f7931a;
            --usdt-color: #26a17b;
            --card-color: #1a6bb2;
            --mobile-color: #8e44ad;
            --login-color: #6c9430;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        
        body {
            background-color: var(--smatch-background);
            color: var(--smatch-text-primary);
            padding: 8px;
            line-height: 1.2;
            font-size: 13px;
        }
        
        .smatch-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .smatch-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            margin-bottom: 10px;
            border-bottom: 1px solid var(--smatch-border);
            position: relative;
        }
        
        .smatch-logo {
            font-size: 22px;
            font-weight: 700;
            color: var(--smatch-primary);
        }
        
        .smatch-user-actions {
            display: flex;
            gap: 15px;
            position: relative;
        }
        
        .smatch-user-actions i {
            font-size: 20px;
            color: var(--smatch-text-secondary);
        }
        
        .home-menu {
            cursor: pointer;
        }
        
        /* Menu déroulant */
        .smatch-dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--smatch-card-bg);
            border: 1px solid var(--smatch-border);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            width: 220px;
            z-index: 1000;
            margin-top: 10px;
            overflow: hidden;
        }
        
        .smatch-dropdown-menu.show {
            display: block;
        }
        
        .smatch-dropdown-item {
            padding: 14px 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--smatch-text-primary);
            text-decoration: none;
            border-bottom: 1px solid var(--smatch-border);
            transition: background 0.2s ease;
        }
        
        .smatch-dropdown-item:last-child {
            border-bottom: none;
        }
        
        .smatch-dropdown-item:hover {
            background: var(--smatch-hover);
        }
        
        .smatch-dropdown-item i {
            width: 22px;
            text-align: center;
            font-size: 16px;
        }
        
        .smatch-filters {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding: 10px 0;
            margin-bottom: 15px;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        .smatch-filters::-webkit-scrollbar {
            display: none;
        }
        
        .smatch-filter-btn {
            padding: 8px 15px;
            background: var(--smatch-card-bg);
            border: 1px solid var(--smatch-border);
            border-radius: 16px;
            white-space: nowrap;
            font-size: 14px;
            font-weight: 500;
            color: var(--smatch-text-secondary);
            cursor: pointer;
        }
        
        .smatch-filter-btn.smatch-active {
            background: var(--smatch-primary);
            color: white;
            border-color: var(--smatch-primary);
        }
        
        .smatch-match-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .smatch-match-container {
            background: var(--smatch-card-bg);
            border-radius: 10px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            border: 1px solid var(--smatch-border);
        }
        
        .smatch-match-header {
            background: var(--smatch-card-bg);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--smatch-border);
        }
        
        .smatch-tournament {
            font-weight: 600;
            font-size: 14px;
            color: var(--smatch-text-primary);
            display: flex;
            align-items: center;
        }
        
        .smatch-tournament i {
            margin-right: 8px;
            color: var(--smatch-primary);
            font-size: 14px;
        }
        
        .smatch-match-time {
            font-size: 13px;
            color: var(--smatch-text-secondary);
            display: flex;
            align-items: center;
        }
        
        .smatch-match-time i {
            margin-right: 5px;
            font-size: 13px;
        }
        
        .smatch-teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            background: var(--smatch-card-bg);
        }
        
        .smatch-team {
            text-align: center;
            flex: 1;
        }
        
        .smatch-team-flag {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--smatch-odds-bg);
            margin: 0 auto 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--smatch-text-primary);
            border: 1px solid var(--smatch-border);
        }
        
        .smatch-team-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--smatch-text-primary);
        }
        
        .smatch-vs {
            font-weight: 600;
            color: var(--smatch-text-secondary);
            margin: 0 8px;
            font-size: 12px;
            background: var(--smatch-odds-bg);
            padding: 4px 8px;
            border-radius: 5px;
        }
        
        .smatch-bet-section {
            background: var(--smatch-card-bg);
            padding: 12px 15px;
            border-top: 1px solid var(--smatch-border);
        }
        
        .smatch-bet-title {
            font-weight: 600;
            margin-bottom: 8px;
            text-align: center;
            font-size: 14px;
            color: var(--smatch-text-secondary);
        }
        
        .smatch-bet-options {
            display: flex;
            justify-content: space-between;
            gap: 8px;
        }
        
        .smatch-bet-option {
            background: var(--smatch-odds-bg);
            border-radius: 6px;
            padding: 8px 5px;
            text-align: center;
            flex: 1;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid var(--smatch-border);
            min-height: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .smatch-bet-option:hover {
            background: var(--smatch-hover);
        }
        
        .smatch-bet-option:active {
            transform: scale(0.98);
        }
        
        .smatch-bet-type {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 3px;
            color: var(--smatch-text-secondary);
        }
        
        .smatch-bet-odds {
            font-size: 15px;
            font-weight: 700;
            color: white;
        }
        
        .smatch-match-actions {
            display: flex;
            padding: 0 15px 12px;
            gap: 8px;
        }
        
        .smatch-action-btn {
            flex: 1;
            padding: 8px;
            border-radius: 6px;
            border: none;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            background: var(--smatch-odds-bg);
            color: var(--smatch-text-secondary);
        }
        
        .smatch-action-btn:hover {
            background: var(--smatch-hover);
        }
        
        .smatch-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--smatch-card-bg);
            display: flex;
            justify-content: space-around;
            padding: 12px;
            border-top: 1px solid var(--smatch-border);
            z-index: 100;
        }
        
        .smatch-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--smatch-text-secondary);
            font-size: 12px;
        }
        
        .smatch-nav-item.smatch-active {
            color: var(--smatch-primary);
        }
        
        .smatch-nav-item i {
            font-size: 18px;
            margin-bottom: 3px;
        }
        
  
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .smatch-match-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .smatch-header {
                padding: 12px 0;
            }
            
            .smatch-user-actions i {
                font-size: 18px;
            }
            
            .smatch-team-flag {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }
            
            .smatch-team-name {
                font-size: 13px;
            }
            
            .smatch-bet-option {
                min-height: 45px;
            }
        }
        
        @media (max-width: 480px) {
            body {
                font-size: 12px;
                padding: 6px;
            }
            
            .smatch-match-grid {
                grid-template-columns: 1fr;
            }
            
            .smatch-team-name {
                font-size: 12px;
            }
            
            .smatch-team-flag {
                width: 32px;
                height: 32px;
                font-size: 13px;
            }
            
            .smatch-bet-type {
                font-size: 12px;
            }
            
            .smatch-bet-odds {
                font-size: 13px;
            }
            
            .smatch-match-header, .smatch-teams, .smatch-bet-section {
                padding: 8px 10px;
            }
            
            .smatch-nav-item i {
                font-size: 16px;
            }
            
            .smatch-dropdown-menu {
                width: 200px;
            }
            
            .smatch-filter-btn {
                padding: 6px 12px;
                font-size: 13px;
            }
        }




                .smatch-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .smatch-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            margin-bottom: 10px;
            border-bottom: 1px solid var(--smatch-border);
            position: relative;
        }
        
        .smatch-logo {
            font-size: 22px;
            font-weight: 700;
            color: var(--smatch-primary);
        }
        
        .smatch-user-actions {
            display: flex;
            gap: 15px;
            position: relative;
        }
        
        .smatch-user-actions i {
            font-size: 20px;
            color: var(--smatch-text-secondary);
        }
        
        .home-menu {
            cursor: pointer;
        }
        
        /* Match header */
        .match-header {
            background: var(--smatch-card-bg);
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            border: 1px solid var(--smatch-border);
        }
        
        .match-tournament {
            font-size: 14px;
            font-weight: 600;
            color: white;
            margin-bottom: 5px;
        }
        
        .match-stage {
            font-size: 12px;
            color: var(--smatch-text-secondary);
            margin-bottom: 10px;
        }
        
        .match-teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 15px 0;
        }
        
        .team {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 40%;
        }
        
        .team-name {
            font-weight: 600;
            font-size: 16px;
            color: white;
            margin-top: 8px;
            text-align: center;
        }
        
        .vs {
            font-weight: 600;
            color: var(--smatch-text-secondary);
            font-size: 14px;
            background: var(--smatch-odds-bg);
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        .match-time {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 10px 0;
            background: var(--smatch-odds-bg);
            padding: 8px;
            border-radius: 6px;
        }
        
        .match-time span {
            margin: 0 5px;
            font-weight: 600;
            color: white;
        }
        
        .match-date {
            text-align: center;
            font-size: 12px;
            color: var(--smatch-text-secondary);
            margin-bottom: 10px;
        }
        
        /* Bet categories */
        .bet-categories {
            display: flex;
            overflow-x: auto;
            gap: 8px;
            padding: 10px 0;
            margin-bottom: 15px;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        .bet-categories::-webkit-scrollbar {
            display: none;
        }
        
        .bet-category {
            padding: 8px 15px;
            background: var(--smatch-card-bg);
            border: 1px solid var(--smatch-border);
            border-radius: 16px;
            white-space: nowrap;
            font-size: 14px;
            font-weight: 500;
            color: var(--smatch-text-secondary);
            cursor: pointer;
        }
        
        .bet-category.active {
            background: var(--smatch-primary);
            color: white;
            border-color: var(--smatch-primary);
        }
        
      
        
        /* Score exact section */
        .score-exact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }
        
        .score-option {
            background: var(--smatch-odds-bg);
            border-radius: 5px;
            padding: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid var(--smatch-border);
        }
        
        .score-option:hover {
            background: var(--smatch-hover);
        }
        
        .score-option.selected {
            background: var(--smatch-selected);
            border-color: var(--smatch-primary);
        }
        
        .score-value {
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 3px;
            color: var(--smatch-text-secondary);
        }
        
        .score-option.selected .score-value {
            color: white;
        }
        
        .score-odds {
            font-size: 14px;
            font-weight: 700;
            color: white;
        }
        
    
        
   
        
     
     
        
    
        
        .potential-win {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--smatch-border);
        }
        
        .potential-win-label {
            font-weight: 600;
            color: var(--smatch-text-secondary);
        }
        
        .potential-win-amount {
            font-weight: 700;
            color: white;
        }
        
       
        
        /* Navigation */
        .smatch-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--smatch-card-bg);
            display: flex;
            justify-content: space-around;
            padding: 10px;
            border-top: 1px solid var(--smatch-border);
            z-index: 100;
        }
        
        .smatch-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--smatch-text-secondary);
            font-size: 11px;
        }
        
        .smatch-nav-item.smatch-active {
            color: var(--smatch-primary);
        }
        
        .smatch-nav-item i {
            font-size: 16px;
            margin-bottom: 2px;
        }
        
        .main-content {
            padding-bottom: 60px;
        }
        
        /* Accordion styles */
        .accordion {
            margin-bottom: 15px;
        }
        
        .accordion-header {
            background: var(--smatch-card-bg);
            padding: 12px 15px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid var(--smatch-border);
            font-weight: 600;
            color: white;
        }
        
        .accordion-header i {
            transition: transform 0.3s ease;
        }
        
        .accordion-header.active i {
            transform: rotate(180deg);
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .accordion-content.active {
            max-height: 2000px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .team-name {
                font-size: 14px;
            }
            
            .bet-options {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            }
            
            .score-exact-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .team {
                width: 35%;
            }
            
            .team-name {
                font-size: 12px;
            }
            
            .bet-options {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .score-exact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .bet-type {
                font-size: 12px;
            }
            
            .bet-odds {
                font-size: 14px;
            }
        }


          .bet-accordion {
        background: var(--smatch-card-bg);
        border-radius: 8px;
        margin-bottom: 15px;
        border: 1px solid var(--smatch-border);
        overflow: hidden;
    }
    
    .accordion-header {
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 600;
        color: white;
        background: var(--smatch-light);
    }
    
    .accordion-header i {
        transition: transform 0.3s ease;
    }
    
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .accordion-expanded .accordion-content {
        max-height: 3000px;
    }
    
    .accordion-expanded .accordion-header i {
        transform: rotate(180deg);
    }



    .score-option.selected {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.score-option.selected .score-odds {
    color: white;
    font-weight: bold;
}


  /* Conteneur principal */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5px;
        }
        
        /* En-tête principale */
        .smatch-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            background: var(--smatch-card-bg);
            border-bottom: 1px solid var(--smatch-border);
            width: 100%;
            border-radius: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        
        /* Logo */
        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-img {
            height: 40px;
        }
        
        /* Bouton Se connecter - CORRECTION ICI */
        .login-button {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #6c9430;
            padding: 12px 20px;
            border-radius: 0;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            color: white;
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap; /* Ajout pour empêcher le texte de se casser */
        }
        
        .login-button:hover {
            background: #6c9430;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .login-icon {
            font-size: 16px;
        }
        
        /* Menu déroulant (caché pour utilisateur non connecté) */
        .header-menu {
            display: none;
        }
        
        /* Contenu principal */
        .main-content {
            background: var(--smatch-card-bg);
            padding: 10px;
            margin: 15px auto;
            border: 1px solid var(--smatch-border);
            border-radius: 10px;
            max-width: 1200px;
        }
        
        .content-title {
            font-size: 18px;
            font-weight: 600;
            color: white;
            margin-bottom: 15px;
        }
        
        .content-text {
            line-height: 1.5;
            margin-bottom: 15px;
            color: var(--smatch-text-primary);
        }
        
        /* Navigation en bas */
        .smatch-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--smatch-card-bg);
            display: flex;
            justify-content: space-around;
            padding: 12px;
            border-top: 1px solid var(--smatch-border);
            z-index: 100;
        }
        
        .smatch-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--smatch-text-secondary);
            font-size: 12px;
        }
        
        .smatch-nav-item.smatch-active {
            color: var(--smatch-primary);
        }
        
        .smatch-nav-item i {
            font-size: 18px;
            margin-bottom: 3px;
        }
        
        /* Match preview */
        .match-preview {
            background: var(--smatch-odds-bg);
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
        }
        
        .match-preview-title {
            color: white;
            margin-bottom: 15px;
            font-size: 16px;
            font-weight: 600;
        }
        
        .match-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--smatch-border);
        }
        
        .match-row:last-child {
            border-bottom: none;
        }
        
        .team {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 40%;
        }
        
        .team-home {
            justify-content: flex-start;
        }
        
        .team-away {
            justify-content: flex-end;
            flex-direction: row-reverse;
        }
        
        .team-logo {
            width: 32px;
            height: 32px;
            background: var(--smatch-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: white;
            font-weight: bold;
        }
        
        .team-name {
            color: white;
            font-size: 14px;
        }
        
        .match-time {
            color: var(--smatch-text-secondary);
            font-size: 13px;
            background: var(--smatch-dark);
            padding: 6px 12px;
            border-radius: 4px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .logo-img {
                height: 35px;
            }
            
            .login-button {
                padding: 10px 16px;
                font-size: 13px;
            }
            
            .team-name {
                font-size: 13px;
            }
            
            .team-logo {
                width: 28px;
                height: 28px;
                font-size: 11px;
            }
        }
        
        @media (max-width: 480px) {
            .smatch-header {
                padding: 10px 12px;
            }
            
            .logo-img {
                height: 30px;
            }
            
            .login-button {
                padding: 10px 15px; /* Ajustement pour garder le texte visible */
                font-size: 12px;
            }
            
            /* SUPPRESSION de la règle qui cachait le texte */
            .login-button span {
                display: inline; /* Assure que le texte reste visible */
            }
            
            .login-button i {
                margin-right: 5px; /* Espacement entre l'icône et le texte */
                font-size: 14px;
            }
            
            .team {
                width: 35%;
            }
            
            .team-name {
                font-size: 12px;
            }
        }







                /* Affichage du solde */
        .balance-display {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--smatch-odds-bg);
            padding: 8px 12px;
            border-radius: 20px;
            border: 1px solid var(--smatch-border);
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .balance-display:hover {
            background: var(--smatch-hover);
        }
        
        .balance-icon {
            font-size: 16px;
            color: var(--smatch-success);
        }
        
        .balance-amount {
            font-weight: 600;
            color: white;
            font-size: 14px;
        }
        
        .balance-currency {
            font-size: 12px;
            color: var(--smatch-text-secondary);
        }
        
        /* Menu toggle */
        .menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--smatch-odds-bg);
            border: 1px solid var(--smatch-border);
            color: var(--smatch-text-primary);
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .menu-toggle:hover {
            background: var(--smatch-hover);
            color: white;
        }
        
        .toggle-icon {
            font-size: 18px;
        }
        
        /* Menu déroulant */
        .header-menu {
            position: absolute;
            top: 100%;
            right: 15px;
            background: var(--smatch-card-bg);
            border: 1px solid var(--smatch-border);
            border-top: none;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            width: 220px;
            z-index: 1000;
            overflow: hidden;
            display: none;
        }
        
        .header-menu.active {
            display: block;
        }
        
        .menu-item {
            padding: 14px 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--smatch-text-primary);
            text-decoration: none;
            border-bottom: 1px solid var(--smatch-border);
            transition: background 0.2s ease;
        }
        
        .menu-item:last-child {
            border-bottom: none;
        }
        
        .menu-item:hover {
            background: var(--smatch-hover);
        }
        
        .menu-item i {
            width: 22px;
            text-align: center;
            font-size: 16px;
        }




                .profile-card {
            background-color: var(--smatch-card-bg);
            
        }
        
        .profile-header {
            border-bottom: 1px solid var(--smatch-border);
        }
        
        .profile-title {
            color: white;
            font-weight: 600;
        }
        
        .form-label {
            color: var(--smatch-text-secondary);
            font-weight: 500;
        }
        
        .form-control {
            background-color: var(--smatch-odds-bg);
            border: 1px solid var(--smatch-border);
            color: white;
            border-radius: 0.25rem;
        }
        
        .form-control:focus {
            background-color: var(--smatch-odds-bg);
            border-color: var(--smatch-primary);
            color: white;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }
        
        .btn-save {
            background-color: var(--smatch-primary);
            color: white;
            border: none;
            border-radius: 0;
            font-weight: 600;
        }
        
        .btn-save:hover {
            background-color: #0b5ed7;
        }
        
        .btn-cancel {
            background-color: var(--smatch-secondary);
            color: white;
            border: none;
            border-radius: 0;
            font-weight: 600;
        }
        
        .btn-cancel:hover {
            background-color: #5c636a;
        }
        
        .nav-tabs .nav-link {
            color: var(--smatch-text-secondary);
            border: none;
            border-radius: 0;
            padding: 0.75rem 1rem;
            white-space: nowrap;
        }
        
        .nav-tabs .nav-link.active {
            color: white;
            background-color: transparent;
            border-bottom: 2px solid var(--smatch-primary);
        }
        
        .nav-tabs {
            border-bottom: 1px solid var(--smatch-border);
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        .nav-tabs::-webkit-scrollbar {
            display: none;
        }
        
        .smatch-nav {
            background-color: var(--smatch-card-bg);
            border-top: 1px solid var(--smatch-border);
        }
        
        .smatch-nav-item {
            color: var(--smatch-text-secondary);
            text-decoration: none;
        }
        
        .smatch-nav-item.active {
            color: var(--smatch-primary);
        }
        
        .password-strength {
            height: 5px;
            margin-top: 5px;
            border-radius: 2px;
        }
        
        .avatar-container {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--smatch-odds-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            border: 2px solid var(--smatch-border);
            overflow: hidden;
            position: relative;
        }
        
        .avatar-placeholder {
            font-size: 40px;
            color: var(--smatch-text-secondary);
        }
        
        .avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .verified-badge {
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 24px;
            height: 24px;
            background-color: var(--smatch-success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            border: 2px solid var(--smatch-card-bg);
        }
        
        .balance-display {
            background-color: var(--smatch-odds-bg);
            border-radius: 20px;
            padding: 8px 16px;
            display: inline-flex;
            align-items: center;
            margin-top: 10px;
            border: 1px solid var(--smatch-border);
        }
        
        .balance-icon {
            color: var(--smatch-success);
            margin-right: 8px;
            font-size: 16px;
        }
        
        .balance-amount {
            color: white;
            font-weight: 600;
            font-size: 16px;
        }
        
        .balance-currency {
            color: var(--smatch-text-secondary);
            font-size: 14px;
            margin-left: 4px;
        }
        
        .verification-status {
            display: inline-flex;
            align-items: center;
            background-color: var(--smatch-odds-bg);
            border-radius: 12px;
            padding: 4px 10px;
            margin-left: 10px;
            font-size: 12px;
        }
        
        .verified-status {
            color: var(--smatch-success);
            background-color: rgba(25, 135, 84, 0.15);
        }
        
        .unverified-status {
            color: red;
            background-color: rgba(108, 117, 125, 0.15);
        }
        
        .verification-icon {
            margin-right: 4px;
            font-size: 12px;
        }
        
        .scroll-controls {
            display: flex;
            align-items: center;
            padding: 0 0.5rem;
            background-color: var(--smatch-card-bg);
            border-bottom: 1px solid var(--smatch-border);
        }
        
        .scroll-btn {
            background: transparent;
            border: none;
            color: var(--smatch-text-secondary);
            padding: 0.5rem;
            cursor: pointer;
        }
        
        .scroll-btn:hover {
            color: white;
        }
        
        .scroll-btn[disabled] {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        .tabs-container {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .profile-info {
            flex: 1;
        }
        
        @media (max-width: 576px) {
            .profile-header .d-flex {
                flex-direction: column;
                text-align: center;
            }
            
            .profile-header .me-4 {
                margin-right: 0 !important;
                margin-bottom: 1rem;
            }
            
            .user-details {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }





        /*   INPUTS   */
        /* Styles pour les inputs - Version mobile first */
.form-control {
    background-color: var(--smatch-odds-bg);
    border: 1px solid var(--smatch-border);
    color: white;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    height: 2.5rem;
    line-height: 1.4;
}

.form-control:focus {
    background-color: var(--smatch-odds-bg);
    border-color: var(--smatch-primary);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-control:read-only {
    background-color: var(--smatch-dark);
    cursor: not-allowed;
}

.form-label {
    color: var(--smatch-text-secondary);
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

/* Styles pour les groupes de formulaires */
.mb-3 {
    margin-bottom: 1rem !important;
}

/* Adaptation spécifique pour les inputs en ligne (date et téléphone) */
.row.g-2 .mb-3 {
    margin-bottom: 0.5rem !important;
}

/* Pour les écrans plus grands */
@media (min-width: 768px) {
    .form-control {
        padding: 0.6rem 0.875rem;
        font-size: 0.9rem;
        height: 2.75rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 992px) {
    .form-control {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        height: 3rem;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
}

/* Styles pour les sections */
.identity-section {
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--smatch-border);
}

.success-message {
    color: #86b7fe;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding: 0.65rem;
    background-color: rgba(134, 183, 254, 0.1);
    border-radius: 0.25rem;
    font-size: 0.9rem;
}

.info-message {
    color: var(--smatch-text-secondary);
    margin-bottom: 1.25rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.section-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Bouton de sauvegarde */
.btn-save {
    background-color: var(--smatch-primary);
    color: white;
    border: none;
    border-radius: 0.25rem;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
    font-size: 0.9rem;
    height: 2.75rem;
}

.btn-save:hover {
    background-color: #0b5ed7;
}

/* Espacements adaptés pour mobile */
.save-btn {
    margin-top: 1.25rem;
}

.row.g-3 {
    --bs-gutter-y: 1rem;
}

.row.g-2 {
    --bs-gutter-y: 0.5rem;
}

/* Ajustements spécifiques pour les petits écrans */
@media (max-width: 576px) {
    .identity-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .row.g-3 {
        --bs-gutter-x: 0.75rem;
    }
    
    .btn-save {
        width: 100%;
        justify-content: center;
    }
    
    /* Ajustement spécifique pour les champs date */
    .row.g-2 > [class*="col-"] {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }
    
    .row.g-2 .form-control {
        font-size: 0.85rem;
        padding: 0.45rem 0.5rem;
    }
}

/* Pour les très petits écrans */
@media (max-width: 360px) {
    .form-control {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
        height: 2.25rem;
    }
    
    .form-label {
        font-size: 0.8rem;
    }
    
    .btn-save {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
        height: 2.5rem;
    }
}





/* Styles pour les selects de date de naissance */
.birth-date-selects {
    display: flex;
    align-items: center;
}

.birth-date-selects .col-4 {
    flex: 1;
    min-width: 0; /* Important pour le responsive */
}

.form-select {
    background-color: var(--smatch-odds-bg);
    border: 1px solid var(--smatch-border);
    color: white;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    height: 2.5rem;
    line-height: 1.4;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238a92ab' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.form-select:focus {
    border-color: var(--smatch-primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Ajustement de la largeur selon le contenu */
.day-select {
    width: auto;
    min-width: 80px;
}

.month-select {
    width: auto;
    min-width: 120px;
}

.year-select {
    width: auto;
    min-width: 100px;
}

/* Responsive pour mobile */
@media (max-width: 576px) {
    .birth-date-selects {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .birth-date-selects .col-4 {
        flex: 0 0 auto;
    }
    
    .day-select {
        min-width: 70px;
    }
    
    .month-select {
        min-width: 100px;
    }
    
    .year-select {
        min-width: 90px;
    }
    
    .form-select {
        font-size: 0.85rem;
        padding: 0.45rem 0.6rem;
        height: 2.25rem;
    }
}

/* Pour les très petits écrans */
@media (max-width: 360px) {
    .day-select {
        min-width: 60px;
    }
    
    .month-select {
        min-width: 85px;
    }
    
    .year-select {
        min-width: 75px;
    }
    
    .form-select {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
        height: 2rem;
        background-position: right 0.5rem center;
    }
}

/* Styles pour les options du select */
.form-select option {
    background-color: var(--smatch-card-bg);
    color: white;
}

/* Pour améliorer l'apparence sur certains navigateurs */
.form-select::-ms-expand {
    display: none;
}

/* États hover et focus */
.form-select:hover {
    border-color: var(--smatch-hover);
}

.form-select:focus::-ms-value {
    background-color: transparent;
    color: white;
}



/* Styles pour le groupe téléphone */
.phone-input-group {
    display: flex;
    align-items: center;
}

.phone-input-group .col-4,
.phone-input-group .col-8 {
    flex: 1;
    min-width: 0; /* Important pour le responsive */
}

.country-code-select {
    width: auto;
    min-width: 110px;
    background-color: var(--smatch-odds-bg);
    border: 1px solid var(--smatch-border);
    color: white;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    height: 2.5rem;
    line-height: 1.4;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238a92ab' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.phone-number {
    width: 100%;
}

/* Responsive pour mobile */
@media (max-width: 576px) {
    .phone-input-group {
        flex-wrap: nowrap;
    }
    
    .phone-input-group .col-4 {
        flex: 0 0 auto;
    }
    
    .phone-input-group .col-8 {
        flex: 1;
    }
    
    .country-code-select {
        min-width: 95px;
        font-size: 0.85rem;
        padding: 0.45rem 0.6rem;
        height: 2.25rem;
    }
    
    .phone-number {
        font-size: 0.85rem;
        padding: 0.45rem 0.6rem;
        height: 2.25rem;
    }
}

/* Pour les très petits écrans */
@media (max-width: 360px) {
    .country-code-select {
        min-width: 85px;
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
        height: 2rem;
        background-position: right 0.5rem center;
    }
    
    .phone-number {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
        height: 2rem;
    }
}

/* Styles communs pour les selects */
.country-code-select:focus {
    border-color: var(--smatch-primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.country-code-select option {
    background-color: var(--smatch-card-bg);
    color: white;
}

.country-code-select::-ms-expand {
    display: none;
}

/* États hover */
.country-code-select:hover {
    border-color: var(--smatch-hover);
}




        .deposit-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .deposit-card {
            background-color: var(--smatch-card-bg);
            border: 1px solid var(--smatch-border);
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .deposit-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .deposit-title {
            color: white;
            font-weight: 600;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .deposit-subtitle {
            color: var(--smatch-text-secondary);
        }
        
        .balance-display {
            background-color: var(--smatch-odds-bg);
            border-radius: 20px;
            
            display: inline-flex;
            align-items: center;
            
            border: 1px solid var(--smatch-border);
        }
        
        .balance-icon {
            color: var(--smatch-success);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .balance-amount {
            color: white;
            font-weight: 400;
            font-size: 1rem;
        }
        
        .balance-currency {
            color: var(--smatch-text-secondary);
            margin-left: 5px;
        }
        
        .payment-methods {
            margin-bottom: 1.5rem;
        }
        
        .payment-title {
            color: white;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        .payment-option {
            background-color: var(--smatch-odds-bg);
            border: 2px solid var(--smatch-border);
            border-radius: 0.5rem;
            padding: 1rem;
            margin-bottom: 0.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .payment-option:hover {
            border-color: var(--smatch-primary);
            transform: translateY(-2px);
        }
        
        .payment-option.selected {
            border-color: var(--smatch-primary);
            background-color: rgba(13, 110, 253, 0.1);
        }
        
        .payment-content {
            display: flex;
            align-items: center;
        }
        
        .payment-icon {
            width: 40px;
            height: 40px;
            background-color: var(--smatch-dark);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
        }
        
        .payment-icon.bitcoin {
            background-color: var(--bitcoin-color);
            color: white;
        }
        
        .payment-icon.usdt {
            background-color: var(--usdt-color);
            color: white;
        }
        
        .payment-icon.card {
            background-color: var(--card-color);
            color: white;
        }
        
        .payment-icon.mobile {
            background-color: var(--mobile-color);
            color: white;
        }
        
        .payment-info {
            flex: 1;
        }
        
        .payment-name {
            color: white;
            font-weight: 600;
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }
        
        .payment-description {
            color: var(--smatch-text-secondary);
            font-size: 0.8rem;
            margin-bottom: 0;
        }
        
        .payment-radio {
            margin-left: 0.5rem;
        }
        
        .form-control {
            background-color: var(--smatch-odds-bg);
            border: 1px solid var(--smatch-border);
            color: white;
            border-radius: 0.25rem;
            padding: 0.75rem 1rem;
        }
        
        .form-control:focus {
            background-color: var(--smatch-odds-bg);
            border-color: var(--smatch-primary);
            color: white;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }
        
        .form-label {
            color: var(--smatch-text-secondary);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .btn-deposit {
            background-color: #7eac2f;
            color: white;
            border: none;
            border-radius: 0.25rem;
            font-weight: 600;
            padding: 0.75rem 2rem;
            font-size: 1rem;
            transition: background-color 0.3s ease;
            width: 100%;
        }
        
        .btn-deposit:hover {
            background-color: #6c9430;
        }
        
        .btn-deposit:disabled {
            background-color: var(--smatch-secondary);
            cursor: not-allowed;
        }
        
        .support-section {
            background-color: var(--smatch-odds-bg);
            border-radius: 0.5rem;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid var(--smatch-border);
        }
        
        .support-icon {
            font-size: 2rem;
            color: var(--smatch-primary);
            margin-bottom: 1rem;
        }
        
        .support-title {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .support-text {
            color: var(--smatch-text-secondary);
            margin-bottom: 1.5rem;
        }
        
        .btn-support {
            background-color: transparent;
            color: var(--smatch-primary);
            border: 1px solid var(--smatch-primary);
            border-radius: 0.25rem;
            font-weight: 600;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
        }
        
        .btn-support:hover {
            background-color: var(--smatch-primary);
            color: white;
        }
        
        @media (max-width: 768px) {
            .deposit-card {
                padding: 1rem;
            }
            
            .payment-content {
                flex-direction: row;
                text-align: left;
            }
            
            .payment-icon {
                margin-right: 0.75rem;
                margin-bottom: 0;
            }
            
            .payment-radio {
                margin-left: 0.5rem;
                margin-top: 0;
            }
        }





                .bitcoin-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .bitcoin-card {
            background-color: var(--smatch-card-bg);
            border: 1px solid var(--smatch-border);
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .bitcoin-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .bitcoin-title {
            color: white;
            font-weight: 600;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .bitcoin-subtitle {
            color: var(--smatch-text-secondary);
        }
        
        .amount-display {
            background-color: var(--smatch-odds-bg);
            border-radius: 20px;
            padding: 1rem 1.5rem;
            display: inline-flex;
            align-items: center;
            margin-bottom: 1.5rem;
            border: 1px solid var(--smatch-border);
        }
        
        .amount-icon {
            color: var(--bitcoin-color);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .amount-value {
            color: white;
            font-weight: 600;
            font-size: 1.3rem;
        }
        
        .amount-currency {
            color: var(--smatch-text-secondary);
            margin-left: 5px;
        }
        
        .qr-section {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .qr-code {
            width: 200px;
            height: 200px;
            background-color: white;
            padding: 10px;
            border-radius: 10px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .qr-code img {
            max-width: 100%;
            max-height: 100%;
        }
        
        .address-section {
            margin-bottom: 2rem;
        }
        
        .address-label {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .address-container {
            display: flex;
            align-items: center;
            background-color: var(--smatch-odds-bg);
            border: 1px solid var(--smatch-border);
            border-radius: 0.25rem;
            padding: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .address-value {
            flex: 1;
            color: white;
            font-family: monospace;
            font-size: 0.9rem;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .copy-btn {
            background-color: var(--bitcoin-color);
            color: white;
            border: none;
            border-radius: 0.25rem;
            padding: 0.5rem 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .copy-btn:hover {
            background-color: #e08218;
        }
        
        .instructions {
            background-color: var(--smatch-odds-bg);
            border-left: 4px solid var(--bitcoin-color);
            padding: 1rem;
            margin-bottom: 2rem;
            border-radius: 0 0.25rem 0.25rem 0;
        }
        
        .instructions-title {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .instructions-list {
            padding-left: 1.5rem;
            margin-bottom: 0;
        }
        
        .instructions-list li {
            margin-bottom: 0.5rem;
        }
        
        .countdown {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .countdown-title {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .countdown-timer {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--bitcoin-color);
        }
        
        .status-section {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .status-label {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .status-value {
            color: var(--smatch-text-secondary);
        }
        
        .btn-back {
            background-color: transparent;
            color: var(--smatch-primary);
            border: 1px solid var(--smatch-primary);
            border-radius: 0.25rem;
            font-weight: 600;
            padding: 0.75rem 2rem;
            transition: all 0.3s ease;
            display: block;
            margin: 0 auto;
            text-decoration: none;
            text-align: center;
            width: 200px;
        }
        
        .btn-back:hover {
            background-color: var(--smatch-primary);
            color: white;
        }
        
        .support-section {
            background-color: var(--smatch-odds-bg);
            border-radius: 0.5rem;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid var(--smatch-border);
        }
        
        .support-icon {
            font-size: 2rem;
            color: var(--smatch-primary);
            margin-bottom: 1rem;
        }
        
        .support-title {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .support-text {
            color: var(--smatch-text-secondary);
            margin-bottom: 1.5rem;
        }
        
        .btn-support {
            background-color: transparent;
            color: var(--smatch-primary);
            border: 1px solid var(--smatch-primary);
            border-radius: 0.25rem;
            font-weight: 600;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
        }
        
        .btn-support:hover {
            background-color: var(--smatch-primary);
            color: white;
        }
        
        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--smatch-success);
            color: white;
            padding: 1rem;
            border-radius: 0.25rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1050;
        }
        
        .toast.show {
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .bitcoin-card {
                padding: 1rem;
            }
            
            .address-container {
                flex-direction: column;
                align-items: stretch;
            }
            
            .address-value {
                margin-bottom: 0.5rem;
                text-align: center;
            }
            
            .qr-code {
                width: 150px;
                height: 150px;
            }
        }





                .usdt-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .usdt-card {
            background-color: var(--smatch-card-bg);
            border: 1px solid var(--smatch-border);
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .usdt-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .usdt-title {
            color: white;
            font-weight: 600;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .usdt-subtitle {
            color: var(--smatch-text-secondary);
        }
        
        .amount-display {
            background-color: var(--smatch-odds-bg);
            border-radius: 20px;
            padding: 1rem 1.5rem;
            display: inline-flex;
            align-items: center;
            margin-bottom: 1.5rem;
            border: 1px solid var(--smatch-border);
        }
        
        .amount-icon {
            color: var(--usdt-color);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .amount-value {
            color: white;
            font-weight: 600;
            font-size: 1.3rem;
        }
        
        .amount-currency {
            color: var(--smatch-text-secondary);
            margin-left: 5px;
        }
        
        .qr-section {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .qr-code {
            width: 200px;
            height: 200px;
            background-color: white;
            padding: 10px;
            border-radius: 10px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .qr-code img {
            max-width: 100%;
            max-height: 100%;
        }
        
        .address-section {
            margin-bottom: 2rem;
        }
        
        .address-label {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .address-container {
            display: flex;
            align-items: center;
            background-color: var(--smatch-odds-bg);
            border: 1px solid var(--smatch-border);
            border-radius: 0.25rem;
            padding: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .address-value {
            flex: 1;
            color: white;
            font-family: monospace;
            font-size: 0.9rem;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .copy-btn {
            background-color: var(--usdt-color);
            color: white;
            border: none;
            border-radius: 0.25rem;
            padding: 0.5rem 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .copy-btn:hover {
            background-color: #208e6c;
        }
        
        .instructions {
            background-color: var(--smatch-odds-bg);
            border-left: 4px solid var(--usdt-color);
            padding: 1rem;
            margin-bottom: 2rem;
            border-radius: 0 0.25rem 0.25rem 0;
        }
        
        .instructions-title {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .instructions-list {
            padding-left: 1.5rem;
            margin-bottom: 0;
        }
        
        .instructions-list li {
            margin-bottom: 0.5rem;
        }
        
        .network-info {
            background-color: var(--smatch-odds-bg);
            border-radius: 0.5rem;
            padding: 1rem;
            margin-bottom: 2rem;
            border: 1px solid var(--smatch-border);
        }
        
        .network-title {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .network-value {
            color: var(--smatch-text-secondary);
            font-family: monospace;
            margin-bottom: 0.5rem;
        }
        
        .countdown {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .countdown-title {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .countdown-timer {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--usdt-color);
        }
        
        .status-section {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .status-label {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .status-value {
            color: var(--smatch-text-secondary);
        }
        
        .btn-back {
            background-color: transparent;
            color: var(--smatch-primary);
            border: 1px solid var(--smatch-primary);
            border-radius: 0.25rem;
            font-weight: 600;
            padding: 0.75rem 2rem;
            transition: all 0.3s ease;
            display: block;
            margin: 0 auto;
            text-decoration: none;
            text-align: center;
            width: 200px;
        }
        
        .btn-back:hover {
            background-color: var(--smatch-primary);
            color: white;
        }
        
        .support-section {
            background-color: var(--smatch-odds-bg);
            border-radius: 0.5rem;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid var(--smatch-border);
        }
        
        .support-icon {
            font-size: 2rem;
            color: var(--smatch-primary);
            margin-bottom: 1rem;
        }
        
        .support-title {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .support-text {
            color: var(--smatch-text-secondary);
            margin-bottom: 1.5rem;
        }
        
        .btn-support {
            background-color: transparent;
            color: var(--smatch-primary);
            border: 1px solid var(--smatch-primary);
            border-radius: 0.25rem;
            font-weight: 600;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
        }
        
        .btn-support:hover {
            background-color: var(--smatch-primary);
            color: white;
        }
        
        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--smatch-success);
            color: white;
            padding: 1rem;
            border-radius: 0.25rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1050;
        }
        
        .toast.show {
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .usdt-card {
                padding: 1rem;
            }
            
            .address-container {
                flex-direction: column;
                align-items: stretch;
            }
            
            .address-value {
                margin-bottom: 0.5rem;
                text-align: center;
            }
            
            .qr-code {
                width: 150px;
                height: 150px;
            }
        }



                .card-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .card-payment {
            background-color: var(--smatch-card-bg);
            border: 1px solid var(--smatch-border);
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .card-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .card-title {
            color: white;
            font-weight: 600;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .card-subtitle {
            color: var(--smatch-text-secondary);
        }
        
        .amount-display {
            background-color: var(--smatch-odds-bg);
            border-radius: 20px;
            padding: 1rem 1.5rem;
            display: inline-flex;
            align-items: center;
            margin-bottom: 1.5rem;
            border: 1px solid var(--smatch-border);
        }
        
        .amount-icon {
            color: var(--login-color);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .amount-value {
            color: white;
            font-weight: 600;
            font-size: 1.3rem;
        }
        
        .amount-currency {
            color: var(--smatch-text-secondary);
            margin-left: 5px;
        }
        
        .payment-form {
            margin-bottom: 2rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            color: white;
            font-weight: 500;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .form-control {
            background-color: var(--smatch-odds-bg);
            border: 1px solid var(--smatch-border);
            color: white;
            border-radius: 0.25rem;
            padding: 0.75rem 1rem;
            width: 100%;
        }
        
        .form-control:focus {
            background-color: var(--smatch-odds-bg);
            border-color: var(--smatch-primary);
            color: white;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }
        
        .card-icons {
            display: flex;
            gap: 10px;
            margin-top: 0.5rem;
        }
        
        .card-icon {
            width: 50px;
            height: 30px;
            background-color: white;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .card-icon.visa {
            color: var(--visa-color);
        }
        
        .card-icon.mastercard {
            color: var(--mastercard-color);
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin-right: -10px;
            margin-left: -10px;
        }
        
        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
            padding-right: 10px;
            padding-left: 10px;
        }
        
        .btn-pay {
            background-color: var(--login-color);
            color: white;
            border: none;
            border-radius: 0.25rem;
            font-weight: 600;
            padding: 0.75rem 2rem;
            font-size: 1rem;
            transition: background-color 0.3s ease;
            width: 100%;
            cursor: pointer;
        }
        
        .btn-pay:hover {
            background-color: #6c9430;
        }
        
        .security-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 1rem;
            color: var(--smatch-text-secondary);
            font-size: 0.9rem;
        }
        
        .instructions {
            background-color: var(--smatch-odds-bg);
            border-left: 4px solid var(--login-color);
            padding: 1rem;
            margin-bottom: 2rem;
            border-radius: 0 0.25rem 0.25rem 0;
        }
        
        .instructions-title {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .instructions-list {
            padding-left: 1.5rem;
            margin-bottom: 0;
        }
        
        .instructions-list li {
            margin-bottom: 0.5rem;
        }
        
        .btn-back {
            background-color: transparent;
            color: var(--smatch-primary);
            border: 1px solid var(--smatch-primary);
            border-radius: 0.25rem;
            font-weight: 600;
            padding: 0.75rem 2rem;
            transition: all 0.3s ease;
            display: block;
            margin: 0 auto;
            text-decoration: none;
            text-align: center;
            width: 200px;
        }
        
        .btn-back:hover {
            background-color: var(--smatch-primary);
            color: white;
        }
        
        .support-section {
            background-color: var(--smatch-odds-bg);
            border-radius: 0.5rem;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid var(--smatch-border);
        }
        
        .support-icon {
            font-size: 2rem;
            color: var(--smatch-primary);
            margin-bottom: 1rem;
        }
        
        .support-title {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .support-text {
            color: var(--smatch-text-secondary);
            margin-bottom: 1.5rem;
        }
        
        .btn-support {
            background-color: transparent;
            color: var(--smatch-primary);
            border: 1px solid var(--smatch-primary);
            border-radius: 0.25rem;
            font-weight: 600;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
        }
        
        .btn-support:hover {
            background-color: var(--smatch-primary);
            color: white;
        }
        
        @media (max-width: 768px) {
            .card-payment {
                padding: 1rem;
            }
            
            .col-md-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }






          /* Styles pour le pied de page mobile */
    .smatch-footer {
        background-color: var(--smatch-card-bg);
        border-top: 1px solid var(--smatch-border);
        padding: 20px 15px 70px; /* Padding augmenté en bas pour éviter le chevauchement avec la nav */
        margin-top: 30px;
        color: var(--smatch-text-primary);
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .footer-section {
        margin-bottom: 15px;
    }
    
    .footer-title {
        color: white;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 12px;
        position: relative;
        padding-bottom: 8px;
    }
    
    .footer-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background-color: var(--smatch-primary);
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        color: var(--smatch-text-secondary);
        text-decoration: none;
        font-size: 13px;
        transition: color 0.2s ease;
    }
    
    .footer-links a:hover {
        color: var(--smatch-primary);
    }
    
    .social-links {
        display: flex;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: var(--smatch-odds-bg);
        border-radius: 50%;
        color: var(--smatch-text-secondary);
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .social-link:hover {
        background-color: var(--smatch-primary);
        color: white;
        transform: translateY(-2px);
    }
    
    .footer-payment-methods {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .payment-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: var(--smatch-odds-bg);
        border-radius: 8px;
        color: var(--smatch-text-secondary);
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 15px;
        border-top: 1px solid var(--smatch-border);
    }
    
    .footer-copyright {
        font-size: 12px;
        color: var(--smatch-text-secondary);
    }
    
    .age-restriction {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: var(--smatch-primary);
        border-radius: 50%;
        color: white;
        font-weight: bold;
        font-size: 14px;
    }
    
    /* Responsive pour mobile */
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .footer-section {
            margin-bottom: 20px;
        }
        
        .footer-bottom {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }
    }
    
    @media (max-width: 480px) {
        .smatch-footer {
            padding: 15px 10px 65px;
        }
        
        .footer-title {
            font-size: 13px;
        }
        
        .footer-links a {
            font-size: 12px;
        }
        
        .footer-copyright {
            font-size: 11px;
        }
    }






            .header {
            background: var(--smatch-dark);
            padding: 16px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
            font-weight: 700;
            font-size: 22px;
        }
        
        .logo-icon {
            color: var(--smatch-primary);
            font-size: 28px;
        }
        
        .nav-links {
            display: flex;
            gap: 24px;
        }
        
        .nav-link {
            color: var(--smatch-text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .nav-link:hover {
            color: white;
        }
        
        .nav-link.active {
            color: var(--smatch-primary);
        }
        

        
        .page-title {
            color: white;
            font-size: 24px;
            margin-bottom: 16px;
        }
        
        /* Filtre en pleine largeur */
        .competition-filter {
            background: var(--smatch-card-bg);
            border: 1px solid var(--smatch-border);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        
        .filter-title {
            color: white;
            font-weight: 600;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .filter-title i {
            color: var(--smatch-primary);
        }
        
        .toggle-icon {
            color: var(--smatch-text-secondary);
            font-size: 16px;
            transition: transform 0.3s ease;
        }
        
        .competition-filter.collapsed .toggle-icon {
            transform: rotate(180deg);
        }
        
        .filter-content {
            margin-top: 16px;
            transition: all 0.3s ease;
            overflow: hidden;
            max-height: 500px;
            opacity: 1;
        }
        
        .competition-filter.collapsed .filter-content {
            max-height: 0;
            opacity: 0;
            margin-top: 0;
        }
        
        .competition-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
        }
        
        .competition-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: var(--smatch-odds-bg);
            border: 1px solid var(--smatch-border);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .competition-item:hover {
            background: var(--smatch-hover);
            transform: translateY(-2px);
        }
        
        .competition-item.selected {
            background: rgba(13, 110, 253, 0.15);
            border-color: var(--smatch-primary);
        }
        
        .competition-logo {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--smatch-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
            flex-shrink: 0;
            font-weight: bold;
        }
        
        .competition-name {
            color: var(--smatch-text-primary);
            font-size: 15px;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
        }
        
        .checkmark {
            color: var(--smatch-primary);
            font-size: 16px;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        
        .competition-item.selected .checkmark {
            opacity: 1;
        }
        
        /* Contenu de la page */
        .content-section {
            background: var(--smatch-card-bg);
            border: 1px solid var(--smatch-border);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 24px;
        }
        
        .section-title {
            color: white;
            font-size: 20px;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--smatch-border);
        }
        
        .match-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .match-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px;
            background: var(--smatch-odds-bg);
            border: 1px solid var(--smatch-border);
            border-radius: 8px;
        }
        
        .teams {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
        }
        
        .team {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            color: white;
        }
        
        .team-logo {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--smatch-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        .vs {
            color: var(--smatch-text-secondary);
            font-size: 12px;
        }
        
        .match-time {
            color: white;
            font-weight: 500;
            margin: 0 20px;
        }
        
        .match-odds {
            display: flex;
            gap: 8px;
        }
        
        .odd {
            background: var(--smatch-dark);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-weight: 600;
            min-width: 60px;
            text-align: center;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .odd:hover {
            background: var(--smatch-primary);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 12px;
            }
            
            .nav-links {
                width: 100%;
                justify-content: center;
            }
            
            .competition-list {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .match-item {
                flex-direction: column;
                gap: 12px;
                align-items: flex-start;
            }
            
            .match-time {
                margin: 0;
                align-self: center;
            }
            
            .match-odds {
                width: 100%;
                justify-content: space-around;
            }
        }
        
        @media (max-width: 480px) {
            .competition-list {
                grid-template-columns: 1fr;
            }
            
            .competition-item {
                padding: 10px;
            }
            
            .competition-logo {
                width: 28px;
                height: 28px;
            }
            
            .competition-name {
                font-size: 14px;
            }
            
            .nav-links {
                flex-wrap: wrap;
                gap: 12px;
            }
        }
        
        /* Animation de sélection */
        @keyframes selectPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.03); }
            100% { transform: scale(1); }
        }
        
        .competition-item.selected {
            animation: selectPulse 0.3s ease;
        }