

/* --- LANGUAGE SWITCHER & VISIBILITY --- */
.lang-switcher { position: fixed; bottom: 20px; right: 20px; background: #fff; color: #000; border: 1px solid rgba(0,0,0,0.1); border-radius: 99px; padding: 5px; display: flex; z-index: 99999; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.lang-btn { background: transparent; border: none; color: #999; padding: 8px 16px; border-radius: 99px; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: sans-serif; }
.lang-btn.active { background: #007aff; color: white; }
.lang-btn:hover:not(.active) { color: #000; }

[lang="de"] { display: none !important; }
[lang="en"] { display: inline-block !important; }

body.lang-de [lang="en"] { display: none !important; }
body.lang-de [lang="de"] { display: inline-block !important; }

div[lang="de"], p[lang="de"], span[lang="de"] { display: none !important; }
body.lang-de div[lang="de"], body.lang-de p[lang="de"], body.lang-de span[lang="de"] { display: block !important; }
body.lang-de span[lang="de"] { display: inline-block !important; }

:root { --bg: #f2f2f7; --card: #ffffff; --text: #1c1c1e; --accent: #007aff; }
body { background: var(--bg); font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); padding: 2rem; margin:0; }
.bento-container {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
}

.tile { background: var(--card); border-radius: 32px; overflow: hidden; position: relative; transition: transform 0.2s; border: 1px solid rgba(0,0,0,0.02); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02); }
.tile:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

.text-tile { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.visual-tile { padding: 0; }
.visual-tile img { width: 100%; height: 100%; object-fit: cover; }

/* Specific Tile Sizing */
.hero { grid-column: span 2; grid-row: span 2; }
.hero-visual { grid-column: span 2; grid-row: span 2; }
.gallery-tile { grid-column: span 4; overflow-x: hidden; background: #000; }
.privacy-full { grid-column: span 4; }
.support-tile { grid-column: span 2; grid-row: span 2; }

/* Elements */
h1 { font-size: 3.5rem; letter-spacing: -0.05em; margin: 0.5rem 0; line-height: 1; }
h3 { font-size: 1.5rem; margin: 0 0 1rem 0; }
p { color: #6e6e73; line-height: 1.6; margin-bottom: 1.5rem; }
.badge { background: #e5f1ff; color: var(--accent); padding: 0.4rem 1rem; border-radius: 99px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }
.btn-download { background: var(--text); color: white; padding: 1rem 2rem; border-radius: 16px; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 0.5rem; transition: 0.2s; }
.btn-download:hover { background: var(--accent); }

.icon { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; background: #e5f1ff; padding: 1rem; border-radius: 16px; }

/* Gallery */
.gallery-tile { padding: 2rem; display: flex; align-items: center; }
.scroll-track { display: flex; gap: 2rem; animation: slide 20s linear infinite; }
.scroll-track img { height: 400px; border-radius: 16px; }
@keyframes slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Mobile */
@media (max-width: 900px) {
    .bento-container { grid-template-columns: 1fr; }
    .hero, .hero-visual, .gallery-tile, .privacy-full, .support-tile { grid-column: span 1; grid-row: auto; }
}
