/* Google Font für moderneren Look */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');

/* Grundstil */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    display: flex;
    flex-direction: column;
}

/* Hintergrundverlauf */
.background-gradient {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #2c3e50 0, #000 50%, #000 100%);
    z-index: -2;
}

/* Container zentrieren */
.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 16px;
}

/* Card für Inhalt */
.content-card {
    max-width: 640px;
    width: 100%;
    padding: 40px 28px 36px;
    background: rgba(10, 10, 10, 0.85);
    border-radius: 24px;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    text-align: center;
}

/* Hauptlogo */
.logo img {
    max-width: 260px;
    height: auto;
    margin-bottom: 18px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 26px;
}

/* Info-Zeile über den Shop-Links */
.shop-info {
    font-size: 22px;
    margin-bottom: 15px;
    opacity: 0.85;
    letter-spacing: 1px;
}
.social-links a {
    color: #fff;
    font-size: 30px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(243, 156, 18, 0.18);
    border-color: rgba(243, 156, 18, 0.7);
    color: #f39c12;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.65);
}

/* Coming Soon */
.coming-soon {
    margin-top: 10px;
}

.coming-soon h1 {
    font-size: 34px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 12px;
    font-weight: 700;
}

.coming-soon p {
    margin: 0;
}

.coming-soon p:first-of-type {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.coming-soon-sub {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0 0 0;
}

/* Footer */
footer {
    background-color: #050505;
    padding: 14px 24px 18px;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    opacity: 0.9;
}

.footer-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    position: relative;
    padding-bottom: 1px;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.2s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

