/* public/style.css */

:root {
    --primary: #ff3b3b;
    --bgStart: #1c1c1e;
    --bgEnd: #0d0d0d;
    --radius: 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    background: radial-gradient(circle at center, var(--bgStart) 0%, var(--bgEnd) 100%);
    color: #fff;
    overflow-x: hidden;
}
#header-left {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    user-select: none;
}
.title-main {
    font-family: "Bebas Neue", cursive;
    font-size: 70px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #d86cff, #ff85cc, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .6);
    transform: skewX(-6deg);
}
.title-brand {
    font-family: "Bebas Neue", cursive;
    font-size: 40px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 2px solid rgba(255, 255, 255, .4);
    padding: 4px 14px;
    border-radius: 14px;
    display: inline-block;
    margin-top: 4px;
    text-shadow: 0 0 6px rgba(0, 0, 0, .5);
}
.credit {
    position: fixed;
    bottom: 10px;
    right: 15px;
    font-size: 11px;
    font-family: "Poppins", sans-serif;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10000;
    user-select: none;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 180px 40px 40px 40px;
    gap: 20px;
}
.info-box {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 25px;
    width: 100%;
    max-width: 800px;
    backdrop-filter: blur(5px);
    transition: border 0.3s ease;
}
.info-box.text-center {
    text-align: center;
}
.info-box h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    letter-spacing: 2px;
    color: #d86cff;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.info-box p {
    line-height: 1.6;
}
.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* Zentriert die Links, wenn sie umbrechen */
}
.social-links li a {
    display: block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.2s ease;
}
.social-links li a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
/* NEU: Stil für den Haupt-Button */
.cta-button {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    font-size: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.6);
}