:root {
    --primary-color: #00e5ff; /* Cyan blue */
    --primary-glow: #0077ff;
    --bg-dark: #050505;
    --panel-bg: rgba(15, 15, 20, 0.8);
    --border-color: rgba(0, 229, 255, 0.3);
    --text-main: #ffffff;
    --text-muted: #a0aabf;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

/* TOP HEADER */
.top-header {
    margin-bottom: 20px;
    padding-left: 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

/* MAIN NAVIGATION */
.main-nav {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.05);
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    user-select: none;
}

.nav-links a.active {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2), inset 0 0 10px rgba(0, 229, 255, 0.1);
}

.nav-links a:hover {
    border: 1px solid var(--primary-color);
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4), inset 0 0 10px rgba(0, 229, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
    color: #ffffff;
}

.nav-links i {
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.nav-links a.active i, .nav-links a:hover i {
    color: var(--primary-color);
}

.nav-links a:hover i {
    transform: rotate(-10deg) scale(1.1);
}

.search-bar {
    position: relative;
    width: 250px;
}

.search-bar input {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 20px;
    padding: 10px 15px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.search-bar .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

/* HERO SECTION */
.hero {
    text-align: center;
    margin-bottom: 80px;
    background: rgba(15, 15, 20, 0.3); /* Mehr transparent als die Nav-Bar */
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 20px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.05);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.hero p {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.btn {
    font-family: var(--font-heading);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 350px;
    cursor: pointer;
    display: inline-block;
    user-select: none;
    outline: none;
}

.btn-primary {
    background: rgba(0, 229, 255, 0.1);
    color: var(--text-main);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

.btn-outline:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

/* CONTENT SECTIONS (ABOUT & FEATURES) */
.content-section {
    text-align: center;
    margin-bottom: 80px;
    background: rgba(15, 15, 20, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.05);
    backdrop-filter: blur(10px);
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}


.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-content strong {
    color: var(--text-main);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    perspective: 1000px;
}

.feature-card {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 10px;
    padding: 40px 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-10deg) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: -15px 15px 30px rgba(0, 229, 255, 0.15), inset 0 0 15px rgba(0, 229, 255, 0.05);
    background: rgba(15, 15, 20, 0.8);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* DOWNLOAD SECTION */
.download-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.version-info {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.05);
}

.version-info span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.version-info strong {
    color: var(--primary-color);
}

/* STATUS SECTION */
.status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.status-card {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 10px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.status-card:hover {
    background: rgba(15, 15, 20, 0.8);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.15);
    transform: translateY(-5px);
}

.status-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-card h3 i {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.status-card.online .status-badge {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.status-card.update .status-badge {
    background: rgba(0, 229, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

@media (max-width: 1000px) {
    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
}

/* PRODUCTS SECTION */
.products-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.section-banner {
    background: rgba(30, 32, 40, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    margin-bottom: 40px;
}

.section-banner h2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
}

.product-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    width: 18%;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* Pseudo 3D Box for Products */
.box-image {
    width: 100px;
    height: 140px;
    perspective: 800px;
    margin-bottom: 20px;
}

.box-front {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9), rgba(10, 10, 15, 0.9));
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    box-shadow: -5px 15px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 229, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
    transform: rotateY(-15deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover .box-front {
    transform: rotateY(0deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 229, 255, 0.5);
}

.product-card h3 {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-main);
}

.product-card .price {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
}

@media (max-width: 900px) {
    .product-card {
        width: 30%;
    }
    .main-nav {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .product-card {
        width: 45%;
    }
}

/* ROTATING BACKGROUND DONUT */
.bg-donut {
    position: absolute;
    top: 30px; /* Ein bisschen höher */
    left: 20px; /* Weiter nach rechts, damit das ganze Bild sichtbar ist */
    width: 250px;
    height: auto;
    opacity: 0.2;
    animation: rotateDonut 30s linear infinite;
    pointer-events: none;
    filter: drop-shadow(0 0 20px var(--primary-color));
    z-index: 0;
}

@keyframes rotateDonut {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* NEW DOWNLOAD CARDS (Image Based) */
.modern-dl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    perspective: 1000px;
}

.modern-dl-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
}

.modern-dl-card:hover {
    border-color: var(--primary-color);
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.4),
        0 0 35px rgba(0, 229, 255, 0.2),
        inset 0 0 15px rgba(0, 229, 255, 0.05);
}

.modern-dl-card:nth-child(odd):hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(10deg) scale(1.05);
    box-shadow:
        10px 10px 20px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 229, 255, 0.4),
        0 0 40px rgba(0, 229, 255, 0.2),
        inset 0 0 15px rgba(0, 229, 255, 0.05);
}

.modern-dl-card:nth-child(even):hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-10deg) scale(1.05);
    box-shadow:
        -10px 10px 20px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 229, 255, 0.4),
        0 0 40px rgba(0, 229, 255, 0.2),
        inset 0 0 15px rgba(0, 229, 255, 0.05);
}

.mdl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mdl-status {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.mdl-status i {
    font-size: 0.6rem;
}

.mdl-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #1a2230;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.modern-dl-card:hover .mdl-icon-btn {
    border-color: var(--primary-color);
    background: rgba(0, 229, 255, 0.05);
}

.mdl-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.mdl-desc {
    color: #8a95a5;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.mdl-warning {
    color: #8a95a5;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 40px;
}

.mdl-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.mdl-build {
    color: #5a6575;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mdl-download-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: #ffffff;
    font-family: var(--font-body);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    transition: all 0.3s ease;
}

.mdl-download-btn:hover {
    background: rgba(0, 229, 255, 0.05);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .modern-dl-grid {
        grid-template-columns: 1fr;
    }
}

.mdl-popular-badge {
    background: rgba(255, 60, 60, 0.1);
    color: #ff3c3c;
    border: 1px solid rgba(255, 60, 60, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.ping-dot {
    width: 8px;
    height: 8px;
    background-color: #ff3c3c;
    border-radius: 50%;
    position: relative;
}

.ping-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 60, 60, 0.5);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.floating-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 60, 60, 0.3);
    background: rgba(20, 5, 5, 0.9);
}

/* Support Banner CSS */
.support-banner {
    display: block;
    text-decoration: none;
    margin-top: 50px;
    padding: 25px;
    background: rgba(15, 20, 30, 0.6);
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.05);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.support-banner h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.support-banner p {
    color: #8a95a5;
    font-size: 0.95rem;
    line-height: 1.5;
}

.support-banner:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #5865F2;
    background: rgba(88, 101, 242, 0.15);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.25), inset 0 0 15px rgba(88, 101, 242, 0.1);
}

/* ===== PREVIEW SECTION ===== */
.preview-section {
    margin-top: 40px;
    text-align: center;
}

.preview-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.preview-more {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-left: 6px;
    text-shadow: none;
    opacity: 0.8;
}

.preview-img {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15), 0 8px 32px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.preview-img:hover {
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.3), 0 12px 40px rgba(0, 0, 0, 0.6);
    transform: scale(1.01);
}

.preview-caption {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.5px;
}

/* ===== VERSION LINKS (DonutDuper multi-version) ===== */
.mdl-version-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0 4px;
}

.mdl-version-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 6px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.mdl-version-btn:hover {
    background: rgba(0, 229, 255, 0.18);
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
    transform: translateY(-2px);
}

/* ===== COMING SOON CARD ===== */
.coming-soon-card {
    opacity: 0.7;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.015) 10px,
        rgba(255,255,255,0.015) 20px
    );
    pointer-events: none;
    z-index: 0;
}

.coming-soon-status {
    color: #f59e0b !important;
}

.coming-soon-title {
    color: rgba(255,255,255,0.45) !important;
    letter-spacing: 4px;
}

.coming-soon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: not-allowed;
    opacity: 0.5;
    pointer-events: none;
}

.coming-soon-card .fa-hourglass-half {
    animation: pulse-hourglass 2s ease-in-out infinite;
    color: #f59e0b;
}


@keyframes pulse-hourglass {
    0%, 100% { opacity: 1; transform: rotate(0deg); }
    50% { opacity: 0.5; transform: rotate(180deg); }
}

/* ===== HEADER RIGHT GROUP (version + icon) ===== */
.mdl-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mdl-version-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--primary-color);
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 4px;
    padding: 3px 8px;
    white-space: nowrap;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, text-shadow 0.25s ease;
    cursor: default;
}

.mdl-version-tag:hover {
    border-color: var(--primary-color);
    background: rgba(0, 229, 255, 0.15);
    box-shadow:
        0 0 6px rgba(0, 229, 255, 0.8),
        0 0 14px rgba(0, 229, 255, 0.5),
        0 0 28px rgba(0, 229, 255, 0.25),
        inset 0 0 8px rgba(0, 229, 255, 0.1);
    text-shadow:
        0 0 6px rgba(0, 229, 255, 0.9),
        0 0 14px rgba(0, 229, 255, 0.6);
}

.mdl-version-tag--lg {
    font-size: 1.05rem;
    padding: 4px 12px;
}

/* ===== 67 CLIENT CARD EXTRAS ===== */
.mdl-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.mdl-title-row .mdl-title {
    margin-bottom: 0;
}

.mdl-icon-fire {
    border-color: rgba(255, 80, 20, 0.4) !important;
    color: #ff5014 !important;
    font-size: 1.4rem !important;
    animation: fire-pulse 1.8s ease-in-out infinite;
}

@keyframes fire-pulse {
    0%, 100% { box-shadow: 0 0 6px rgba(255, 80, 20, 0.4); }
    50% { box-shadow: 0 0 18px rgba(255, 80, 20, 0.8), 0 0 8px rgba(255, 180, 0, 0.4); }
}

.donut-duper-popular {
    color: #ff3c3c;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(255, 60, 60, 0.6);
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay-Klassen für gestaffelte Animationen */
.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }

/* Kein Delay beim Hovern */
.reveal:hover,
.reveal-delay-1:hover,
.reveal-delay-2:hover,
.reveal-delay-3:hover,
.reveal-delay-4:hover {
    transition-delay: 0s;
}

/* ===== LAUNCHER TEXT ===== */
@keyframes launcher-glow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 229, 255, 0.4), 0 0 20px rgba(0, 229, 255, 0.2); }
    50%       { text-shadow: 0 0 18px rgba(0, 229, 255, 0.9), 0 0 40px rgba(0, 229, 255, 0.4); }
}

.launcher-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
}



