
:root {
    --bg-color: #070a13;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-blue: #007aff;
    --accent-glow: #0ea5e9;

    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(16px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}


.glass-bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(0, 122, 255, 0) 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.glow-1 {
    top: -100px;
    left: -100px;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

.glow-2 {
    bottom: 10%;
    right: -100px;
    animation: floatGlow 16s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(40px, 30px) scale(1.15);
    }
}


.container {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(to bottom, #ffffff 40%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    color: #ffffff;
}


.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 12px 40px 0 rgba(0, 122, 255, 0.15);
}


.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.product-card p {
    color: var(--text-muted);
}

.tutorial-teaser {
    margin-top: 15px;
    font-size: 0.95rem;
}

.tutorial-teaser a {
    color: var(--accent-glow);
    text-decoration: none;
    font-weight: 500;
}

.tutorial-teaser a:hover {
    text-decoration: underline;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.product-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-blue);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.product-link:hover {
    background-color: #1a85ff;
}

.product-link:active {
    transform: scale(0.98);
}

.product-legal a {
    margin-left: 15px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.product-legal a:hover {
    color: var(--accent-blue);
}


.impressum {
    margin-top: 40px;
    text-align: center;
}

.impressum h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.impressum p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.impressum .address {
    color: var(--text-main);
    line-height: 1.8;
}

.impressum a {
    color: var(--accent-blue);
    text-decoration: none;
}

.impressum a:hover {
    text-decoration: underline;
}

.site-privacy {
    margin-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


@media (max-width: 600px) {
    .product-actions {
        flex-direction: column;
        text-align: center;
    }

    .product-legal a {
        margin: 5px 10px;
        display: inline-block;
    }

    h1 {
        font-size: 2.2rem;
    }
}



.product-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.product-title-group h3 {
    margin-bottom: 0 !important;
}

.product-title-group .subtitle {
    font-size: 0.9rem;
    color: var(--accent-glow);
}

.product-description {
    margin-top: 10px;
}



.icon-container {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 50%;
    transform: translateZ(0);
    animation: svgMoonGlow 4s ease-in-out infinite alternate;
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease;
}

.app-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-card:hover .icon-container {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 0 25px rgba(0, 122, 255, 0.6);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 12px 40px 0 rgba(0, 122, 255, 0.15);
}
.product-card {
    margin-top: 25px;            
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

@keyframes svgMoonGlow {
    0% {
        box-shadow: 0 0 8px rgba(0, 122, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 18px rgba(0, 122, 255, 0.45);
    }
}


@media (max-width: 480px) {
    .product-header {
        flex-direction: column;
        text-align: center;
    }

    .icon-container {
        width: 80px;
        height: 80px;
    }
}

.product-link.disabled {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
    pointer-events: none; 
}


.legal-placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
    cursor: help;
    margin-right: 15px;
    font-style: italic;
}


.product-card.coming-soon {
    border-color: rgba(255, 255, 255, 0.03);
}