:root {
    --bg-main: #070a13;
    --bg-soft: #0e1424;
    --bg-card: rgba(255, 255, 255, 0.055);
    --bg-card-hover: rgba(255, 255, 255, 0.085);

    --text-main: #ffffff;
    --text-soft: #d9e2f2;
    --text-muted: #97a3b8;

    --accent: #8b5cf6;
    --accent-2: #ec4899;
    --accent-3: #22c55e;

    --border: rgba(255, 255, 255, 0.11);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);

    --radius-lg: 28px;
    --radius-md: 20px;
    --max-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.16), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(236, 72, 153, 0.12), transparent 25%),
        var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 10, 19, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(139, 92, 246, 0.35);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 18px;
}

.brand-text small {
    color: var(--text-muted);
    font-size: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--text-main);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 100px 24px 80px;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.55;
    pointer-events: none;
}

.hero-glow-one {
    width: 360px;
    height: 360px;
    top: 90px;
    left: -120px;
    background: rgba(139, 92, 246, 0.25);
}

.hero-glow-two {
    width: 420px;
    height: 420px;
    right: -160px;
    bottom: 20px;
    background: rgba(236, 72, 153, 0.18);
}

.hero-container {
    position: relative;
    max-width: var(--max-width);
    min-height: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) 380px;
    gap: 44px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-content h1 {
    max-width: 780px;
    font-size: clamp(46px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 26px;
}

.hero-content h1 span {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff, #d8b4fe, #f9a8d4);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-text {
    max-width: 680px;
    color: var(--text-soft);
    font-size: 19px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 38px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid transparent;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 18px 42px rgba(139, 92, 246, 0.28);
}

.btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.11);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 720px;
    gap: 14px;
}

.hero-stats div {
    padding: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.hero-stats strong {
    display: block;
    font-size: 20px;
}

.hero-stats span {
    color: var(--text-muted);
    font-size: 14px;
}

.hero-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.profile-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
    border-radius: 42px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), transparent 28%),
        linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 24px 60px rgba(139, 92, 246, 0.28);
}

.profile-placeholder span {
    font-size: 74px;
    font-weight: 900;
}

.hero-card h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.hero-card p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.status-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 16px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.22);
    border-radius: 999px;
    color: #bbf7d0;
    font-weight: 800;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent-3);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.content-section {
    padding: 92px 24px;
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2,
.split-container h2,
.community-box h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 14px;
}

.section-heading p,
.community-box p {
    color: var(--text-muted);
    font-size: 18px;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.link-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.link-card::before {
    content: "";
    position: absolute;
    inset: -60px -60px auto auto;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.22s ease;
}

.link-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

.link-card:hover::before {
    transform: scale(1.25);
}

.link-icon {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 900;
}

.link-card strong {
    font-size: 24px;
}

.link-card small {
    color: var(--text-muted);
}

.twitch {
    background: linear-gradient(145deg, rgba(145, 70, 255, 0.28), var(--bg-card));
}

.discord {
    background: linear-gradient(145deg, rgba(88, 101, 242, 0.28), var(--bg-card));
}

.instagram {
    background: linear-gradient(145deg, rgba(236, 72, 153, 0.28), var(--bg-card));
}

.tiktok {
    background: linear-gradient(145deg, rgba(20, 184, 166, 0.22), var(--bg-card));
}

.alt-section {
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.split-container {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 36px;
    align-items: start;
}

.text-card,
.feature-card,
.contact-card,
.community-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.text-card {
    padding: 34px;
}

.text-card p {
    color: var(--text-soft);
    font-size: 18px;
}

.text-card p + p {
    margin-top: 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    padding: 28px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
}

.community-section {
    padding-top: 72px;
    padding-bottom: 72px;
}

.community-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 38px;
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.22), transparent 35%),
        var(--bg-card);
}

.contact-container {
    max-width: 900px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px;
}

.contact-card strong {
    font-size: 22px;
}

.contact-card span {
    color: var(--text-muted);
}

.site-footer {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

.site-footer a {
    color: var(--text-soft);
    text-decoration: none;
    font-weight: 800;
}

@media (max-width: 980px) {
    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-card {
        max-width: 420px;
    }

    .link-grid,
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .nav-container {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero-section {
        padding-top: 70px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .community-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .link-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .content-section {
        padding: 70px 20px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.main-nav a.active {
    color: var(--text-main);
}

.main-nav a.active::after {
    width: 100%;
}

.main-nav a {
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    transition: width 0.2s ease;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 900px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 22px 24px;
    font-weight: 900;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--accent-2);
    font-size: 24px;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    color: var(--text-muted);
    padding: 0 24px 22px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-soft);
    text-decoration: none;
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--text-main);
}

.profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
    border-radius: 42px;
    object-fit: cover;
    display: block;
    box-shadow: 0 24px 60px rgba(139, 92, 246, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.creator-card {
    position: relative;
    overflow: hidden;
}

.creator-card::before {
    content: "";
    position: absolute;
    inset: -120px -120px auto auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.18);
    filter: blur(4px);
}

.creator-image-wrap {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 0 auto 24px;
    border-radius: 52px;
    padding: 5px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2), rgba(255, 255, 255, 0.28));
    box-shadow:
        0 26px 70px rgba(139, 92, 246, 0.28),
        0 0 0 10px rgba(255, 255, 255, 0.035);
}

.creator-image-wrap .profile-image,
.creator-image-wrap .profile-placeholder {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 47px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.creator-info {
    position: relative;
    text-align: center;
}

.creator-label {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.13);
    border: 1px solid rgba(139, 92, 246, 0.24);
    color: #ddd6fe !important;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.creator-badges {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 22px 0;
}

.creator-badges span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 800;
}

.brand-image {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 34px rgba(139, 92, 246, 0.28);
}

.contact-discord-btn {
    width: fit-content;
    margin-top: 14px;
}

.social-hub-section {
    background:
        radial-gradient(circle at top right, rgba(139, 92, 246, 0.16), transparent 32%),
        radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.11), transparent 32%),
        rgba(255, 255, 255, 0.018);
    border-top: 1px solid var(--border);
}

.social-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.social-hub-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04));
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-main);
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.social-hub-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.055));
}

.social-hub-tag {
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.14);
    border: 1px solid rgba(139, 92, 246, 0.24);
    color: #ddd6fe;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.social-hub-card h3 {
    font-size: 28px;
    margin-top: 38px;
    margin-bottom: 10px;
}

.social-hub-card p {
    color: var(--text-muted);
}

@media (max-width: 980px) {
    .social-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .social-hub-grid {
        grid-template-columns: 1fr;
    }
}

.brand-hosted {
    margin-top: 2px;
    color: var(--accent-2) !important;
    font-size: 11px !important;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-version {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.brand-version:hover {
    color: var(--text-main);
}

.version-page-container h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    margin-bottom: 16px;
}

.version-current {
    color: var(--text-soft);
    font-size: 18px;
    margin-bottom: 28px;
}

.version-list {
    display: grid;
    gap: 14px;
    max-width: 760px;
    margin-top: 28px;
}

.version-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.version-entry div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.version-entry strong {
    font-size: 20px;
}

.version-entry span,
.version-entry time {
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 560px) {
    .version-entry {
        align-items: flex-start;
        flex-direction: column;
    }
}

small.brand-version {
    display: block;
    cursor: default;
    pointer-events: none;
}

.update-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(7, 10, 19, 0.72);
    backdrop-filter: blur(14px);
}

.update-popup.visible {
    display: flex;
}

.update-popup-card {
    width: min(520px, 100%);
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 20px;
    align-items: center;
    padding: 24px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.update-popup-image {
    width: 92px;
    height: 92px;
    border-radius: 26px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 42px rgba(139, 92, 246, 0.28);
}

.update-popup-kicker {
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.update-popup-content h2 {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.update-popup-content p {
    color: var(--text-muted);
}

.update-reload-btn {
    margin-top: 16px;
    cursor: pointer;
}

@media (max-width: 560px) {
    .update-popup-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .update-popup-image {
        margin: 0 auto;
    }
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-main);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 820px) {
    .nav-container {
        position: relative;
        flex-direction: row;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        left: 24px;
        right: 24px;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: 22px;
        background: rgba(7, 10, 19, 0.96);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
        overflow: hidden;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 14px;
        border-radius: 14px;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: rgba(255, 255, 255, 0.07);
    }

    .main-nav a::after {
        display: none;
    }
}

.creator-badges a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.creator-badges a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-main);
}

.contact-highlight-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
    align-items: center;
    padding: 34px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top left, rgba(88, 101, 242, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-highlight-icon {
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.95), rgba(139, 92, 246, 0.95));
    color: #fff;
    font-size: 44px;
    font-weight: 900;
    box-shadow: 0 20px 48px rgba(88, 101, 242, 0.28);
}

.contact-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(88, 101, 242, 0.14);
    border: 1px solid rgba(88, 101, 242, 0.26);
    color: #c7d2fe;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-highlight-content h3 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
    margin-bottom: 12px;
}

.contact-highlight-content p {
    color: var(--text-muted);
    max-width: 720px;
    font-size: 17px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

@media (max-width: 640px) {
    .contact-highlight-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-highlight-icon,
    .contact-label {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-actions {
        flex-direction: column;
    }
}

.contact-highlight-icon svg {
    width: 42px;
    height: 42px;
    display: block;
    fill: currentColor;
}

.contact-highlight-icon svg {
    width: 42px;
    height: 42px;
    display: block;
    fill: currentColor;
}

.discord-btn,
.discord-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.discord-btn-icon {
    width: 18px;
    height: 18px;
    display: block;
    flex: 0 0 auto;
    fill: currentColor;
}

.discord-btn .discord-btn-icon {
    width: 20px;
    height: 20px;
}

.creator-badges .discord-inline-link {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.28), rgba(139, 92, 246, 0.18));
    border-color: rgba(88, 101, 242, 0.34);
    color: #e0e7ff;
}

.creator-badges .discord-inline-link:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.38), rgba(139, 92, 246, 0.26));
    color: #ffffff;
}

.discord-btn.btn-primary {
    background: linear-gradient(135deg, #5865f2, var(--accent));
    box-shadow: 0 18px 42px rgba(88, 101, 242, 0.28);
}

.discord-btn.btn-primary:hover {
    background: linear-gradient(135deg, #4752c4, #7c3aed);
}

.contact-discord-btn.discord-btn {
    border-color: rgba(88, 101, 242, 0.28);
}

.creator-badges .discord-inline-link .discord-btn-icon {
    width: 17px;
    height: 17px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.creator-badges .discord-inline-link {
    gap: 7px;
}

.creator-badges .discord-inline-link svg,
.creator-badges .discord-inline-link svg path {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Saubere Creator-Badges oben rechts */
.creator-badges {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 22px 0;
}

.creator-badges .creator-badge-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.075) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-soft) !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: none !important;
    transform: none;
}

.creator-badges .creator-badge-link:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: var(--text-main) !important;
    transform: translateY(-2px);
}

.creator-discord-icon {
    width: 16px !important;
    height: 16px !important;
    display: block;
    flex: 0 0 auto;
    fill: currentColor;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* FINAL FIX: Creator-Badges ohne inneren Doppel-Button */
.creator-badges .creator-badge-link span {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}

.creator-badges .creator-badge-link,
.creator-badges .creator-badge-link:visited {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    min-height: 34px !important;
    padding: 8px 13px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.075) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-soft) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.creator-badges .creator-badge-link:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: var(--text-main) !important;
    transform: translateY(-2px);
}

.creator-badges .creator-badge-link svg {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    fill: currentColor !important;
}

/* ULTIMATE FIX: Creator-Badge ohne inneren Text-Pill */
.creator-badges .creator-badge-link {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    min-height: 34px !important;
    padding: 8px 13px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.075) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-soft) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.creator-badges .creator-badge-link:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: var(--text-main) !important;
    transform: translateY(-2px);
}

.creator-badges .creator-badge-link::before,
.creator-badges .creator-badge-link::after {
    display: none !important;
    content: none !important;
}

.creator-badges .creator-badge-link * {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.creator-badges .creator-discord-icon {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    display: block !important;
    fill: currentColor !important;
}

/* Discord-Button final style */
.discord-btn.btn-primary,
.contact-discord-btn.discord-btn,
a.discord-btn.btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-height: 54px !important;
    padding: 0 22px !important;
    border-radius: 999px !important;
    background: #5865F2 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10),
        0 10px 28px rgba(88, 101, 242, 0.28) !important;
}

.discord-btn.btn-primary:hover,
.contact-discord-btn.discord-btn:hover,
a.discord-btn.btn-primary:hover {
    background: #4f5bda !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.discord-btn.btn-primary .discord-btn-icon,
.contact-discord-btn.discord-btn .discord-btn-icon,
a.discord-btn.btn-primary .discord-btn-icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    fill: currentColor !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.discord-btn.btn-primary span,
.contact-discord-btn.discord-btn span,
a.discord-btn.btn-primary span {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: inherit !important;
    font: inherit !important;
}

/* Twitch-Badge oben rechts passend zum Discord-Badge */
.creator-badges .creator-badge-twitch {
    background: rgba(145, 70, 255, 0.18) !important;
    border-color: rgba(145, 70, 255, 0.38) !important;
    color: #f3e8ff !important;
}

.creator-badges .creator-badge-twitch:hover {
    background: rgba(145, 70, 255, 0.28) !important;
    color: #ffffff !important;
}

.creator-badges .creator-twitch-icon {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    display: block !important;
    fill: currentColor !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* FINAL: Creator-Badges einheitlich */
.creator-badges .creator-badge-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    min-height: 36px !important;
    padding: 9px 14px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.075) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-soft) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.creator-badges .creator-badge-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

.creator-badges .creator-badge-twitch {
    background: rgba(145, 70, 255, 0.18) !important;
    border-color: rgba(145, 70, 255, 0.38) !important;
    color: #f3e8ff !important;
}

.creator-badges .creator-badge-discord {
    background: rgba(88, 101, 242, 0.18) !important;
    border-color: rgba(88, 101, 242, 0.38) !important;
    color: #e0e7ff !important;
}

.creator-badges .creator-twitch-icon,
.creator-badges .creator-discord-icon {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    display: block !important;
    fill: currentColor !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* FINAL COLORS: Creator-Badges farbig */
.creator-card .creator-badges a.creator-badge-link.creator-badge-twitch {
    background: rgba(145, 70, 255, 0.22) !important;
    border-color: rgba(145, 70, 255, 0.48) !important;
    color: #f3e8ff !important;
}

.creator-card .creator-badges a.creator-badge-link.creator-badge-twitch:hover {
    background: rgba(145, 70, 255, 0.34) !important;
    border-color: rgba(145, 70, 255, 0.68) !important;
    color: #ffffff !important;
}

.creator-card .creator-badges a.creator-badge-link.creator-badge-discord {
    background: rgba(88, 101, 242, 0.22) !important;
    border-color: rgba(88, 101, 242, 0.48) !important;
    color: #e0e7ff !important;
}

.creator-card .creator-badges a.creator-badge-link.creator-badge-discord:hover {
    background: rgba(88, 101, 242, 0.34) !important;
    border-color: rgba(88, 101, 242, 0.68) !important;
    color: #ffffff !important;
}

.creator-card .creator-badges a.creator-badge-link:not(.creator-badge-twitch):not(.creator-badge-discord) {
    background: rgba(255, 255, 255, 0.075) !important;
    border-color: var(--border) !important;
    color: var(--text-soft) !important;
}

.creator-card .creator-badges a.creator-badge-link:not(.creator-badge-twitch):not(.creator-badge-discord):hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

/* Weitere-Badge: leicht Orange/Rosa wie Instagram */
.creator-card .creator-badges a.creator-badge-link:not(.creator-badge-twitch):not(.creator-badge-discord) {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.20), rgba(236, 72, 153, 0.22)) !important;
    border-color: rgba(236, 72, 153, 0.42) !important;
    color: #ffe4f1 !important;
}

.creator-card .creator-badges a.creator-badge-link:not(.creator-badge-twitch):not(.creator-badge-discord):hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.32), rgba(236, 72, 153, 0.34)) !important;
    border-color: rgba(236, 72, 153, 0.62) !important;
    color: #ffffff !important;
}

/* FINAL: Link-Karten Farben + richtige Icons */
.link-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.10);
    text-decoration: none;
    color: var(--text-main);
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.link-card::before {
    content: "";
    position: absolute;
    top: -28px;
    right: -28px;
    width: 118px;
    height: 118px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.link-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.18);
}

.link-card strong {
    font-size: 24px;
}

.link-card small {
    color: var(--text-muted);
}

.link-icon {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    backdrop-filter: blur(8px);
}

.link-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.instagram .link-icon svg {
    fill: none;
}

.twitch {
    background: linear-gradient(145deg, rgba(145, 70, 255, 0.28), rgba(36, 26, 66, 0.95));
}

.discord {
    background: linear-gradient(145deg, rgba(88, 101, 242, 0.30), rgba(25, 33, 74, 0.96));
}

.instagram {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.18), rgba(236, 72, 153, 0.30), rgba(73, 28, 62, 0.96));
}

.tiktok {
    background: linear-gradient(145deg, rgba(34, 211, 238, 0.18), rgba(20, 184, 166, 0.18), rgba(20, 20, 24, 0.96));
}

/* FINAL: Social-Hub-Karten wie Linkbereich */
.social-hub-card {
    position: relative;
    overflow: hidden;
    padding-top: 76px !important;
}

.social-hub-card::before {
    content: "";
    position: absolute;
    top: -28px;
    right: -28px;
    width: 118px;
    height: 118px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.social-hub-icon {
    position: absolute;
    top: 24px;
    left: 26px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    backdrop-filter: blur(8px);
}

.social-hub-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.social-hub-instagram .social-hub-icon svg {
    fill: none;
}

.social-hub-twitch {
    background: linear-gradient(145deg, rgba(145, 70, 255, 0.28), rgba(36, 26, 66, 0.95)) !important;
    border-color: rgba(145, 70, 255, 0.28) !important;
}

.social-hub-discord {
    background: linear-gradient(145deg, rgba(88, 101, 242, 0.30), rgba(25, 33, 74, 0.96)) !important;
    border-color: rgba(88, 101, 242, 0.28) !important;
}

.social-hub-instagram {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.18), rgba(236, 72, 153, 0.30), rgba(73, 28, 62, 0.96)) !important;
    border-color: rgba(236, 72, 153, 0.28) !important;
}

.social-hub-tiktok {
    background: linear-gradient(145deg, rgba(34, 211, 238, 0.18), rgba(20, 184, 166, 0.18), rgba(20, 20, 24, 0.96)) !important;
    border-color: rgba(20, 184, 166, 0.28) !important;
}

.social-hub-twitch .social-hub-tag {
    background: rgba(145, 70, 255, 0.18) !important;
    border-color: rgba(145, 70, 255, 0.38) !important;
    color: #f3e8ff !important;
}

.social-hub-discord .social-hub-tag {
    background: rgba(88, 101, 242, 0.18) !important;
    border-color: rgba(88, 101, 242, 0.38) !important;
    color: #e0e7ff !important;
}

.social-hub-instagram .social-hub-tag {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.20), rgba(236, 72, 153, 0.22)) !important;
    border-color: rgba(236, 72, 153, 0.42) !important;
    color: #ffe4f1 !important;
}

.social-hub-tiktok .social-hub-tag {
    background: rgba(20, 184, 166, 0.18) !important;
    border-color: rgba(20, 184, 166, 0.38) !important;
    color: #ccfbf1 !important;
}

/* Auf sehr kleinen Breiten Bild unter den Text setzen */
@media (max-width: 420px) {
    .hero-live-card {
        grid-template-columns: 1fr !important;
    }

    .hero-live-card .hero-live-thumb-wrap {
        width: 100% !important;
        height: 130px !important;
    }
}

/* TikTok Embed kleiner skalieren, damit es komplett ins Feld passt */
.hero-tiktok-video-wrap .tiktok-embed,
.hero-tiktok-video-wrap iframe {
    width: 180% !important;
    max-width: 180% !important;
    height: 360px !important;
    max-height: none !important;
    min-height: 360px !important;
    transform: scale(0.56) !important;
    transform-origin: top left !important;
    border: 0 !important;
    border-radius: 18px !important;
}

/* Inhalt der TikTok-Kachel oben sauber halten */
.hero-tiktok-card .hero-tiktok-content {
    flex-shrink: 0 !important;
}

.hero-tiktok-card #heroTikTokTitle,
.hero-tiktok-card .hero-tiktok-content strong {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.hero-tiktok-card #heroTikTokMeta,
.hero-tiktok-card .hero-tiktok-content span:last-child {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Mobile: TikTok etwas größer, aber weiterhin vollständig */
@media (max-width: 720px) {
    .hero-live-card,
    .hero-tiktok-card {
        height: auto !important;
        min-height: 330px !important;
    }

    .hero-tiktok-video-wrap {
        height: 260px !important;
    }

    .hero-tiktok-video-wrap .tiktok-embed,
    .hero-tiktok-video-wrap iframe {
        width: 150% !important;
        max-width: 150% !important;
        height: 430px !important;
        min-height: 430px !important;
        transform: scale(0.67) !important;
    }
}

/* Badge-Abstand bei beiden Karten identisch */
.hero-live-card .hero-live-badge,
.hero-tiktok-card .hero-tiktok-badge {
    margin-bottom: 8px !important;
    flex-shrink: 0 !important;
}

/* Textzeilen sauber begrenzen */
.hero-live-card #heroLiveTitle,
.hero-tiktok-card .hero-tiktok-content strong {
    height: 22px !important;
    line-height: 22px !important;
    max-height: 22px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.hero-live-card #heroLiveMeta,
.hero-tiktok-card .hero-tiktok-content span:last-child {
    height: 18px !important;
    line-height: 18px !important;
    max-height: 18px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

/* Vorschaubereich bei beiden Karten exakt gleich */
.hero-live-card .hero-live-thumb-wrap,
.hero-tiktok-card .hero-tiktok-video-wrap {
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
}

/* Gesamtkarten weiter identisch */
.hero-live-card,
.hero-tiktok-card {
    height: 330px !important;
    min-height: 330px !important;
    max-height: 330px !important;
}

/* Twitch Titel bleibt drin, verändert aber die Höhe nicht */
.hero-live-card #heroLiveTitle {
    display: block !important;
    width: 100% !important;
    height: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    line-height: 22px !important;
    margin: 0 !important;
    color: var(--text-main) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Twitch Zusatztext bleibt darunter, ebenfalls ohne Höhenänderung */
.hero-live-card #heroLiveMeta {
    display: block !important;
    width: 100% !important;
    height: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
    line-height: 18px !important;
    margin-top: 4px !important;
    color: var(--text-muted) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Badge nimmt feste Höhe ein */
.hero-live-card .hero-live-badge,
.hero-tiktok-card .hero-tiktok-badge {
    height: 27px !important;
    min-height: 27px !important;
    max-height: 27px !important;
    line-height: 1 !important;
    margin-bottom: 8px !important;
    flex-shrink: 0 !important;
}

/* Vorschaubereich bleibt gleich groß */
.hero-live-card .hero-live-thumb-wrap,
.hero-tiktok-card .hero-tiktok-video-wrap {
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
}

/* Titel darf mehrere Zeilen haben und im Kopfbereich gescrollt werden */
.hero-live-card #heroLiveTitle {
    height: auto !important;
    min-height: 22px !important;
    max-height: none !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    word-break: break-word !important;
}

/* Meta bleibt darunter lesbar */
.hero-live-card #heroLiveMeta {
    height: auto !important;
    min-height: 18px !important;
    max-height: none !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

/* Chrome/Edge Scrollbar etwas dezenter */
.hero-live-card .hero-live-content::-webkit-scrollbar {
    width: 5px;
}

.hero-live-card .hero-live-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.hero-live-card .hero-live-content::-webkit-scrollbar-track {
    background: transparent;
}

/* Oberer Textbereich größer */
.hero-live-card .hero-live-content,
.hero-tiktok-card .hero-tiktok-content {
    height: 112px !important;
    min-height: 112px !important;
    max-height: 112px !important;
}

/* Twitch Kopfbereich bleibt scrollbar */
.hero-live-card .hero-live-content {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-right: 6px !important;
}

/* TikTok Kopfbereich ohne Scroll, aber gleich hoch */
.hero-tiktok-card .hero-tiktok-content {
    overflow: hidden !important;
}

/* Vorschau darunter etwas kleiner, damit Gesamtgröße gleich bleibt */
.hero-live-card .hero-live-thumb-wrap,
.hero-tiktok-card .hero-tiktok-video-wrap {
    height: 184px !important;
    min-height: 184px !important;
    max-height: 184px !important;
}

/* Twitch Bild passend */
.hero-live-card .hero-live-thumb-wrap img {
    height: 100% !important;
    object-fit: cover !important;
}

/* TikTok Embed passend */
.hero-tiktok-video-wrap .tiktok-embed,
.hero-tiktok-video-wrap iframe {
    height: 184px !important;
    max-height: 184px !important;
}

/* Titel/Meta im größeren Bereich sauber lesbar */
.hero-live-card #heroLiveTitle,
.hero-tiktok-card .hero-tiktok-content strong {
    line-height: 1.25 !important;
}

.hero-live-card #heroLiveMeta,
.hero-tiktok-card .hero-tiktok-content span:last-child {
    line-height: 1.35 !important;
}

/* Oberer Textbereich größer */
.hero-live-card .hero-live-content,
.hero-tiktok-card .hero-tiktok-content {
    height: 112px !important;
    min-height: 112px !important;
    max-height: 112px !important;
}

/* Twitch Kopfbereich bleibt scrollbar */
.hero-live-card .hero-live-content {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-right: 6px !important;
}

/* TikTok Kopfbereich ohne Scroll, aber gleich hoch */
.hero-tiktok-card .hero-tiktok-content {
    overflow: hidden !important;
}

/* Vorschau darunter etwas kleiner, damit Gesamtgröße gleich bleibt */
.hero-live-card .hero-live-thumb-wrap,
.hero-tiktok-card .hero-tiktok-video-wrap {
    height: 184px !important;
    min-height: 184px !important;
    max-height: 184px !important;
}

/* Twitch Bild passend */
.hero-live-card .hero-live-thumb-wrap img {
    height: 100% !important;
    object-fit: cover !important;
}

/* TikTok Embed passend */
.hero-tiktok-video-wrap .tiktok-embed,
.hero-tiktok-video-wrap iframe {
    height: 184px !important;
    max-height: 184px !important;
}

/* Titel/Meta im größeren Bereich sauber lesbar */
.hero-live-card #heroLiveTitle,
.hero-tiktok-card .hero-tiktok-content strong {
    line-height: 1.25 !important;
}

.hero-live-card #heroLiveMeta,
.hero-tiktok-card .hero-tiktok-content span:last-child {
    line-height: 1.35 !important;
}

/* Äußeres TikTok-Feld bleibt gleich groß */
.hero-tiktok-card .hero-tiktok-video-wrap {
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

/* Nur die innere TikTok-Vorschau etwas nach unten schieben */
.hero-tiktok-video-wrap .tiktok-embed,
.hero-tiktok-video-wrap iframe {
    width: 100% !important;
    height: 184px !important;
    min-height: 184px !important;
    max-height: 184px !important;
    transform: translateY(18px) !important;
    border-radius: 18px !important;
}

/* Twitch-Bild bleibt sauber gleich groß */
.hero-live-card .hero-live-thumb-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Twitch-Bild exakt im Rahmen */
.hero-live-card .hero-live-thumb-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* TikTok-Embed exakt im gleichen Rahmen, ohne Verschiebung */
.hero-tiktok-card .hero-tiktok-video-wrap {
    position: relative !important;
    display: block !important;
}

.hero-tiktok-video-wrap .tiktok-embed,
.hero-tiktok-video-wrap iframe {
    width: 100% !important;
    height: 184px !important;
    min-height: 184px !important;
    max-height: 184px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 18px !important;
    transform: none !important;
    display: block !important;
}

/* Karten behalten exakt gleiche Gesamtgröße */
.hero-live-card,
.hero-tiktok-card {
    height: 330px !important;
    min-height: 330px !important;
    max-height: 330px !important;
}

/* FAQ Upgrade */
.faq-list {
    display: grid;
    gap: 14px;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(145, 70, 255, 0.28);
    background:
        linear-gradient(145deg, rgba(145, 70, 255, 0.10), rgba(255, 255, 255, 0.045));
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 20px;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 20px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
    content: "–";
    background: rgba(145, 70, 255, 0.18);
    color: #ffffff;
}

.faq-item p {
    padding: 0 20px 18px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 15px;
}

/* Über Enrique Mini-Infos */
.about-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.about-mini-grid div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--border);
}

.about-mini-grid strong {
    display: block;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 850;
    margin-bottom: 4px;
}

.about-mini-grid span {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.35;
}

@media (max-width: 720px) {
    .about-mini-grid {
        grid-template-columns: 1fr;
    }
}

/* Content-Karten Upgrade */
.feature-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    min-height: 250px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(145, 70, 255, 0.30);
    background:
        linear-gradient(145deg, rgba(145, 70, 255, 0.11), rgba(255, 255, 255, 0.045));
}

.feature-card::before {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(145, 70, 255, 0.12);
    pointer-events: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    color: #ffffff;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
}

.feature-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Plattform-Farben */
.feature-live .feature-icon,
.feature-live .feature-tag {
    background: rgba(145, 70, 255, 0.16);
    border-color: rgba(145, 70, 255, 0.35);
}

.feature-clips .feature-icon,
.feature-clips .feature-tag {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(236, 72, 153, 0.18));
    border-color: rgba(236, 72, 153, 0.32);
}

.feature-community .feature-icon,
.feature-community .feature-tag {
    background: rgba(88, 101, 242, 0.16);
    border-color: rgba(88, 101, 242, 0.36);
}

/* Community Discord Upgrade */
.community-upgrade-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 26px;
    align-items: center;
    padding: 34px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(88, 101, 242, 0.22), transparent 34%),
        linear-gradient(145deg, rgba(88, 101, 242, 0.16), rgba(255, 255, 255, 0.045));
    border: 1px solid rgba(88, 101, 242, 0.28);
}

.community-upgrade-box::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(88, 101, 242, 0.16);
    pointer-events: none;
}

.community-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 22px;
    align-items: flex-start;
}

.community-icon-large {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: rgba(88, 101, 242, 0.20);
    border: 1px solid rgba(88, 101, 242, 0.38);
    box-shadow: 0 18px 45px rgba(88, 101, 242, 0.18);
    color: #ffffff;
}

.community-icon-large svg {
    width: 38px;
    height: 38px;
    fill: currentColor;
}

.community-upgrade-box h2 {
    margin-bottom: 12px;
}

.community-upgrade-box p {
    color: var(--text-muted);
    line-height: 1.65;
}

.community-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.community-points span {
    display: inline-flex;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--text-main);
    font-size: 13px;
    font-weight: 750;
}

.community-side {
    position: relative;
    z-index: 1;
    padding: 20px;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.community-side p {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 14px;
}

.community-side .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 820px) {
    .community-upgrade-box {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .community-main {
        grid-template-columns: 1fr;
    }

    .community-icon-large {
        width: 64px;
        height: 64px;
        border-radius: 20px;
    }
}

/* Kontaktbereich Upgrade */
.contact-upgrade-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 24px;
    padding: 32px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(145, 70, 255, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    border: 1px solid var(--border);
}

.contact-upgrade-card::before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(88, 101, 242, 0.12);
    pointer-events: none;
}

.contact-upgrade-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 22px;
    align-items: flex-start;
}

.contact-upgrade-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(88, 101, 242, 0.16);
}

.contact-options {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.contact-option {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--border);
}

.contact-option strong {
    display: block;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 850;
    margin-bottom: 6px;
}

.contact-option span {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.45;
}

.contact-upgrade-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2px;
}

@media (max-width: 760px) {
    .contact-upgrade-main {
        grid-template-columns: 1fr;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .contact-upgrade-card {
        padding: 26px;
    }
}

/* Social Hub Final Upgrade */
.social-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.social-hub-card {
    position: relative;
    min-height: 235px;
    padding: 72px 20px 20px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-main);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.070), rgba(255, 255, 255, 0.035));
    border: 1px solid var(--border);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.social-hub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.social-hub-card::before {
    content: "";
    position: absolute;
    right: -44px;
    top: -44px;
    width: 126px;
    height: 126px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.065);
    pointer-events: none;
}

.social-hub-icon {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
}

.social-hub-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.social-hub-tag {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
}

.social-hub-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.2;
}

.social-hub-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
}

/* Plattformfarben nur dezent */
.social-hub-twitch:hover {
    border-color: rgba(145, 70, 255, 0.36);
    background:
        linear-gradient(145deg, rgba(145, 70, 255, 0.13), rgba(255, 255, 255, 0.04));
}

.social-hub-twitch .social-hub-icon,
.social-hub-twitch .social-hub-tag {
    background: rgba(145, 70, 255, 0.16);
    border-color: rgba(145, 70, 255, 0.34);
}

.social-hub-discord:hover {
    border-color: rgba(88, 101, 242, 0.38);
    background:
        linear-gradient(145deg, rgba(88, 101, 242, 0.13), rgba(255, 255, 255, 0.04));
}

.social-hub-discord .social-hub-icon,
.social-hub-discord .social-hub-tag {
    background: rgba(88, 101, 242, 0.16);
    border-color: rgba(88, 101, 242, 0.34);
}

.social-hub-instagram:hover {
    border-color: rgba(236, 72, 153, 0.36);
    background:
        linear-gradient(145deg, rgba(236, 72, 153, 0.12), rgba(251, 146, 60, 0.07));
}

.social-hub-instagram .social-hub-icon,
.social-hub-instagram .social-hub-tag {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.16), rgba(236, 72, 153, 0.18));
    border-color: rgba(236, 72, 153, 0.34);
}

.social-hub-tiktok:hover {
    border-color: rgba(34, 211, 238, 0.34);
    background:
        linear-gradient(145deg, rgba(34, 211, 238, 0.10), rgba(236, 72, 153, 0.08));
}

.social-hub-tiktok .social-hub-icon,
.social-hub-tiktok .social-hub-tag {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(236, 72, 153, 0.16));
    border-color: rgba(34, 211, 238, 0.30);
}

@media (max-width: 980px) {
    .social-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .social-hub-grid {
        grid-template-columns: 1fr;
    }

    .social-hub-card {
        min-height: 210px;
    }
}

/* Header / Navigation Final Upgrade */
.site-header {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.nav-container {
    min-height: 78px;
}

.brand {
    gap: 13px;
}

.brand-image {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 28px rgba(145, 70, 255, 0.16);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 17px;
    letter-spacing: -0.02em;
}

.brand-text small {
    font-size: 11px;
    color: var(--text-muted);
}

.brand-hosted {
    opacity: 0.78;
}

.brand-version {
    width: fit-content;
    margin-top: 3px;
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(145, 70, 255, 0.12);
    border: 1px solid rgba(145, 70, 255, 0.20);
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 10px !important;
    font-weight: 750;
}

.main-nav {
    gap: 4px;
}

.main-nav a {
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.075);
    transform: translateY(-1px);
}

/* Mobile Menü schöner */
.mobile-menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.055);
}

.mobile-menu-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-main);
}

.mobile-menu-toggle.active {
    background: rgba(145, 70, 255, 0.14);
    border-color: rgba(145, 70, 255, 0.26);
}

@media (max-width: 920px) {
    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        gap: 6px;
        padding: 14px;
        border-radius: 22px;
        background:
            linear-gradient(145deg, rgba(20, 20, 32, 0.98), rgba(13, 13, 22, 0.98));
        border: 1px solid var(--border);
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .nav-container {
        position: relative;
    }
}

@media (max-width: 520px) {
    .brand-image {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text small:not(.brand-version) {
        font-size: 10px;
    }

    .brand-version {
        font-size: 9px !important;
        padding: 3px 6px;
    }
}

/* Footer Final Upgrade */
.footer-upgrade {
    padding: 34px 20px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    background:
        radial-gradient(circle at top left, rgba(145, 70, 255, 0.12), transparent 32%),
        rgba(0, 0, 0, 0.16);
}

.footer-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 30px rgba(145, 70, 255, 0.14);
}

.footer-brand strong {
    display: block;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 850;
    margin-bottom: 3px;
}

.footer-brand span,
.footer-brand small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.35;
}

.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.075);
    border-color: var(--border);
    transform: translateY(-1px);
}

.footer-bottom {
    width: min(1120px, 100%);
    margin: 22px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--text-muted);
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom span {
    display: inline-flex;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(145, 70, 255, 0.10);
    border: 1px solid rgba(145, 70, 255, 0.18);
    color: rgba(255, 255, 255, 0.72);
    font-weight: 750;
}

@media (max-width: 720px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
