/* ============================================================
   1. DEZENTRALE SCHRIFT-VERSIEGELUNG (Lokal statt Google)
   Hinweis Dirk: Stelle sicher, dass die .woff2 Dateien 
   flach auf Ebene 1 deines IPFS-Ordners liegen!
   ============================================================ */

/* INTER - Für den fließenden Text */
@font-face {
    font-family: 'Inter';
    src: url('./inter-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('./inter-bold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

/* PLAYFAIR DISPLAY - Dein neues Variable-Font Siegel */
@font-face {
    font-family: 'Playfair Display';
    src: url('./PlayfairRomanVF.woff2') format('woff2-variations');
    font-weight: 100 900; /* Deckt alle Stärken ab */
    font-style: normal;
}

/* ============================================================
   2. DIRKS INDIGO-TIPP FÜR PERFEKTES HANDY-SCROLLING
   ============================================================ */
html, body, #root, #app { 
    overflow-y: auto !important; 
    overflow-x: hidden !important; 
    height: auto !important; 
    min-height: 100vh !important; 
    touch-action: auto !important; 
}

/* ============================================================
   3. HAUPT-DESIGN (Rein relative Pfade für IPFS)
   ============================================================ */
body {
    color: #fff;
    background-color: #050a15;
    /* KORREKTUR: Bild direkt auf Ebene 1 ohne /assets/ Pfad */
    background-image: url(./sternenhimmel.png); 
    background-position: 50%;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gateway-container {
    text-align: center;
    width: 90%;
    max-width: 400px;
    padding: 20px 0;
}

.logo {
    filter: drop-shadow(0 0 10px #fff3);
    width: 180px;
    height: auto;
    margin-bottom: 15px;
}

h1 {
    color: #fff;
    margin: 5px 0;
    font-family: 'Playfair Display', serif;
    font-size: 42px; /* Edle Größe für den DigaBodhiTree */
    font-weight: 700;
}

.subtitle {
    color: #d1d5db;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* BUTTONS & KARTEN */
.button-group {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    display: flex;
}

.btn {
    cursor: pointer;
    text-align: center;
    color: #fff;
    border: 2px solid #d4af37;
    border-radius: 12px;
    width: 100%;
    padding: 16px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: transform .1s;
    box-shadow: 0 4px 15px #0000004d;
    text-decoration: none;
}

.btn:active {
    transform: scale(.98);
}

.btn.gold {
    color: #000;
    background: linear-gradient(90deg, #a67c00, #bf953f, #fcf6ba, #b38728, #fdbf59);
    border: 1px solid #fff;
}

/* PC-BANNER & KURS-ANZEIGE */
.desktop-warning { 
    display: none; 
    background: rgba(212, 175, 55, 0.1); 
    border: 2px solid #d4af37; 
}
@media (min-width: 800px) { 
    .desktop-warning { display: block; } 
}

.kurs-anzeige { 
    background: rgba(0, 0, 0, 0.6); 
    border: 1px solid #00ffff; 
}
