@font-face{font-family:asap_condensedregular;src:url("https://www.out-of-nothing.life/fonts/asapcondensed-regular-webfont.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
        :root {
            --gold: #c9a227;
            --gold-light: #e8d48a;
            --deep-purple: #1a0a2e;
            --purple-mid: #2d1b4e;
            --cream: #f5f0e6;
            --card-width: 80px;
            --card-height: 130px;
            --success: #4a9c6d;
            --warning: #c97a27;
        }

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

        body {
            font-family: asap_condensedregular;
            background: var(--deep-purple);
            min-height: 100vh;
            color: var(--cream);
        }

        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(ellipse at top, rgba(45, 27, 78, 0.8) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

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

        /* Header */
        header { text-align: center; padding: 20px 0; position: relative; }

        .user-status {
             position: fixed;
    top: 50px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
        }

        .user-badge {
            display: flex; align-items: center; gap: 8px;
            padding: 8px 15px;
            background: rgba(201, 162, 39, 0.15);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 20px; font-size: 0.85rem;
        }

        .user-badge.premium {
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.3) 0%, rgba(201, 162, 39, 0.1) 100%);
            border-color: var(--gold);
        }

        .login-btn, .logout-btn {
            padding: 8px 20px;
            font-family: asap_condensedregular; font-size: 0.8rem;
            background: transparent;
            border: 1px solid var(--gold); color: var(--gold);
            border-radius: 20px; cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .login-btn:hover, .logout-btn:hover {
            background: var(--gold); color: var(--deep-purple);
        }

        h1 {
            font-family: asap_condensedregular; font-size: 2.5rem; font-weight: 600;
            color: var(--gold);
            
            letter-spacing: 0.15em; margin-bottom: 10px;
        }

        .subtitle { font-size: 1.1rem; font-style: italic; opacity: 0.8; color: var(--gold-light); }

        /* Tabs */
        .tabs { display: flex; justify-content: center; gap: 10px; margin: 25px 0; flex-wrap: wrap; }

        .tab-btn {
            padding: 12px 15px;
            font-family: asap_condensedregular; font-size: 0.9rem;
            background: rgba(45, 27, 78, 0.6);
            border: 1px solid rgba(201, 162, 39, 0.3);
            color: var(--cream); border-radius: 8px;
            cursor: pointer; transition: all 0.3s ease;
        }

        .tab-btn:hover { border-color: var(--gold); background: rgba(201, 162, 39, 0.1); }
        .tab-btn.active {
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(45, 27, 78, 0.8) 100%);
            border-color: var(--gold); color: var(--gold);
        }
        .tab-btn .lock-icon { margin-left: 5px; opacity: 0.6; }

        /* Pages */
        .page { display: none; }
        .page.active { display: block; animation: fadeIn 0.4s ease; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* Instructions */
        .instructions {
            text-align: center; padding: 15px 30px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(45, 27, 78, 0.5) 100%);
            border: 1px solid rgba(201, 162, 39, 0.2);
            border-radius: 8px; margin-bottom: 30px; font-size: 1.1rem; margin-top : 3rem
        }
        .instructions strong { color: var(--gold); }
		
		.menu-container {
            position: relative;
        }
        .menu-toggle {
            background: rgba(201, 162, 39, 0.1);
            border: 1px solid rgba(201, 162, 39, 0.3);
            padding: 10px 15px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--cream);
            font-family: asap_condensedregular;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .menu-toggle:hover {
            border-color: var(--gold);
            background: rgba(201, 162, 39, 0.2);
        }
        .menu-toggle .hamburger {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .menu-toggle .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
        }
        .menu-dropdown {
            position: absolute;
            top: calc(100% + 10px);
            left: 0px;
            background: linear-gradient(135deg, var(--deep-purple) 0%, #2d1b4e 100%);
            border: 1px solid var(--gold);
            border-radius: 12px;
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }
        .menu-dropdown.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .menu-section {
            border-bottom: 1px solid rgba(201, 162, 39, 0.2);
        }
        .menu-section:last-child {
            border-bottom: none;
        }
        .menu-section-title {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            background: rgba(201, 162, 39, 0.1);
        }
        .menu-item {
            display: block;
            padding: 14px 20px;
            color: var(--cream);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .menu-item:hover {
            background: rgba(201, 162, 39, 0.15);
            color: var(--gold);
            padding-left: 25px;
        }
        .menu-item.active {
            background: rgba(201, 162, 39, 0.2);
            color: var(--gold);
            border-left: 3px solid var(--gold);
        }
        .menu-item .menu-icon {
            margin-right: 10px;
        }
        .menu-item .badge-new {
            background: var(--turquoise);
            color: var(--deep-purple);
            font-size: 0.7rem;
            padding: 2px 6px;
            border-radius: 10px;
            margin-left: 8px;
        }
        .menu-item .badge-soon {
            background: rgba(255,255,255,0.2);
            color: var(--cream);
            font-size: 0.7rem;
            padding: 2px 6px;
            border-radius: 10px;
            margin-left: 8px;
            opacity: 0.7;
        }

		
		
		
		
        .instructions strong { color: var(--gold); }

        /* Tirage zone */
        .tirage-zone { display: flex; justify-content: center; margin-bottom: 40px; }

        .croix-layout {
            display: grid;
            grid-template-columns: var(--card-width) var(--card-width) var(--card-width);
            grid-template-rows: var(--card-height) var(--card-height) var(--card-height);
            gap: 35px; padding: 30px;
            background: radial-gradient(circle at center, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
        }

        .emplacement {
            width: var(--card-width); height: var(--card-height);
            border: 2px dashed rgba(201, 162, 39, 0.4);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            position: relative; transition: all 0.3s ease;
            background: rgba(26, 10, 46, 0.6);
			position: relative;
        }

        .emplacement::before {
            content: attr(data-position);
            position: absolute; top: -25px; left: 50%;
            transform: translateX(-50%);
            font-family: asap_condensedregular; font-size: 0.75rem;
            color: var(--gold); white-space: nowrap;
        }

        .emplacement.drag-over {
            border-color: var(--gold);
            background: rgba(201, 162, 39, 0.15);
            box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
        }

        .emplacement.filled { border-style: solid; border-color: var(--gold); }
        .emplacement .numero { font-family: font-family:asap_condensedregular; font-size: 1.5rem; color: rgba(201, 162, 39, 0.3); }

        .pos-1 { grid-column: 1; grid-row: 2; }  /* Le Pour - à gauche */
.pos-2 { grid-column: 3; grid-row: 2; }  /* Le Contre - à droite */
.pos-3 { grid-column: 2; grid-row: 1; }  /* Le Conseil - au dessus */
.pos-4 { grid-column: 2; grid-row: 3; }  /* Le Résultat - en dessous */
.pos-5 { grid-column: 2; grid-row: 2; }  /* L'Évolution - au milieu */



        .carte-placee {
            width: 100%; height: 100%;
            border-radius: 6px;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            background: linear-gradient(145deg, var(--purple-mid) 0%, var(--deep-purple) 100%);
            border: 1px solid var(--gold);
        }

        /* Arcanes */
        .arcanes-section { margin-top: 20px; }
        .arcanes-title {
            font-family: asap_condensedregular; font-size: 1.3rem;
            color: var(--gold); text-align: center;
            margin-bottom: 20px;
        }

        .arcanes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
            gap: 12px; padding: 25px;
            background: linear-gradient(180deg, rgba(45, 27, 78, 0.4) 0%, rgba(26, 10, 46, 0.6) 100%);
            border: 1px solid rgba(201, 162, 39, 0.15);
            border-radius: 12px; max-width: 900px; margin: 0 auto;
        }

        .arcane-card {
            width: 70px; height: 115px;
            border-radius: 6px; cursor: grab;
            transition: all 0.3s ease;
            background: linear-gradient(145deg, var(--purple-mid) 0%, var(--deep-purple) 100%);
            border: 1px solid rgba(201, 162, 39, 0.3);
            display: flex; align-items: center; justify-content: center; flex-direction: column;
        }

        .arcane-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            border-color: var(--gold);
        }

        .arcane-card.used {
    opacity: 0.25;
    filter: grayscale(0.5);
}
        .arcane-card .card-number { font-family: asap_condensedregular; font-size: 1.2rem; color: var(--gold); font-weight: 700; }
        .arcane-card .card-name { font-size: 0.55rem; color: var(--cream); margin-top: 5px; text-align: center; padding: 0 5px; }

        /* Progress */
        .progress { text-align: center; margin: 20px 0; font-family: asap_condensedregular; color: var(--gold-light); }
        .progress-dots { display: flex; justify-content: center; gap: 10px; margin-top: 10px; }
        .progress-dot {
            width: 12px; height: 12px; border-radius: 50%;
            border: 2px solid var(--gold); background: transparent;
        }
        .progress-dot.filled { background: var(--gold); }

        /* Interpretation */
        .interpretation-zone {
            margin-top: 50px; opacity: 0; transform: translateY(30px);
            transition: all 0.8s ease;
            pointer-events: none;
        }
        .interpretation-zone.visible { opacity: 1; transform: translateY(0); pointer-events: all; }

        .interpretation-title {
            font-family: asap_condensedregular; font-size: 1.8rem;
            color: var(--gold); text-align: center; margin-bottom: 30px;
        }

        .interpretations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap:25px }

        .interpretation-card {
    background: linear-gradient(145deg, #ffffff 0%, #b4abcd 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 25px;
    color: grey;
    font-size: 1.1rem;
    line-height: 1.5rem;
}

.interpretation-card p {
	margin-top: 1.5rem;
}

      .interpretation-card h3 {
    font-family: asap_condensedregular;
    color: #fbb908;
    font-size: 1rem;
    margin-bottom: 10px;
}
.interpretation-card h4 { font-family: asap_condensedregular; color: #ffffff; font-size: 1rem; margin-bottom: 10px; }
		.mots-cles {
    background-color: #978db2;
    padding: 1rem;
    color: white;
    border-radius: 8px;
    margin-top: 20px;
    font-style: italic;
    line-height: 1.6;
}

.mots-cles h4:nth-child(2) { margin-top: 1rem; }

        .interpretation-card .position-label {
            .interpretation-card .position-label {
    font-size: 0.75rem;
    background: rgb(34 18 60);
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 10px;
}
        }
       .interpretation-card .card-name-display {
    font-size: 1.1rem;
    color: #06a7b4;
    margin-bottom: 15px;
    font-style: italic;
}
        .interpretation-card .interpretation-text { font-size: 1rem; line-height: 1.7; }
		
		.interpretation-card .interpretation-text img {
    float: left;
    width: 120px;
    height: auto;
    margin: 0 20px 15px 0;
    border-radius: 8px;
    border: 2px solid var(--turquoise);
}

        /* Actions */
        .tirage-actions {
            display: flex; flex-wrap: wrap; justify-content: center; gap: 15px;
            margin-top: 40px; padding: 30px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, rgba(45, 27, 78, 0.4) 100%);
            border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 12px;
        }

        .action-btn {
            padding: 15px 30px; font-family: asap_condensedregular; font-size: 0.95rem;
            border-radius: 8px; cursor: pointer; transition: all 0.3s ease;
            display: flex; align-items: center; gap: 10px;
        }
        .action-btn.primary {
            background: linear-gradient(135deg, var(--gold) 0%, #a8841f 100%);
            border: none; color: var(--deep-purple);
        }
        .action-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3); }
        .action-btn.secondary { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
        .action-btn .price { font-size: 0.8rem; opacity: 0.9; }

        /* Pricing */
        .pricing-section { max-width: 800px; margin: 0 auto; }
        .pricing-header { text-align: center; margin-bottom: 40px; }
        .pricing-header h2 { font-family: asap_condensedregular; font-size: 2rem; color: var(--gold); margin-bottom: 15px; }
        .pricing-cards { display: grid;grid-template-columns: repeat(3, 1fr); gap: 25px;
}

        .pricing-card {
            background: linear-gradient(145deg, rgba(45, 27, 78, 0.6) 0%, rgba(26, 10, 46, 0.8) 100%);
            border: 1px solid rgba(201, 162, 39, 0.2);
            border-radius: 16px; padding: 35px; text-align: center;
        }
        .pricing-card.featured { border-color: var(--gold); transform: scale(1.02); }
        .pricing-card .plan-name { font-family: asap_condensedregular; font-size: 1.4rem; color: var(--gold); margin-bottom: 10px; }
        .pricing-card .plan-price { font-size: 2.5rem; font-weight: 700; color: var(--cream); margin-bottom: 5px; }
        .pricing-card .plan-period { font-size: 0.9rem; opacity: 0.7; margin-bottom: 25px; }
        .pricing-card .plan-features { list-style: none; margin-bottom: 30px; }
        .pricing-card .plan-features li { padding: 10px 0; border-bottom: 1px solid rgba(201, 162, 39, 0.1); }
        .pricing-card .plan-features li::before { content: '✦ '; color: var(--gold); }

        .subscribe-btn {
            width: 100%; padding: 15px; font-family: asap_condensedregular;
            font-size: 1rem; border-radius: 8px; cursor: pointer;
        }
        .subscribe-btn.gold { background: linear-gradient(135deg, var(--gold) 0%, #a8841f 100%); border: none; color: var(--deep-purple); }

        .help-section {
            margin-top: 50px; padding: 40px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, rgba(45, 27, 78, 0.4) 100%);
            border: 1px solid rgba(201, 162, 39, 0.2);
            border-radius: 16px; text-align: center;
        }
        .help-section h3 { font-family: asap_condensedregular; font-size: 1.5rem; color: var(--gold); margin-bottom: 15px; }
        .help-section p { max-width: 600px; margin: 0 auto 25px; line-height: 1.7; }
        .help-price { font-size: 1.8rem; font-weight: 700; color: var(--gold); margin-bottom: 20px; }

        /* Modals */
        .modal-overlay {
            display: none; position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.8); z-index: 1000;
            align-items: center; justify-content: center; padding: 20px;
        }
        .modal-overlay.active { display: flex; }

        .modal {
            background: linear-gradient(145deg, var(--purple-mid) 0%, var(--deep-purple) 100%);
            border: 1px solid var(--gold); border-radius: 16px;
            padding: 40px; max-width: 500px; width: 100%;
        }

        .modal h2 { font-family: asap_condensedregular; color: var(--gold); margin-bottom: 25px; text-align: center; }

        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; color: var(--gold-light); }
        .form-group input, .form-group textarea {
            width: 100%; padding: 12px 15px;
            font-family: asap_condensedregular; font-size: 1rem;
            background: rgba(26, 10, 46, 0.8);
            border: 1px solid rgba(201, 162, 39, 0.3);
            color: var(--cream); border-radius: 8px;
        }
        .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
        .form-group textarea { min-height: 120px; resize: vertical; }

        .modal-actions { display: flex; gap: 15px; margin-top: 30px; }
        .modal-actions button { flex: 1; padding: 15px; font-family: asap_condensedregular; font-size: 1rem; border-radius: 8px; cursor: pointer; }
        .modal-actions .cancel-btn { background: transparent; border: 1px solid rgba(201, 162, 39, 0.5); color: var(--cream); }
        .modal-actions .confirm-btn { background: linear-gradient(135deg, var(--gold) 0%, #a8841f 100%); border: none; color: var(--deep-purple); }

        /* Toast */
        .toast {
            position: fixed; bottom: 30px; right: 30px;
            padding: 20px 30px; background: var(--purple-mid);
            border: 1px solid var(--gold); border-radius: 10px;
            color: var(--cream); z-index: 1001;
            transform: translateX(150%); transition: transform 0.4s ease;
        }
        .toast.show { transform: translateX(0); }
        .toast.success { border-color: var(--success); }
        .toast.error { border-color: #c94a4a; }

        /* Saved tirages */
        .tirages-list { display: grid; gap: 20px; }
        .tirage-saved-card {
            background: linear-gradient(145deg, rgba(45, 27, 78, 0.6) 0%, rgba(26, 10, 46, 0.8) 100%);
            border: 1px solid rgba(201, 162, 39, 0.2);
            border-radius: 12px; padding: 25px;
            cursor: pointer; transition: all 0.3s ease;
        }
        .tirage-saved-card:hover { border-color: var(--gold); }
        .tirage-saved-card .tirage-date { font-family: asap_condensedregular; color: var(--gold); margin-bottom: 10px; }
        .tirage-saved-card .tirage-cartes { display: flex; gap: 10px; flex-wrap: wrap; }
        .tirage-saved-card .mini-carte {
            padding: 5px 12px; background: rgba(201, 162, 39, 0.15);
            border: 1px solid rgba(201, 162, 39, 0.3); border-radius: 15px; font-size: 0.85rem;
        }

        .empty-state { text-align: center; padding: 60px 30px; opacity: 0.7; }
        .empty-state .icon { font-size: 4rem; margin-bottom: 20px; }

        /* Responsive */
        @media (max-width: 768px) {
    :root { 
        --card-width: 70px; 
        --card-height: 115px; 
    }
    
    h1 { font-size: 1.6rem; letter-spacing: 0.08em; }
    .subtitle { font-size: 1rem; }
    
    .user-status { 
        position: static; 
        justify-content: center; 
        margin-bottom: 15px; 
    }
    
    /* Cartes plus grandes sur mobile */
    .spread-card { 
        width: 55px; 
        height: 90px; 
    }
    
    /* Croix plus grande */
    .croix-layout {
        gap: 20px;
        padding: 20px;
    }
    
    .emplacement {
        width: 75px;
        height: 120px;
    }
    
    /* Textes d'interprétation plus lisibles */
    .interpretation-card {
        padding: 20px;
        font-size: 1rem;
    }
    
    .interpretation-card .interpretation-text {
        font-size: 1.05rem;
        line-height: 1.8;
    }
    
    .interpretation-card .interpretation-text img {
        width: 80px;
        float: none;
        display: block;
        margin: 0 auto 15px;
    }
    
    .interpretations-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    /* Boutons d'action */
    .tirage-actions { 
        flex-direction: column; 
        padding: 20px;
    }
    .action-btn { 
        width: 100%; 
        justify-content: center;
        font-size: 1.1rem;
        padding: 18px;
    }
    
    /* Question */
    #user-question {
        font-size: 1rem;
    }
    
    /* Pricing */
    .pricing-cards { grid-template-columns: 1fr; }
	
	
	
    
    /* Steps */
    .step-indicator { 
        flex-direction: row; 
        gap: 10px; 
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step-label { font-size: 0.8rem; }
    
    /* Domaine buttons */
    .domaine-btn {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    :root { 
        --card-width: 65px; 
        --card-height: 105px; 
    }
    
    h1 { font-size: 1.4rem; }
    
    .spread-card { 
        width: 45px; 
        height: 75px; 
    }
    
    .emplacement {
        width: 75px;
        height: 120px;
    }
    
    .croix-layout {
        gap: 45px;
    }
}
		
		.arcane-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.carte-placee img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
/* Accordéon Tirages Sauvegardés */
.accordeon-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordeon-item:hover {
    border-color: var(--turquoise);
}

.accordeon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordeon-header:hover {
    background: rgba(0, 197, 220, 0.05);
}

.accordeon-date {
    font-family: 'Playfair Display', serif;
    color: var(--turquoise);
    font-size: 1.1rem;
}

.accordeon-apercu {
    display: flex;
    gap: 8px;
}

.mini-carte-img {
    width: 35px;
    height: 55px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.accordeon-icon {
    color: var(--turquoise);
    transition: transform 0.3s ease;
}

.accordeon-item.open .accordeon-icon {
    transform: rotate(180deg);
}

.accordeon-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordeon-item.open .accordeon-content {
    max-height: 2000px;
    padding: 0 25px 25px 25px;
}

/* Croix sauvegardée */
.tirage-croix-saved {
    display: flex;
    justify-content: center;
    margin: 20px 0 30px 0;
}

.croix-saved-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.croix-ligne-milieu {
    display: flex;
    gap: 10px;
    align-items: center;
}

.croix-pos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.croix-pos img {
    width: 70px;
    height: 110px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid var(--turquoise);
}

.croix-pos span {
    font-size: 0.75rem;
    color: var(--turquoise);
    text-transform: uppercase;
    font-weight: 600;
}

/* Question et notes */
.tirage-question-saved,
.tirage-notes-saved {
    background: rgba(0, 197, 220, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.tirage-question-saved strong,
.tirage-notes-saved strong {
    color: var(--turquoise);
}

/* Interprétations */
.tirage-interpretations {
    margin-top: 20px;
}

.interp-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--orange);
}

.interp-header {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.interp-header strong {
    color: var(--orange);
}

.interp-item p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Responsive accordéon */
@media (max-width: 768px) {
    .accordeon-header {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .accordeon-apercu {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .mini-carte-img {
        width: 30px;
        height: 45px;
    }
    
    .croix-pos img {
        width: 55px;
        height: 85px;
    }
}

/* Sélecteur de domaine */
.domaine-selector {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(45, 27, 78, 0.4);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
}

.domaine-selector label {
    display: block;
    font-family: asap_condensedregular;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.domaine-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.domaine-btn {
    padding: 15px 15px;
    font-family: asap_condensedregular;
    font-size: 1rem;
    background: transparent;
    border: 1px solid #c9a227;
    color: var(--cream);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.domaine-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.domaine-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, #a8841f 100%);
    border-color: var(--gold);
    color: var(--deep-purple);
}
}


.carte-placee {
    cursor: pointer;
    transition: all 0.3s ease;
}

.carte-placee:hover {
    transform: scale(0.95);
    opacity: 0.8;
}

.carte-placee {
    position: relative;
    cursor: default;
}

.remove-card {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.carte-placee:hover .remove-card {
    opacity: 1;
}

.remove-card:hover {
    transform: scale(1.2);
    background: #c0392b;
}

/* Boutons d'action dans les tirages sauvegardés */
.tirage-saved-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.action-btn-small {
    padding: 12px 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn-small.orange {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border: none;
    color: white;
}

.action-btn-small.orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 166, 35, 0.3);
}

.action-btn-small.secondary {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
}

.action-btn-small.secondary:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

/* Style pour les interprétations dans l'accordéon */
.interp-item {
    padding: 20px;
    background: linear-gradient(145deg, #ffffff 0%, #b4abcd 100%);
color: #666666;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--orange);
}

.interp-header {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.interp-header strong {
    color: var(--orange);
}

.interp-text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
}

.interp-text img {
    float: left;
    width: 100px;
    height: auto;
    margin: 0 15px 10px 0;
    border-radius: 6px;
}

/* Accordéon avec scroll */
.accordeon-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordeon-item.open .accordeon-content {
    max-height: 500px;
    overflow-y: auto;
}

/* Scrollbar noire personnalisée */
.accordeon-content::-webkit-scrollbar {
    width: 8px;
}

.accordeon-content::-webkit-scrollbar-track {
    background: #1a1a2e;
    border-radius: 4px;
}

.accordeon-content::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.accordeon-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Firefox */
.accordeon-content {
    scrollbar-width: thin;
    scrollbar-color: #444 #1a1a2e;
}

/* Boutons d'action dans les tirages sauvegardés */
.tirage-saved-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn-small {
    padding: 12px 24px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.action-btn-small.orange {
    background: linear-gradient(135deg, #f5a623 0%, #e0941c 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.action-btn-small.orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.4);
}

.action-btn-small.secondary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.action-btn-small.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
}

.accordeon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordeon-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordeon-infos {
    flex: 1;
    min-width: 0;
}

.accordeon-date {
    color: var(--turquoise);
    font-weight: 600;
    font-size: 0.95rem;
}

.accordeon-question {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.accordeon-apercu {
    display: flex;
    gap: 5px;
    margin: 0 15px;
}

.accordeon-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.accordeon-item.open .accordeon-icon {
    transform: rotate(180deg);
}
/* Zone de partage */
#share-zone {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

.share-btn.twitter {
    background: #000000;
}

.share-btn.twitter:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.whatsapp:hover {
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.linkedin:hover {
    box-shadow: 0 5px 20px rgba(10, 102, 194, 0.4);
}

.share-btn.copy {
    background: linear-gradient(135deg, var(--turquoise) 0%, #00a5b9 100%);
}

.share-btn.copy:hover {
    box-shadow: 0 5px 20px rgba(0, 197, 220, 0.4);
}

@media (max-width: 600px) {
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Section Aide Proéminente */
.aide-promo-section {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, rgba(201, 162, 39, 0.1) 100%);
    border: 2px solid #f5a623;
    border-radius: 20px;
    text-align: center;
}

.aide-promo-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.aide-promo-section h3 {
    color: #f5a623;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.aide-promo-section p {
    max-width: 500px;
    margin: 0 auto 20px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.aide-promo-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f5a623;
    margin-bottom: 20px;
}

.aide-promo-btn {
    padding: 18px 50px;
    font-family: asap_condensedregular;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #f5a623 0%, #e0941c 100%);
    border: none;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.aide-promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
}

.aide-promo-garantie {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}


/* Synthèse Premium */
.synthese-zone {
    margin-top: 40px;
    border: 2px solid var(--gold);
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff 0%, #b4abcd 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 25px;
 
    font-size: 1.1rem;
    line-height: 1.4rem;
}

.synthese-title {
    color: var(--gold);
    font-family: asap_condensedregular;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 20px;
}

.synthese-question {
    background: rgb(150 141 177);
    border-left: 3px solid #1e0e36;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.synthese-text {
    
    color: grey;
    font-size: 1.06rem;
    line-height: 1.4;

}

.synthese-text p {
    margin-bottom: 15px;
}

.synthese-text strong {
    color: var(--gold);
}
.tab-btn[title] {
    position: relative;
}

.tab-btn[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep-purple);
    border: 1px solid var(--gold);
    color: var(--cream);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 100;
    pointer-events: none;
}