/* ==========================================
   1. GLOBALE EINSTELLUNGEN & RESETS
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #120826;
    font-family: Georgia, serif;
    color: white;
    height: 100vh;            /* Feste Höhe des Sichtfensters */
    overflow-y: hidden;       /* Deaktiviert vertikales Scrollen komplett */
    overflow-x: hidden;       /* Verhindert horizontales Ausbrechen */
}

#orakel-container {
    position: relative;
    height: 100vh;            /* Exakt so hoch wie der Bildschirm */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;       /* Reduziertes Padding für mehr Platz */
}

/* ==========================================
   2. HINTERGRUND & ATMOSPHÄRE (STERNENHIMMEL)
   ========================================== */
.sternenhimmel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: radial-gradient(circle at center, #2d1457 0%, #1a0f33 45%, #120826 100%);
    z-index: 1;
}

.sternenhimmel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 100px 80px, #ffd87a, transparent),
        radial-gradient(1px 1px at 200px 140px, #fff, transparent),
        radial-gradient(2px 2px at 320px 60px, #ffd87a, transparent),
        radial-gradient(1px 1px at 500px 200px, #fff, transparent),
        radial-gradient(2px 2px at 700px 120px, #fff, transparent),
        radial-gradient(1px 1px at 850px 280px, #ffd87a, transparent);
    background-repeat: repeat;
    background-size: 900px 500px;
    animation: funkeln 8s ease-in-out infinite;
    opacity: .9;
}

@keyframes funkeln {
    0%   { opacity: .4; }
    50%  { opacity: 1; }
    100% { opacity: .4; }
}

.sternschnuppe {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px white, 0 0 20px #ffd87a;
    animation: flug 6s linear infinite;
    opacity: 0;
}

.sternschnuppe::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 216, 122, 0), rgba(255, 216, 122, 0.8));
    transform: translateX(-150px);
}

.sternschnuppe:nth-child(1) { top: 15%; left: 80%; animation-delay: 0s; }
.sternschnuppe:nth-child(2) { top: 35%; left: 90%; animation-delay: 3s; }
.sternschnuppe:nth-child(3) { top: 55%; left: 85%; animation-delay: 7s; }

@keyframes flug {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translate(-600px, 300px); opacity: 0; }
}

/* ==========================================
   3. ORAKEL-LAYOUT & TYPOGRAFIE
   ========================================== */
.orakel-inhalt {
.orakel-layout{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
}
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

h1 {
    font-size: 1.8rem;        /* Kompakter für Fullscreen */
    color: #ffd87a;
    margin-bottom: 5px;
}

.einleitung {
    color: #e5ddff;
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* ==========================================
   4. LEBENSBAUM-STRUKTUR (REIHEN NEBENEINANDER)
   ========================================== */
#lebensbaum {
#lebensbaum{
    flex-shrink:0;
}
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;                 /* Abstand der Reihen verringert */
    margin-bottom: 10px;
}

.reihe {
    display: flex;
    justify-content: center;
    gap: 8px;                 /* Symbole nebeneinander halten */
}

/* ==========================================
   5. INTERAKTIVE ELEMENTE (STERN & SIEGEL)
   ========================================== */
#kristallstern {
    font-size: 50px;          /* Platzsparende Größe */
    cursor: pointer;
    animation: pulsieren 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px gold) drop-shadow(0 0 20px gold);
    margin: 5px 0;
}

@keyframes pulsieren {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.stern-aktiv {
    animation: sternAktiv 1.2s ease-in-out;
}

@keyframes sternAktiv {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.25); }
    50%  { transform: scale(1.15); }
    75%  { transform: scale(1.25); }
    100% { transform: scale(1); }
}

/* Pfad-Klassen für den Lebensbaum */
.pfad {
    width: 55px;              /* Kompakter für Fullscreen-Ansicht */
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: .4s;
    animation: atmen 4s ease-in-out infinite;
}

@keyframes atmen {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pfad:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 216, 122, .6);
}

.pfad.aktiv {
    background: rgba(255, 216, 122, 0.25);
    border: 1px solid rgba(255, 216, 122, .5);
}

.stern-mitte {
    width: 90px;              /* Von 120px verkleinert */
    height: 90px;
    font-size: 45px;
    background: rgba(255, 216, 122, .15);
    box-shadow: 0 0 25px rgba(255, 216, 122, .5);
}

.siegel {
    width: 55px;              /* Kompakte Siegel-Größe */
    height: 55px;
    object-fit: contain;
    cursor: pointer;
    transition: all .4s ease;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, .4));
}

.siegel:hover {
    transform: scale(1.15) translateY(-3px);
    filter: drop-shadow(0 0 12px gold) drop-shadow(0 0 24px gold);
}

.siegel-aktiv {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px gold) drop-shadow(0 0 30px gold);
}

/* Grid-Auswahl (falls parallel genutzt) */
#lebensbaum-auswahl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 500px;
    margin: 0 auto 10px auto;
}

/* ==========================================
   6. SPEZIFISCHE PFAD-FARBEN (SHADOWS)
   ========================================== */
.pfad1 { box-shadow: 0 0 15px rgba(184, 115, 51, .6); }
.pfad2 { box-shadow: 0 0 15px rgba(255, 182, 193, .6); }
.pfad3 { box-shadow: 0 0 15px rgba(255, 180, 0, .6); }
.pfad4 { box-shadow: 0 0 15px rgba(80, 200, 120, .6); }
.pfad5 { box-shadow: 0 0 15px rgba(255, 191, 0, .6); }
.pfad6 { box-shadow: 0 0 15px rgba(255, 80, 80, .6); }
.pfad7 { box-shadow: 0 0 15px rgba(64, 224, 208, .6); }
.pfad8 { box-shadow: 0 0 15px rgba(120, 120, 255, .6); }
.pfad9 { box-shadow: 0 0 20px rgba(255, 240, 180, .8); }

/* ==========================================
   7. INFO-BOX & ERGEBNIS-BOX (BOTSCHAFTEN)
   ========================================== */
#symbol-info {
    margin: 5px auto;
    max-width: 600px;
    min-height: auto;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    color: #f7e7b5;
    padding: 6px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: all .5s ease;
}

#botschaft-box {

    width:420px;
    min-height:320px;

    padding:20px;

    border-radius:20px;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(8px);

    text-align:left;

    display:block;

    box-shadow:0 0 25px rgba(255,215,122,0.15);

}
}

#kategorie {
    font-size: 18px;
    color: #ffd87a;
    margin-bottom: 5px;
}

#botschaft {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
}

#erkenntnis,
#energie,
#impuls {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.3;
}

#neu-ziehen {
    display: none;
    margin-top: 8px;
    padding: 6px 20px;
    border: none;
    border-radius: 40px;
    background: #ffd87a;
    color: #120826;
    font-weight: bold;
    cursor: pointer;
}

.seelenkarte {
    background: rgba(255, 216, 122, 0.15) !important;
    border: 2px solid rgba(255, 216, 122, 0.7) !important;
    animation: goldglanz 3s ease-in-out infinite;
}

@keyframes goldglanz {
    0%   { box-shadow: 0 0 20px rgba(255, 216, 122, 0.3); }
    50%  { box-shadow: 0 0 40px rgba(255, 216, 122, 0.6); }
    100% { box-shadow: 0 0 20px rgba(255, 216, 122, 0.3); }
}

/* ==========================================
   8. VISUELLE EFFEKTE (BLITZE, EFFEKTE, TOOLTIP)
   ========================================== */
#lichtblitz {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffd87a;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
}

#lichtblitz.aktiv {
    animation: lichtwelle 1.2s ease-out;
}

@keyframes lichtwelle {
    0%   { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(35); opacity: 0; }
}

.goldpartikel {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #ffd87a;
    border-radius: 50%;
    pointer-events: none;
    animation: goldflug 2.5s ease-out forwards;
}

@keyframes goldflug {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-150px); }
}

#tooltip {
    position: fixed;
    display: none;
    max-width: 250px;
    padding: 10px 14px;
    background: rgba(20, 10, 40, 0.95);
    border: 1px solid rgba(255, 215, 0, .4);
    border-radius: 12px;
    color: #f7e7b5;
    font-size: 14px;
    line-height: 1.4;
    pointer-events: none;
    z-index: 9999;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 15px rgba(255, 215, 0, .25);
}

.wasserzeichen {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: .4;
    font-size: 11px;
}

