/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; scrollbar-width: none; -ms-overflow-style: none; }
*::-webkit-scrollbar { display: none; }

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 200 1000;
    font-display: swap;
    src: url('/assets/fonts/nunito.woff2') format('woff2');
}

body {
    background-color: #000;
    background-image: linear-gradient(to bottom, #1a1a00, #0d0700);
    min-height: 100vh;
    color: #e0e0e0;
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    user-select: none;
}

a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

#bg-canvas { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: -1; 
    opacity: 0; 
    filter: brightness(0.3); /* Macht das Canvas um 70% dunkler */
    animation: fadeInCanvas 1.5s ease-in-out 0.15s forwards; 
}
@keyframes fadeInCanvas { 0% { opacity: 0; } 100% { opacity: 1; } }

/* Utils & Animations */
.text-gradient-accent {
    background: linear-gradient(90deg, #F59E0B, #FFA500, #EAB308, #F59E0B);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 10s linear infinite;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

@keyframes contactReveal {
    0% { opacity: 0; transform: translateY(30px) scale(0.9) rotateX(-15deg); filter: blur(8px); }
    100% { opacity: 1; transform: translateY(0) scale(1) rotateX(0); filter: blur(0); }
}

/* Layout */
.container { width: 100%; max-width: 56rem; margin: 0 auto; padding: 0 1rem; }
.main-content { padding-top: 7rem; padding-bottom: 3rem; flex: 1 0 auto; }
@media (min-width: 640px) { .main-content { padding-top: 9rem; } }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 1rem; background-color: rgba(0, 0, 0, .5); backdrop-filter: blur(4px); border-bottom: 1px solid #262626; }
.header-container { display: flex; align-items: center; justify-content: space-between; position: relative; }
.logo-img { height: 2.5rem; width: auto; }

.main-nav { display: none; }
.nav-link { color: #d1d5db; transition: color .2s ease; }
.nav-link:hover { color: #F59E0B; }

.header-actions { display: flex; gap: .5rem; }
.lang-toggle { background: transparent; border: 1px solid #444; color: #999; padding: .25rem .75rem; border-radius: 33px; font-size: .875rem; font-weight: 500; transition: all .2s ease; }
.lang-toggle.active { background: linear-gradient(90deg, #F59E0B, #EAB308); border-color: #F59E0B; color: #0a0a0a; font-weight: 700; }

@media (min-width: 768px) {
    .main-nav { display: flex; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); gap: 1.5rem; }
    .lang-toggle:hover:not(.active) { border-color: #777; color: #e0e0e0; }
}

/* Page Section & Glass Panel für Text */
.page-section { min-height: 60vh; display: flex; flex-direction: column; align-items: center; padding: 1.5rem 0; }
.glass-panel {
    background-color: rgba(25, 25, 25, 0.5);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 48rem;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}
.page-title { font-size: 2.25rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.page-desc { font-size: 1.125rem; color: #a3a3a3; max-width: 42rem; margin: 0 auto; }
@media (min-width: 640px) { .page-title { font-size: 3rem; } .page-desc { font-size: 1.25rem; } }

/* NEU: Warning Box Design */
.warning-box {
    margin-top: 2rem;
    background-color: rgba(245, 158, 11, 0.1);
    border-left: 4px solid #F59E0B;
    border-radius: 4px 12px 12px 4px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}
.warning-box i {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-top: 0.15rem;
}
.warning-box-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.warning-box-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
}
.warning-box-text {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Info Cards (Versionen) */
.info-cards-wrapper { width: 100%; max-width: 48rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin: 0 auto; }
@media (min-width: 640px) { .info-cards-wrapper { grid-template-columns: repeat(2, 1fr); } }

.info-card { 
    display: flex; align-items: center; justify-content: space-between; 
    padding: 1.75rem; 
    background-color: rgba(25, 25, 25, 0.4); 
    backdrop-filter: blur(16px); 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    border-radius: 24px; 
    transition: all 0.3s cubic-bezier(0.2, 0.65, 0.3, 0.9); 
}

.info-card[data-type="beta"] { background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(59, 130, 246, 0.08)); }
.info-card[data-type="beta"]:hover { border-color: rgba(59, 130, 246, 0.4); background: linear-gradient(145deg, rgba(35, 35, 35, 0.7), rgba(59, 130, 246, 0.15)); box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3), 0 0 15px -5px rgba(59, 130, 246, 0.2); }

.info-card[data-type="release"] { background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(16, 185, 129, 0.08)); }
.info-card[data-type="release"]:hover { border-color: rgba(16, 185, 129, 0.4); background: linear-gradient(145deg, rgba(35, 35, 35, 0.7), rgba(16, 185, 129, 0.15)); box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3), 0 0 15px -5px rgba(16, 185, 129, 0.2); }

.info-card-left { display: flex; align-items: flex-start; gap: 1.25rem; }
.info-icon-wrapper { width: 3.5rem; height: 3.5rem; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: all 0.3s ease; flex-shrink: 0; }
.info-card:hover .info-icon-wrapper { transform: scale(1.05) rotate(5deg); }

.info-title { font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0; }
.info-desc { color: #9ca3af; font-size: 1rem; margin-top: 0.25rem; line-height: 1.5; }
.info-arrow { color: #6b7280; font-size: 1.25rem; transition: all 0.3s ease; }
.info-card:hover .info-arrow { color: #fff; transform: translateX(4px); }

.loader-text { text-align: center; color: #9ca3af; width: 100%; grid-column: 1 / -1; margin-top: 2rem; }

/* Footer */
.site-footer-pill { margin: 0 auto 2rem auto; padding: 0.6rem 1.25rem; background-color: rgba(25, 25, 25, 0.4); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 9999px; display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: #9ca3af; z-index: 10; transition: all 0.3s ease; }
.site-footer-pill:hover { transform: translateY(-2px); border-color: rgba(245, 158, 11, 0.3); background-color: rgba(30, 30, 30, 0.6); }
.footer-link { color: #d1d5db; transition: color 0.2s ease; font-weight: 500; }
.footer-link:hover { color: #F59E0B; }