.rauhnachtkompass-wrapper {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    color: #ffffff;
    line-height: 1.25em;
}

.rauhnachtkompass-wrapper * {
    line-height: 1.25em;
}

/* Haupt-Hintergrund - dunkles Teal-Grün wie im Bild */
.rauhnachtkompass-wrapper .step-container {
    background: #0c2e2e;
}

/* Texte wie im Bild - weiß, sauber, lesbar */
.rauhnachtkompass-wrapper p,
.rauhnachtkompass-wrapper span,
.rauhnachtkompass-wrapper div,
.rauhnachtkompass-wrapper h1,
.rauhnachtkompass-wrapper h2,
.rauhnachtkompass-wrapper h3 {
    color: #ffffff;
}

.rauhnachtkompass-wrapper .text-gray-300 {
    color: #e5e7eb !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.rauhnachtkompass-wrapper .text-gray-400 {
    color: #d1d5db !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.rauhnachtkompass-wrapper * {
    scrollbar-width: thin;
    scrollbar-color: #44a1b4 #1a3a3a;
}

.rauhnachtkompass-wrapper *::-webkit-scrollbar {
    width: 8px;
}

.rauhnachtkompass-wrapper *::-webkit-scrollbar-track {
    background: #1a3a3a;
    border-radius: 4px;
}

.rauhnachtkompass-wrapper *::-webkit-scrollbar-thumb {
    background: #44a1b4;
    border-radius: 4px;
}

.rauhnachtkompass-wrapper *::-webkit-scrollbar-thumb:hover {
    background: #5fb8cc;
}

.rauhnachtkompass-wrapper .serif {
    font-family: 'Cormorant Garamond', serif;
}

.rauhnachtkompass-wrapper .glass-panel {
    background: #0c2e2e;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #ffffff;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

.rauhnachtkompass-wrapper .card-scene {
    perspective: 1000px;
    width: 100%;
    height: 100%;
}

.rauhnachtkompass-wrapper .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.rauhnachtkompass-wrapper .card-scene.card-flipped .card-inner {
    transform: rotateY(180deg);
}

.rauhnachtkompass-wrapper .card-front,
.rauhnachtkompass-wrapper .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 1.5rem;
    top: 0;
    left: 0;
    overflow-y: auto;
    background: #0c2e2e;
    border: 1px solid #44a1b4;
}

.rauhnachtkompass-wrapper .card-front {
    z-index: 2;
    transform: rotateY(0deg);
}

.rauhnachtkompass-wrapper .card-back {
    transform: rotateY(180deg);
    z-index: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.rauhnachtkompass-wrapper .card-scene.card-flipped .card-front {
    z-index: 1;
    pointer-events: none;
}

.rauhnachtkompass-wrapper .card-scene.card-flipped .card-back {
    z-index: 10;
    pointer-events: auto;
}

.rauhnachtkompass-wrapper .breath-circle {
    animation: breathe 4s infinite ease-in-out;
    box-shadow: 0 0 20px #c5a059;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
}

.rauhnachtkompass-wrapper .step-container {
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    box-sizing: border-box;
}

.rauhnachtkompass-wrapper .step-container.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    z-index: 10;
}

.rauhnachtkompass-wrapper .glow-btn:hover {
    opacity: 0.9;
}

/* Buttons wie im Bild - sauber, minimal */
.rauhnachtkompass-wrapper button {
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.rauhnachtkompass-wrapper button span {
    font-weight: 400;
}

/* Verbesserte Lesbarkeit für Textareas */
.rauhnachtkompass-wrapper textarea {
    font-weight: 500;
    color: #ffffff !important;
}

.rauhnachtkompass-wrapper textarea::placeholder {
    color: #a78bfa !important;
    opacity: 0.8;
}

/* Verbesserte Lesbarkeit für Links */
.rauhnachtkompass-wrapper a,
.rauhnachtkompass-wrapper button[onclick*="location.reload"] {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rauhnachtkompass-wrapper .hidden-step {
    display: none !important;
}

.rauhnachtkompass-wrapper .loading-dots:after {
    content: ' .';
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: ' .';
    }
    40% {
        content: ' ..';
    }
    60% {
        content: ' ...';
    }
    80%, 100% {
        content: '';
    }
}

