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

:root {
    --bg: #151b1f;
    --bar: #222121;
    --bar-border: #493d2e;
    --accent: #f3a71a;
    --text: #cdd6dc;
    --text-muted: #807463;
}

html {
    scroll-behavior: smooth;
}

.body-points {
    background-color: #050505;
    background-image: radial-gradient(#1a1a1a 1px, transparent 1px);
    background-size: 30px 30px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    min-height: 100vh;
    box-shadow: 
        inset 0 0 150px rgba(0, 0, 0, 1), 
        inset 0 0 1000px rgba(0, 0, 0, 1);
        
    line-height: 1.6;
    overflow-x: hidden;
}

.body-lines {
    background-color: #050505;
    /* Ersetzt das Punkte-Raster durch ein Linien-Grid */
    background-image: 
        linear-gradient(to right, #1a1a1a 1px, transparent 1px),
        linear-gradient(to bottom, #1a1a1a 1px, transparent 1px);
    background-size: 30px 30px;
    
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    min-height: 100vh;
    box-shadow: 
        inset 0 0 150px rgba(0, 0, 0, 1), 
        inset 0 0 1000px rgba(0, 0, 0, 1);
        
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Nav ── */
.locbar {
    position: fixed;
    top: 0.7rem; left: 15rem; right: 15rem;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 60px;
    background-color: color-mix(in srgb, var(--bar), transparent 20%);
    border-bottom: 1px solid var(--bar-border);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 1000rem;
}

.locbar_brand {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.locbar_links { display: flex; gap: 0.5rem; }

.locbar_text {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.2s;
    align-content: center;
}

.locbar_text_highlight {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.6rem 0.9rem;
    border-radius: 100px;
    transition: all 0.2s;
    background: linear-gradient(90deg, #3b819c 0%, #aa49d6 50%, #17d2d8 100%);
    color: white;
    text-shadow:
        -1px -1px 0 rgb(6, 14, 14),
         1px -1px 0 rgb(31, 7, 29),
        -1px  1px 0 rgb(14, 17, 43),
         1px  1px 0 rgb(48, 6, 6);
}

.locbar_text_highlight:hover, .locbar_text_highlight.active {
    background: linear-gradient(90deg, #3ca1c9 0%, #ae00ff 50%, #00f7ff 100%);
    padding: 0.65rem 1.05rem;
}

.locbar_text:hover, .locbar_text.active {
    color: var(--accent);
    background-color: rgba(79, 195, 247, 0.1);
}

/* ── Hero ── */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
}

.badge {
    background: rgba(79, 195, 247, 0.1);
    color: var(--accent);
    padding: 0.5rem 1.2rem; 
    border-radius: 50px;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(79, 195, 247, 0.2);
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    color: #fff;
    max-width: 900px;
}

.highlight { color: var(--accent); }

.hero p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 1.5rem 0 2.5rem;
    font-size: 1.1rem;
}

/* ── Sections & Grids ── */
.section { padding: 120px 2rem; }
.section_large { padding: 120px 1rem; }
.alt_bg { background-color: rgba(255, 255, 255, 0.02); }
.container { max-width: 1100px; margin: 0 auto; }

.section_title {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid_2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* ── Cards ── */
.card {
    background: var(--bar);
    border: 1px solid var(--bar-border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: 0.3s;
    color: white;
    text-decoration: none;
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.card_icon {
    margin-bottom: 1.5rem;
    width: 8rem;
    height: 8rem;
}

/* ── Pricing ── */
.videos_grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
}

.videos_card {
    background: #1a2227;
    border: 1px solid var(--bar-border);
    padding: 2rem 1rem;
    border-radius: 16px;
    text-align: center;
    position: relative;

    flex: 1;
    min-width: 0;
}

.tiktok-embed {
    margin: 0 auto !important;
    width: 100% !important;
    min-width: 100px !important;
}

.videos_card.featured {
    border-color: var(--accent);
    background: #1e2a30;
    transform: scale(1.05);
}

.video { font-size: 3rem; font-weight: 700; color: #fff; margin: 1rem 0; }
.video span { font-size: 1rem; color: var(--text-muted); }

.popular_tag {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem; font-weight: 700;
}

.mini_info { text-align: center; margin-top: 3rem; color: var(--text-muted); font-style: italic; }

.videos_header {
    color: var(--accent);
}

/* ── Team ── */
.links_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.links_card { 
    text-align: center; 
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: 0.2s;
    text-decoration: none;
}

.links_card:hover {
    border-color: var(--bar-border);
}

.links_card h4 {
    color: var(--accent); 
    font-size: 1.9rem; 
}

/* ── Buttons ── */
.btn_primary {
    background: var(--accent);
    color: #0d0d0d;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn_secondary {
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border: 1px solid var(--bar-border);
    border-radius: 8px;
    margin-left: 1rem;
    transition: 0.2s;
}

.btn_secondary:hover { background: var(--bar-border); }

footer {
    padding: 5rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--bar-border);
}

.cursor-follower {
    position: fixed;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, .12) 0, rgba(255, 255, 255, .06) 30%, rgba(255, 255, 255, .02) 60%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: .8;
    filter: blur(20px);
    mix-blend-mode: screen;
    transition: all .2s cubic-bezier(.22, 1, .36, 1);
    will-change: transform, opacity, filter;
}

.link {
    color: rgb(196, 161, 97);
    text-decoration: none;
}

/* ── Configuration Box ── */
.config_container {
    background: #0a0a0a;
    border: 1px solid var(--bar-border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
    text-align: left;
}

.config_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: var(--bar);
    border-bottom: 1px solid var(--bar-border);
    color: var(--text-muted);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

pre {
    padding: 20px;
    color: var(--accent);
    font-family: 'Courier New', monospace;
    overflow-x: auto;
    white-space: pre-wrap;
    line-height: 1.5;
}

/* ── Copy Button ── */
.btn_copy {
    background: transparent;
    border: 1px solid var(--bar-border);
    color: var(--text);
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.btn_copy:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn_copy.copied {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

/* ── Plugin Specifics ── */
.project_icon_large {
    width: 140px;
    height: 140px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 25px rgba(243, 167, 26, 0.4));
    border-radius: 24px;
}

.feature_list {
    list-style: none;
    text-align: left;
}

.feature_list li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.feature_list b {
    color: var(--text);
}