@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;
            --turquoise: #00c5dc;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: asap_condensedregular;
            background: var(--deep-purple);
            min-height: 100vh;
            color: var(--cream);
            overflow-x: hidden;
        }
        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); }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        .tirage-interactif-zone {
            position: relative;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 20px;
        }
        .deck-container {
            position: relative;
            width: 120px;
            height: 195px;
            margin-bottom: 40px;
            perspective: 1000px;
        }
        .deck-card {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 10px;
            background-image: url('media/dos-tirage-du-jour.png');
            background-size: cover;
            background-position: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease;
        }
        /* Animation BATTRE - cartes s'éparpillent */
       @keyframes battre1 {
            0% { transform: translateX(0) translateY(0) rotate(0deg); }
            20% { transform: translateX(-120px) translateY(-60px) rotate(-25deg); }
            40% { transform: translateX(80px) translateY(40px) rotate(15deg); }
            60% { transform: translateX(-60px) translateY(-30px) rotate(-10deg); }
            80% { transform: translateX(40px) translateY(20px) rotate(5deg); }
            100% { transform: translateX(0) translateY(0) rotate(0deg); }
        }
        @keyframes battre2 {
            0% { transform: translateX(0) translateY(0) rotate(0deg); }
            20% { transform: translateX(100px) translateY(-50px) rotate(20deg); }
            40% { transform: translateX(-90px) translateY(35px) rotate(-18deg); }
            60% { transform: translateX(50px) translateY(-25px) rotate(8deg); }
            80% { transform: translateX(-30px) translateY(15px) rotate(-5deg); }
            100% { transform: translateX(0) translateY(0) rotate(0deg); }
        }
        @keyframes battre3 {
            0% { transform: translateX(0) translateY(0) rotate(0deg); }
            20% { transform: translateX(-80px) translateY(70px) rotate(-30deg); }
            40% { transform: translateX(110px) translateY(-45px) rotate(22deg); }
            60% { transform: translateX(-45px) translateY(35px) rotate(-12deg); }
            80% { transform: translateX(25px) translateY(-18px) rotate(6deg); }
            100% { transform: translateX(0) translateY(0) rotate(0deg); }
        }
        /* ===== BATTRE - 22 cartes ===== */
.deck-container.battre .deck-card:nth-child(1) { animation: battre1 1.2s ease-in-out infinite; }
.deck-container.battre .deck-card:nth-child(2) { animation: battre2 1.2s ease-in-out infinite; animation-delay: 0.1s; }
.deck-container.battre .deck-card:nth-child(3) { animation: battre3 1.2s ease-in-out infinite; animation-delay: 0.2s; }
.deck-container.battre .deck-card:nth-child(4) { animation: battre1 1.2s ease-in-out infinite; animation-delay: 0.15s; }
.deck-container.battre .deck-card:nth-child(5) { animation: battre2 1.2s ease-in-out infinite; animation-delay: 0.25s; }
.deck-container.battre .deck-card:nth-child(6) { animation: battre3 1.2s ease-in-out infinite; animation-delay: 0.27s; }
.deck-container.battre .deck-card:nth-child(7) { animation: battre1 1.2s ease-in-out infinite; animation-delay: 0.18s; }
.deck-container.battre .deck-card:nth-child(8) { animation: battre2 1.2s ease-in-out infinite; animation-delay: 0.14s; }
.deck-container.battre .deck-card:nth-child(9) { animation: battre3 1.2s ease-in-out infinite; animation-delay: 0.21s; }
.deck-container.battre .deck-card:nth-child(10) { animation: battre1 1.2s ease-in-out infinite; animation-delay: 0.23s; }
.deck-container.battre .deck-card:nth-child(11) { animation: battre2 1.2s ease-in-out infinite; animation-delay: 0.12s; }
.deck-container.battre .deck-card:nth-child(12) { animation: battre3 1.2s ease-in-out infinite; animation-delay: 0.19s; }
.deck-container.battre .deck-card:nth-child(13) { animation: battre1 1.2s ease-in-out infinite; animation-delay: 0.26s; }
.deck-container.battre .deck-card:nth-child(14) { animation: battre2 1.2s ease-in-out infinite; animation-delay: 0.11s; }
.deck-container.battre .deck-card:nth-child(15) { animation: battre3 1.2s ease-in-out infinite; animation-delay: 0.22s; }
.deck-container.battre .deck-card:nth-child(16) { animation: battre1 1.2s ease-in-out infinite; animation-delay: 0.16s; }
.deck-container.battre .deck-card:nth-child(17) { animation: battre2 1.2s ease-in-out infinite; animation-delay: 0.24s; }
.deck-container.battre .deck-card:nth-child(18) { animation: battre3 1.2s ease-in-out infinite; animation-delay: 0.13s; }
.deck-container.battre .deck-card:nth-child(19) { animation: battre1 1.2s ease-in-out infinite; animation-delay: 0.28s; }
.deck-container.battre .deck-card:nth-child(20) { animation: battre2 1.2s ease-in-out infinite; animation-delay: 0.17s; }
.deck-container.battre .deck-card:nth-child(21) { animation: battre3 1.2s ease-in-out infinite; animation-delay: 0.09s; }
.deck-container.battre .deck-card:nth-child(22) { animation: battre1 1.2s ease-in-out infinite; animation-delay: 0.20s; }


       
        
        /* Animation MÉLANGER - riffle shuffle (deux paquets s'intercalent) */
        @keyframes melanger-split {
            0% { transform: translateX(0) translateY(0) rotate(0deg); }
            30% { transform: translateX(-50px) translateY(0) rotate(-5deg); }
            50% { transform: translateX(-50px) translateY(-20px) rotate(-5deg); }
            70% { transform: translateX(0) translateY(-10px) rotate(0deg); }
            100% { transform: translateX(0) translateY(0) rotate(0deg); }
        }
        @keyframes melanger-split-right {
            0% { transform: translateX(0) translateY(0) rotate(0deg); }
            30% { transform: translateX(50px) translateY(0) rotate(5deg); }
            50% { transform: translateX(50px) translateY(-20px) rotate(5deg); }
            70% { transform: translateX(0) translateY(-10px) rotate(0deg); }
            100% { transform: translateX(0) translateY(0) rotate(0deg); }
        }
        @keyframes melanger-cascade {
            0%, 30% { transform: translateY(0); }
            40% { transform: translateY(-30px); }
            50% { transform: translateY(-25px); }
            60% { transform: translateY(-20px); }
            70% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
       
	   .deck-container.melanger .deck-card:nth-child(1) { animation: melanger-split 1s ease-in-out infinite; animation-delay: 0.05s; }
.deck-container.melanger .deck-card:nth-child(3) { animation: melanger-split 1s ease-in-out infinite; animation-delay: 0.1s; }
.deck-container.melanger .deck-card:nth-child(5) { animation: melanger-split 1s ease-in-out infinite; animation-delay: 0.15s; }
.deck-container.melanger .deck-card:nth-child(7) { animation: melanger-split 1s ease-in-out infinite; animation-delay: 0.2s; }
.deck-container.melanger .deck-card:nth-child(9) { animation: melanger-split 1s ease-in-out infinite; animation-delay: 0.25s; }
.deck-container.melanger .deck-card:nth-child(11) { animation: melanger-split 1s ease-in-out infinite; animation-delay: 0.3s; }
.deck-container.melanger .deck-card:nth-child(13) { animation: melanger-split 1s ease-in-out infinite; animation-delay: 0.35s; }
.deck-container.melanger .deck-card:nth-child(15) { animation: melanger-split 1s ease-in-out infinite; animation-delay: 0.4s; }
.deck-container.melanger .deck-card:nth-child(17) { animation: melanger-split 1s ease-in-out infinite; animation-delay: 0.45s; }
.deck-container.melanger .deck-card:nth-child(19) { animation: melanger-split 1s ease-in-out infinite; animation-delay: 0.5s; }
.deck-container.melanger .deck-card:nth-child(21) { animation: melanger-split 1s ease-in-out infinite; animation-delay: 0.55s; }

/* Paquet droit (pairs 2-22) */
.deck-container.melanger .deck-card:nth-child(2) { animation: melanger-split-right 1s ease-in-out infinite; animation-delay: 0.08s; }
.deck-container.melanger .deck-card:nth-child(4) { animation: melanger-split-right 1s ease-in-out infinite; animation-delay: 0.13s; }
.deck-container.melanger .deck-card:nth-child(6) { animation: melanger-split-right 1s ease-in-out infinite; animation-delay: 0.18s; }
.deck-container.melanger .deck-card:nth-child(8) { animation: melanger-split-right 1s ease-in-out infinite; animation-delay: 0.23s; }
.deck-container.melanger .deck-card:nth-child(10) { animation: melanger-split-right 1s ease-in-out infinite; animation-delay: 0.28s; }
.deck-container.melanger .deck-card:nth-child(12) { animation: melanger-split-right 1s ease-in-out infinite; animation-delay: 0.33s; }
.deck-container.melanger .deck-card:nth-child(14) { animation: melanger-split-right 1s ease-in-out infinite; animation-delay: 0.38s; }
.deck-container.melanger .deck-card:nth-child(16) { animation: melanger-split-right 1s ease-in-out infinite; animation-delay: 0.43s; }
.deck-container.melanger .deck-card:nth-child(18) { animation: melanger-split-right 1s ease-in-out infinite; animation-delay: 0.48s; }
.deck-container.melanger .deck-card:nth-child(20) { animation: melanger-split-right 1s ease-in-out infinite; animation-delay: 0.53s; }
.deck-container.melanger .deck-card:nth-child(22) { animation: melanger-split-right 1s ease-in-out infinite; animation-delay: 0.58s; }
        
        /* Animation COUPER - paquet du dessus se soulève et glisse en dessous */
        @keyframes couper-lift {
            0% { transform: translateX(0) translateY(0) rotate(0deg); }
            30% { transform: translateX(0) translateY(-60px) rotate(0deg); }
            50% { transform: translateX(-80px) translateY(-60px) rotate(-3deg); }
            70% { transform: translateX(-80px) translateY(20px) rotate(-3deg); }
            90% { transform: translateX(0) translateY(10px) rotate(0deg); }
            100% { transform: translateX(0) translateY(0) rotate(0deg); }
        }
        .deck-container.couper .deck-card:nth-child(n+11) {
            animation: couper-lift 1.2s ease-in-out forwards;
        }
        
        /* Animation d'étalement des cartes */
        .spread-card {
            opacity: 0;
            transform: scale(0.8);
        }
        .spread-card.dealing {
            animation: dealCard 0.3s ease-out forwards;
        }
        @keyframes dealCard {
            0% {
                opacity: 0;
                transform: translateX(-200px) translateY(-100px) scale(0.5) rotate(-20deg);
            }
            60% {
                opacity: 1;
                transform: translateX(10px) translateY(5px) scale(1.05);
            }
            100% {
                opacity: 1;
                transform: translateX(0) translateY(0) scale(1);
            }
        }
        .tirage-controls {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .control-btn {
            padding: 15px 35px;
            font-family: asap_condensedregular;
            font-size: 1.1rem;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .control-btn.primary {
            background: linear-gradient(135deg, var(--gold) 0%, #a8841f 100%);
            border: none;
            color: var(--deep-purple);
        }
        .control-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
        }
        .control-btn.secondary {
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
        }
        .control-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
        }
        .spread-container {
            position: relative;
            width: 100%;
            max-width: 900px;
            height: 250px;
            margin: 20px auto 40px;
            display: none;
        }
        .spread-container.visible { display: block; }
        .spread-card {
            position: absolute;
            width: 80px;
            height: 130px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.4s ease;
            transform-style: preserve-3d;
            background-image: url('media/dos-tirage-du-jour.png');
            background-size: cover;
            background-position: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        .spread-card:hover {
            transform: translateY(-20px) scale(1.1);
            z-index: 100;
            box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
        }
        .spread-card.selected {
            opacity: 0.3;
            pointer-events: none;
        }
        .spread-card.flipping {
            animation: flipCard 0.6s ease forwards;
        }
        @keyframes flipCard {
            0% { transform: rotateY(0deg); }
            50% { transform: rotateY(90deg); }
            100% { transform: rotateY(0deg); }
        }
        .drawn-cards-zone {
            display: none;
            margin-top: 30px;
        }
        .drawn-cards-zone.visible { display: block; }
        .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;
            justify-content: center;
            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);
        }
        .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.filled { border-style: solid; border-color: var(--gold); }
        .emplacement .numero { font-family: asap_condensedregular; font-size: 1.5rem; color: rgba(201, 162, 39, 0.3); }
        .pos-1 { grid-column: 1; grid-row: 2; }
        .pos-2 { grid-column: 3; grid-row: 2; }
        .pos-3 { grid-column: 2; grid-row: 1; }
        .pos-4 { grid-column: 2; grid-row: 3; }
        .pos-5 { grid-column: 2; grid-row: 2; }
        .carte-placee { width: 100%; height: 100%; border-radius: 6px; overflow: hidden; }
        .carte-placee img { width: 100%; height: 100%; object-fit: cover; border-radius: 5px; }
        .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;
            transition: all 0.3s ease;
        }
        .progress-dot.filled { background: var(--gold); }
        .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(--cream);
            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: 2px solid rgba(201, 162, 39, 0.3);
            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, rgb(0, 197, 220) 0%, rgb(0, 165, 185) 100%);
    border-color: rgb(0, 197, 220);
    color: white;
        }
        .instructions {
            text-align: center;
            padding: 20px;
            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;
        }
        .instructions strong { color: var(--gold); }
		
		.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
	margin-top: 3rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
		
       
        .step.active { opacity: 1; }
        .step.completed { opacity: 0.7; }
        .step-number {
            width: 35px; height: 35px; border-radius: 50%;
            background: rgba(201, 162, 39, 0.2);
            border: 2px solid var(--gold);
            display: flex; align-items: center; justify-content: center;
            font-weight: bold; color: var(--gold);
        }
        .step.active .step-number { background: var(--gold); color: var(--deep-purple); }
        .step.completed .step-number { background: var(--success); border-color: var(--success); color: white; }
        .step-label { font-size: 0.9rem; color: var(--cream); }
        .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:nth-child(1){ font-family: asap_condensedregular; color: #f0ebff; font-size: 1rem; margin-bottom: 10px; }
		.interpretation-card h4:nth-child(2) { font-family: asap_condensedregular; color: #f0ebff; font-size: 1rem; margin-bottom: 10px;margin-top: 1rem; }
		
        .interpretation-card .position-label {
            font-size: 0.75rem; background: rgba(201, 162, 39, 0.2);
            padding: 3px 10px; border-radius: 20px; margin-right: 10px;
        }
		.mots-cles {
    background-color: #978db2;
    padding: 1rem;
    color: white;
    border-radius: 8px;
    margin-top: 20px;
}
        .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);
        }
        .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; }
        #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.twitter { background: #000000; }
        .share-btn.whatsapp { background: #25d366; }
        .share-btn.linkedin { background: #0a66c2; }
        .share-btn.copy { background: linear-gradient(135deg, var(--turquoise) 0%, #00a5b9 100%); }
        .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; }
        .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); }
        .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; }
        .accordeon-item { background: rgba(45, 27, 78, 0.4); border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 12px; margin-bottom: 15px; overflow: hidden; }
        .accordeon-header { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; cursor: pointer; }
        .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: rgba(255,255,255,0.6); font-size: 0.85rem; font-style: italic; margin-top: 4px; }
        .accordeon-apercu { display: flex; gap: 5px; margin: 0 15px; }
        .mini-carte-img { width: 35px; height: 55px; object-fit: cover; border-radius: 4px; }
        .accordeon-icon { color: var(--gold); transition: transform 0.3s ease; }
        .accordeon-item.open .accordeon-icon { transform: rotate(180deg); }
        .accordeon-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .accordeon-item.open .accordeon-content { max-height: 2000px; overflow-y: auto; padding: 0 25px 25px; }
        .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; }
        .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-size: 0.9rem; font-weight: 600; border-radius: 8px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
        .action-btn-small.orange { background: linear-gradient(135deg, #f5a623 0%, #e0941c 100%); border: none; color: #fff; }
        .action-btn-small.secondary { background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); border: none; color: #fff; }
        .interp-item { padding: 20px; background: linear-gradient(145deg, #ffffff 0%, #b4abcd 100%); color: #666; border-radius: 8px; margin-bottom: 15px; border-left: 3px solid var(--gold); }
        .interp-header { color: var(--deep-purple); margin-bottom: 10px; font-size: 1.05rem; }
        .interp-header strong { color: var(--gold); }
        .interp-text { color: #555; 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; }
        .empty-state { text-align: center; padding: 60px 30px; opacity: 0.7; }
        .empty-state .icon { font-size: 4rem; margin-bottom: 20px; }
        .tirages-list { display: grid; gap: 20px; }
        .tirage-croix-saved { display: flex; justify-content: center; margin: 20px 0 30px; }
        .tirage-question-saved, .tirage-notes-saved { background: rgba(0,197,220,0.1); padding: 15px 20px; border-radius: 8px; margin-bottom: 15px; }
        .tirage-question-saved strong, .tirage-notes-saved strong { color: var(--turquoise); }
        .tirage-interpretations { margin-top: 20px; }
        @media (max-width: 768px) {
            :root { --card-width: 75px; --card-height: 125px; }
            h1 { font-size: 1.8rem; }
            .user-status { top: 5px; right: 5px; gap: 15px;position: static;
        margin-bottom: 2rem; }
            .menu-toggle { padding: 8px 12px; font-size: 0.9rem; }
            .login-btn, .logout-btn { font-size: 0.85rem; }
            .user-badge { font-size: 0.85rem; }
            .tirage-actions { flex-direction: column; }
            .action-btn { width: 100%; justify-content: center; }
            .pricing-cards { grid-template-columns: 1fr; }
            .interpretations-grid { grid-template-columns: 1fr; }
            .step-indicator { flex-direction: column; gap: 15px; align-items: center; }
            .spread-card { width: 75px; height: 125px; }
        }
		
		@media (max-width: 576px) {
    .step-indicator {
        display: grid;
        grid-template-columns: repeat(2, auto);
        justify-content: center;
        justify-items: start;
        gap: 15px 40px;
    }
    
    .step {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .step-number {
        flex-shrink: 0;
    }
    
    .step-label {
        white-space: nowrap;
    }
}
        @media (max-width: 600px) {
            .share-buttons { flex-direction: column; }
            .share-btn { width: 100%; justify-content: center; }
        }