/* Style Général - Thème Pirate Moderne & Glassmorphism */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-bg: #030712;
    --card-bg: rgba(13, 21, 39, 0.75);
    --card-border: rgba(226, 177, 60, 0.25);
    --card-border-hover: rgba(226, 177, 60, 0.6);
    --accent: #ffd700;
    --accent-hover: #f59e0b;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --gold-glow: 0 0 15px rgba(245, 158, 11, 0.4);
    --gold-glow-strong: 0 0 25px rgba(245, 158, 11, 0.7);
    --font-header: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background: linear-gradient(rgba(3, 7, 18, 0.88), rgba(3, 7, 18, 0.95)), 
                url('../images/background.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
    }
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.5), 0 0 10px rgba(245, 158, 11, 0.2);
    }
}

@keyframes titleShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes scaleUpRotate {
    from {
        transform: scale(0.8) rotate(-2deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes titleFadeInOut {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 2px 10px rgba(255, 215, 0, 0.4));
        transform: scale(1);
    }
    48%, 52% {
        opacity: 0;
        filter: drop-shadow(0 0 0 rgba(255, 215, 0, 0));
        transform: scale(0.96);
    }
}

/* Animation lente d'ouverture physique du parchemin */
@keyframes unrollScroll {
    0% {
        transform: scaleY(0.01);
        max-height: 20px;
        border-radius: 24px; /* Forme de cylindre enroulé */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
        background: linear-gradient(to bottom, #3b2716, #805731, #3b2716);
    }
    30% {
        max-height: 60px;
        transform: scaleY(0.08);
        border-radius: 18px;
    }
    70% {
        border-radius: 12px;
        background: radial-gradient(circle, rgba(45, 34, 22, 0.98) 0%, rgba(24, 18, 12, 1) 100%);
    }
    100% {
        transform: scaleY(1);
        max-height: 1400px;
        border-radius: 8px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), inset 0 0 60px rgba(184, 144, 71, 0.15);
        background: radial-gradient(circle, rgba(45, 34, 22, 0.98) 0%, rgba(24, 18, 12, 1) 100%);
    }
}

/* Fading en douceur du contenu après déroulement */
@keyframes fadeInContent {
    0%, 65% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header & Logo */
header {
    background: rgba(3, 7, 18, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--card-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logo {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4));
    animation: float 4s ease-in-out infinite;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s;
}

.logo:hover {
    transform: scale(1.15) rotate(360deg);
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.8));
}

header h1 {
    font-family: var(--font-header);
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #fff 0%, var(--accent) 25%, #fff 50%, var(--accent) 75%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    display: inline-block;
    animation: titleShimmer 6s linear infinite, titleFadeInOut 8s ease-in-out infinite;
    text-align: center;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    background: rgba(13, 21, 39, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-bottom: 1px solid rgba(226, 177, 60, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 2rem;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s, transform 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
    box-shadow: var(--gold-glow);
}

nav a:hover, nav a.active {
    color: var(--accent);
}

nav a:hover {
    transform: translateY(-2px) scale(1.03);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.welcome-section {
    text-align: center;
    margin-bottom: 4rem;
}

.welcome-section h2 {
    font-family: var(--font-header);
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.welcome-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Grilles & Cartes */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s, 
                border-color 0.4s;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.grid .card:nth-child(1) {
    animation-delay: 0.1s;
}

.grid .card:nth-child(2) {
    animation-delay: 0.25s;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--card-border-hover);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15), var(--gold-glow);
}

.card-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--card-border);
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img-container img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card h2 {
    font-family: var(--font-header);
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Boutons avec effet de balayage de lumière */
.btn {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--primary-bg);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-header);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
    text-align: center;
    animation: pulseButton 2.5s infinite;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn:hover::before {
    left: 150%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-glow-strong);
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    animation-play-state: paused; /* Pause du pulse lors du survol */
}

.btn:active {
    transform: translateY(1px);
}

/* STYLE ATYPIQUE - Tableau de bord en chêne & Parchemins */
.rules-board {
    background: rgba(18, 12, 8, 0.55);
    border: 4px solid #23190e;
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.95), 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    backdrop-filter: blur(15px);
}

/* CARTE AU TRÉSOR : SENTIER DE NAVIGATION INTERACTIF */
.rules-map-path {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 850px;
    margin: 0 auto 4.5rem auto;
    padding: 0 1rem;
}

.path-line {
    position: absolute;
    top: 25px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--accent), var(--accent) 10px, transparent 10px, transparent 20px);
    z-index: 1;
    opacity: 0.6;
}

.path-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    position: relative;
}

.step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1a130c;
    border: 3px solid #b89047;
    color: #cbd5e1;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.step-label {
    margin-top: 0.6rem;
    font-family: var(--font-header);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    transition: color 0.3s, transform 0.3s;
    white-space: nowrap;
}

.path-step:hover .step-num {
    border-color: var(--accent);
    color: #ffffff;
    transform: scale(1.12) rotate(15deg);
    box-shadow: var(--gold-glow);
}

.path-step.active .step-num {
    background: var(--accent);
    border-color: #ffffff;
    color: var(--primary-bg);
    transform: scale(1.18);
    box-shadow: var(--gold-glow-strong);
}

.path-step.active .step-label {
    color: #ffffff;
    font-weight: bold;
    transform: scale(1.05);
}

/* Stacked Parchments Card Deck */
.parchment-deck {
    position: relative;
    min-height: 580px;
}

.parchment-card {
    display: none;
    opacity: 0;
    background: radial-gradient(circle, rgba(45, 34, 22, 0.98) 0%, rgba(24, 18, 12, 1) 100%);
    border-left: 3px solid #b89047;
    border-right: 3px solid #b89047;
    border-top: none;
    border-bottom: none;
    border-radius: 8px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), inset 0 0 60px rgba(184, 144, 71, 0.15);
    position: relative;
    transform-origin: top center; /* Déroulement du haut vers le bas */
}

/* Les rouleaux en bois (cylindres) en haut et en bas du parchemin */
.parchment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -6px;
    right: -6px;
    height: 18px;
    background: linear-gradient(to bottom, #3b2716, #805731 25%, #3b2716 75%, #180f08);
    border: 1px solid #b89047;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    z-index: 5;
}

.parchment-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    right: -6px;
    height: 18px;
    background: linear-gradient(to bottom, #3b2716, #805731 25%, #3b2716 75%, #180f08);
    border: 1px solid #b89047;
    border-radius: 4px;
    box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.6);
    z-index: 5;
}

/* Couture intérieure en pointillé */
.parchment-inner {
    border: 1px dashed rgba(184, 144, 71, 0.3);
    padding: 1.5rem 2rem;
    height: 100%;
    border-radius: 4px;
    opacity: 0;
}

.parchment-card.active {
    display: block;
    opacity: 1;
    animation: unrollScroll 1.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.parchment-card.active .parchment-inner {
    animation: fadeInContent 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.parchment-card h3 {
    font-family: var(--font-header);
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(184, 144, 71, 0.3);
    padding-bottom: 0.8rem;
}

.parchment-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.parchment-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.parchment-card ul li {
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 1.2rem;
    font-size: 1.08rem;
    color: #e5e7eb;
    transition: transform 0.2s, color 0.2s;
}

.parchment-card ul li:hover {
    transform: translateX(6px);
    color: #ffffff;
}

.parchment-card ul li::before {
    content: '⚓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    text-shadow: var(--gold-glow);
}

.parchment-card blockquote {
    border-left: 4px solid var(--accent);
    background: rgba(226, 177, 60, 0.04);
    padding: 1.5rem;
    font-style: italic;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    color: #d1d5db;
}

.rules-hero {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid var(--card-border);
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* MODAL DE REMERCIEMENT & VIDÉO */
.thankyou-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.88);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.thankyou-content {
    background: radial-gradient(circle, rgba(30, 22, 14, 0.97) 0%, rgba(15, 11, 7, 0.99) 100%);
    border: 3px solid #d9a043;
    border-radius: 24px;
    padding: 3rem;
    max-width: 780px;
    width: 90%;
    box-shadow: 0 0 50px rgba(217, 160, 67, 0.4), inset 0 0 60px rgba(0,0,0,0.9);
    position: relative;
    text-align: center;
    animation: scaleUpRotate 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 3rem;
    color: #d9a043;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    user-select: none;
    line-height: 1;
}

.close-modal:hover {
    color: #ffffff;
    transform: scale(1.15) rotate(90deg);
}

.thankyou-title {
    font-family: var(--font-header);
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff, var(--accent), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShimmer 4s linear infinite;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.thankyou-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Cadre vidéo doré festif style tableau musée */
.video-frame {
    border: 8px solid #1a130c;
    border-radius: 12px;
    box-shadow: 0 0 0 3px #d9a043, 0 15px 35px rgba(0,0,0,0.8);
    overflow: hidden;
    position: relative;
    background: #000;
    transition: transform 0.3s;
}

.video-frame:hover {
    transform: scale(1.015);
}

.success-video {
    width: 100%;
    display: block;
    border-radius: 4px;
}

/* Formulaires */
form {
    background: var(--card-bg);
    padding: 3.5rem;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    max-width: 650px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

form h2 {
    font-family: var(--font-header);
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 2.5rem;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 1.05rem;
    transition: color 0.3s;
}

.form-control-container {
    position: relative;
}

input[type="text"], input[type="time"] {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(5, 10, 20, 0.6);
    border: 1px solid rgba(226, 177, 60, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1.05rem;
    font-family: var(--font-body);
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s, transform 0.2s;
}

input[type="text"]:focus, input[type="time"]:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(5, 10, 20, 0.85);
    box-shadow: var(--gold-glow);
    transform: scale(1.01);
}

/* Checkboxes personnalisées */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: color 0.3s, transform 0.2s;
    user-select: none;
}

.checkbox-label:hover {
    transform: translateX(4px);
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    display: inline-block;
    height: 24px;
    width: 24px;
    background: rgba(5, 10, 20, 0.6);
    border: 1px solid rgba(226, 177, 60, 0.3);
    border-radius: 6px;
    margin-right: 12px;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.checkbox-label:hover input ~ .checkmark {
    border-color: var(--accent);
    box-shadow: var(--gold-glow);
}

.checkbox-label input:checked ~ .checkmark {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: var(--gold-glow);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid var(--primary-bg);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkbox-text {
    color: #ffffff;
    font-weight: 500;
}

/* Time inputs row */
.time-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    transition: opacity 0.3s ease;
}

.time-box {
    display: flex;
    flex-direction: column;
}

.time-box label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

/* Alertes */
.alert {
    padding: 1.25rem 1.75rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    border: 1px solid;
    animation: fadeInUp 0.5s ease-out;
}

.alert-success {
    background-color: rgba(6, 95, 70, 0.25);
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.1);
}

.alert-error {
    background-color: rgba(153, 27, 27, 0.25);
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.4);
    box-shadow: 0 0 15px rgba(248, 113, 113, 0.1);
}

/* Bouton du formulaire */
form button.btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.1rem;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }
    
    nav {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    nav a {
        margin: 0 0.8rem;
        font-size: 0.95rem;
    }
    
    .container {
        margin: 1.5rem auto;
    }
    
    .welcome-section {
        margin-bottom: 2.5rem;
    }
    
    form {
        padding: 2rem;
    }
    
    .rules-container {
        padding: 1.5rem;
    }
    
    .rules-board {
        padding: 1.5rem 1rem;
    }
    
    .parchment-card {
        padding: 1.5rem;
    }
    
    .thankyou-content {
        padding: 1.5rem;
    }
    
    .thankyou-title {
        font-size: 2.2rem;
    }
    
    .rules-map-path {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .path-line {
        display: none;
    }
    
    .path-step {
        flex-direction: row;
        width: 100%;
        max-width: 250px;
        gap: 1.5rem;
    }
    
    .step-label {
        margin-top: 0;
    }
}