
/* 1. JetBrains Mono (Technik) */
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/jetbrains-mono-v24-latin-300.woff2') format('woff2'); 
}
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/jetbrains-mono-v24-latin-regular.woff2') format('woff2'); 
}

/* 2. Outfit (Modern) */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/outfit-v15-latin-300.woff2') format('woff2'); 
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/outfit-v15-latin-regular.woff2') format('woff2'); 
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/outfit-v15-latin-600.woff2') format('woff2'); 
}

/* 3. Playfair Display (Eleganz) */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2'); 
}
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/playfair-display-v40-latin-italic.woff2') format('woff2'); 
}


/* montserrat-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/montserrat-v26-latin-300.woff2') format('woff2');
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v26-latin-regular.woff2') format('woff2');
}
/* montserrat-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/montserrat-v26-latin-500.woff2') format('woff2');
}

/* cormorant-garamond-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/cormorant-garamond-v16-latin-regular.woff2') format('woff2');
}
/* cormorant-garamond-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/cormorant-garamond-v16-latin-500.woff2') format('woff2');
}
/* cormorant-garamond-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/cormorant-garamond-v16-latin-600.woff2') format('woff2');
}


/* Footer styles */
<style>
.footer-ur-feld {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 80px 20px;
        background-color: #050505;
        color: #777;
        font-family: 'Inter', sans-serif;
    }
    .status-line {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.6em;
        margin-bottom: 40px;
        opacity: 0.4;
    }
    .footer-nav-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 35px; 
        max-width: 1200px;
    }
    .footer-nav-row a {
        color: #666;
        text-decoration: none;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.3em;
        transition: all 0.5s ease;
    }
    .footer-nav-row a:hover {
        color: #fff;
        text-shadow: 0 0 10px rgba(255,255,255,0.3);
    }
    .fm-link-wrapper {
        position: relative;
        width: 60px; 
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    .fm-aura {
        position: absolute;
        width: 45px;
        height: 30px; 
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        filter: blur(15px);
        animation: fm-glow 5s infinite ease-in-out;
    }
    .fm-box {
        position: absolute;
        width: 20px;
        height: 20px;
        border: 1.5px solid rgba(255, 255, 255, 0.3); 
        border-radius: 2px;
        animation: fm-breathe 6s infinite ease-in-out;
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .fm-core {
        position: absolute;
        width: 4px;
        height: 4px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    }
  .fm-link-wrapper:hover .fm-box {
        border-color: #fff;
        width: 24px;
        height: 24px;
        transform: rotate(45deg);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }
    .fm-link-wrapper:hover .fm-core {
        background: #fff;
        box-shadow: 0 0 15px #fff;
        transform: scale(1.5);
    }
   @keyframes fm-breathe {
        0%, 100% { transform: scale(1); opacity: 0.4; border-color: rgba(255, 255, 255, 0.2); }
        50% { transform: scale(1.15); opacity: 0.8; border-color: rgba(255, 255, 255, 0.6); }
    }
    @keyframes fm-glow {
        0%, 100% { transform: scale(1); opacity: 0.3; }
        50% { transform: scale(1.4); opacity: 0.7; }
    }
	
	#cursor {
		z-index: 2147483647 !important;
	}
	
/* --- ProvenExpert Responsive Override --- */

/* Apply layout overrides ONLY when the screen is smaller than 1200px */
@media (max-width: 1200px) {
    /* 1. Remove the rigid 1140px width */
    body #ProvenExpert_widgetbar_container > div > div:nth-of-type(2) {
        width: 100% !important;
        max-width: 100vw !important;
    }

    /* 2. Enable Flexbox & GAP to perfectly center and space elements */
    body a.provenExpertWidgetContent {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
        gap: 20px !important; 
        
        /* THE FIX: Kill the blue underline and default link styling */
        text-decoration: none !important; 
        border-bottom: none !important; 
        color: inherit !important;
    }

    /* 3. Strip all rigid margins and floats from the image */
    body .provenExpertWidgetContent > img {
        margin: 0 !important;
        float: none !important;
    }

    /* 4. Deep reset. Strip margin-top from ALL nested divs to prevent sagging */
    body .provenExpertWidgetContent div {
        float: none !important;
        margin-top: 0 !important;
    }
}

/* 5. Mobile View: Streamline layout and drop unnecessary ballast */
@media (max-width: 850px) {
    /* Hide all dividers (1, 3, 5, 7) + "1 Customer Review" (2) + "More Info" (8) */
    body .provenExpertWidgetContent > div:nth-of-type(1), 
    body .provenExpertWidgetContent > div:nth-of-type(3), 
    body .provenExpertWidgetContent > div:nth-of-type(5),
    body .provenExpertWidgetContent > div:nth-of-type(7),
    body .provenExpertWidgetContent > div:nth-of-type(2),
    body .provenExpertWidgetContent > div:nth-of-type(8) {
        display: none !important;
    }

    body .provenExpertWidgetContent > img {
        width: 130px !important;
        height: auto !important;
    }
    
    /* Slightly reduce the gap on very small screens so it doesn't overflow */
    body a.provenExpertWidgetContent {
        gap: 10px !important;
    }
}

/* =========================================
   AUDIO SLIDEOUT
========================================= */

#audio-slideout {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(100%);
    z-index: 9000;
    display: flex;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#audio-slideout.is-open {
    transform: translateY(-50%) translateX(0);
}

/* --- Der Tab am Rand --- */
#audio-tab {
    position: absolute;
    left: -40px;
    background-color: var(--bg-surface);
    border: 1px solid var(--grid-line);
    border-right: none;
    color: var(--accent);
    padding: 20px 10px;
    cursor: none; 
    outline: none;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: background-color 0.3s;
}

#audio-tab:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

/* --- Das Haupt-Panel --- */
.audio-panel {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--grid-line);
    border-right: none;
    padding: 2rem;
    width: 320px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

#close-audio-btn {
    background: none; 
    border: none; 
    color: var(--text-dim);
    font-size: 1.5rem; 
    cursor: none; 
    transition: color 0.3s;
}

#close-audio-btn:hover { 
    color: var(--text-main); 
}

.audio-panel h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-main);
}

.audio-panel p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
}

/* --- Der Custom Player --- */
.custom-player {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-btn {
    width: 45px; 
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    display: flex; 
    justify-content: center; 
    align-items: center;
    cursor: none;
    transition: all 0.3s;
}

.play-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.progress-wrapper { 
    flex: 1; 
}

.progress-bar {
    width: 100%; 
    height: 2px;
    background: var(--grid-line);
    margin-bottom: 5px;
    position: relative;
}

#progress-fill {
    height: 100%; 
    width: 0%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    transition: width 0.1s linear;
}

.time-display {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    text-align: right;
}

/* --- Mobile Ansicht --- */
@media (max-width: 900px) {
    #audio-slideout {
        top: auto;
        bottom: 90px; 
        transform: translateY(0) translateX(100%);
    }
    
    #audio-slideout.is-open {
        transform: translateY(0) translateX(0);
    }
    
    #audio-tab {
        left: -35px;
        width: auto;
        height: auto;
        border-radius: 0;
        background-color: var(--bg-surface);
        border: 1px solid var(--grid-line);
        border-right: none;
        color: var(--accent);
        padding: 15px 6px;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        display: block;
        font-size: 0.7rem;
    }
    
    .tab-text { 
        display: inline; 
    }
    
    #audio-tab::after {
        content: none; 
    }
}


</style>