#fw-section-custom-html-cf8007fd-d8a2-4b6b-b1fe-a8612f1fc90d {

/* =====================================================
   TRADIWAVE — OUR BROKER PAGE CSS
   Farben: Cyan #00f5d4 · Dark Navy · Lila #7c4dff
   ===================================================== */

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #e8edf5;
    background:
        radial-gradient(ellipse 70% 50% at 0% 0%,   rgba(124, 77, 255, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 30%, rgba(0, 245, 212, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 80% 100%, rgba(124, 77, 255, 0.06) 0%, transparent 60%),
        repeating-linear-gradient(
            -45deg,
            transparent, transparent 40px,
            rgba(0, 245, 212, 0.012) 40px,
            rgba(0, 245, 212, 0.012) 41px
        ),
        #04060d;
    background-attachment: fixed;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 245, 212, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 77, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 245, 212, 0.08) 0%, transparent 65%),
        linear-gradient(180deg, #080e1a 0%, #04060d 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 245, 212, 0.1);
    position: relative;
    overflow: hidden;
}

/* Shimmer Linie oben */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, #00f5d4, rgba(124, 77, 255, 0.8), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.04) 0%, transparent 70%);
    animation: heroPuls 15s ease-in-out infinite;
}

@keyframes heroPuls {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%       { transform: translate(5%,5%) scale(1.1); }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
}

.hero .container { position: relative; z-index: 2; }

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #00f5d4, #7c4dff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: rgba(232, 237, 245, 0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── CTA BUTTON ───────────────────────────────────────────── */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00f5d4;
    color: #04060d;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    box-shadow: 0 0 28px rgba(0, 245, 212, 0.35);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.4s;
}

.cta-button:hover::before { left: 100%; }

.cta-button:hover {
    background: #1ffcde;
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 245, 212, 0.6);
}

/* ── TRUST SECTION ────────────────────────────────────────── */
.trust-section {
    background: rgba(8, 14, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 245, 212, 0.08);
    border-bottom: 1px solid rgba(0, 245, 212, 0.08);
}

.trust-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin-bottom: 40px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* ── BADGE KARTE ──────────────────────────────────────────── */
.badge {
    background: linear-gradient(145deg, #0c1322, #111928);
    border: 1px solid rgba(0, 245, 212, 0.1);
    border-radius: 12px;
    padding: 32px 22px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Scan-Linie oben beim Hover */
.badge::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: auto;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, #00f5d4, transparent);
    transition: left 0.5s ease;
}

.badge:hover::before { left: 100%; }

.badge:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 245, 212, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 245, 212, 0.08);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 10px rgba(0, 245, 212, 0.3));
    transition: transform 0.3s ease;
    display: block;
}

.badge:hover .badge-icon { transform: scale(1.12); }

.badge h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 10px;
}

.badge p { color: rgba(232, 237, 245, 0.55); font-size: 0.9rem; line-height: 1.6; }

/* ── FEATURES ─────────────────────────────────────────────── */
.features {
    padding: 80px 20px;
    background: transparent;
}

.features h2 {
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #ffffff, #00f5d4, #7c4dff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.feature-card {
    background: linear-gradient(145deg, #0c1322, #111928);
    border: 1px solid rgba(0, 245, 212, 0.1);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, #00f5d4, transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before { left: 100%; }

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 24px rgba(0, 245, 212, 0.08);
    border-color: rgba(0, 245, 212, 0.28);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 10px rgba(0, 245, 212, 0.25));
    transition: transform 0.3s ease;
    display: block;
}

.feature-card:hover .feature-icon { transform: scale(1.08); }

.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #00f5d4;
    margin-bottom: 12px;
}

.feature-card p { color: rgba(232, 237, 245, 0.7); line-height: 1.75; font-size: 0.95rem; }

.feature-card ul { margin-top: 16px; padding-left: 18px; color: rgba(232, 237, 245, 0.65); }
.feature-card li { margin-bottom: 9px; line-height: 1.6; }
.feature-card li::marker { color: #00f5d4; }

/* ── ACCOUNT TYPES ────────────────────────────────────────── */
.accounts {
    padding: 80px 20px;
    background: rgba(8, 14, 26, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 245, 212, 0.08);
    border-bottom: 1px solid rgba(0, 245, 212, 0.08);
}

.accounts h2 {
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 60px;
    color: #ffffff;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.account-card {
    background: linear-gradient(145deg, #0c1322, #111928);
    border: 1px solid rgba(0, 245, 212, 0.12);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.account-card:hover {
    border-color: rgba(0, 245, 212, 0.35);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 24px rgba(0, 245, 212, 0.08);
    transform: translateY(-6px);
}

/* Featured account */
.account-card.featured {
    border-color: rgba(0, 245, 212, 0.35);
    background: linear-gradient(145deg, #0c1a2e, #0f2040);
    box-shadow: 0 8px 32px rgba(0, 245, 212, 0.12);
}

.account-card.featured::before {
    content: "RECOMMENDED";
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: #00f5d4;
    color: #04060d;
    padding: 5px 20px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.4);
}

.account-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 18px;
}

.account-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.2rem;
    color: #00f5d4;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 245, 212, 0.4);
}

.account-features { text-align: left; margin: 22px 0; }

.account-features li {
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.92rem;
    color: rgba(232, 237, 245, 0.7);
}

.account-features li:last-child { border-bottom: none; }
.account-features li::marker { color: #00f5d4; }

/* ── REGULATION ───────────────────────────────────────────── */
.regulation {
    padding: 70px 20px;
    background: transparent;
}

.regulation h2 {
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 30px;
    color: #ffffff;
}

.regulation-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #0c1322, #111928);
    border: 1px solid rgba(0, 245, 212, 0.12);
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    color: rgba(232, 237, 245, 0.75);
}

.regulator-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.regulator {
    text-align: center;
    padding: 18px;
    background: rgba(0, 245, 212, 0.04);
    border: 1px solid rgba(0, 245, 212, 0.1);
    border-radius: 8px;
    transition: all 0.25s ease;
}

.regulator:hover {
    border-color: rgba(0, 245, 212, 0.28);
    background: rgba(0, 245, 212, 0.07);
}

.regulator strong {
    display: block;
    color: #00f5d4;
    margin-bottom: 4px;
    font-size: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.regulator span { color: rgba(232, 237, 245, 0.5); font-size: 0.88rem; }

/* ── WHY CHOOSE ───────────────────────────────────────────── */
.why-choose {
    padding: 70px 20px;
    background: rgba(8, 14, 26, 0.5);
    backdrop-filter: blur(10px);
}

.why-choose h2 {
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 50px;
    color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.benefit { text-align: center; }

.benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 10px rgba(0, 245, 212, 0.25));
    display: block;
}

.benefit h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #00f5d4;
    margin-bottom: 8px;
}

.benefit p { color: rgba(232, 237, 245, 0.6); font-size: 0.92rem; }

/* ── FINAL CTA ────────────────────────────────────────────── */
.final-cta {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 245, 212, 0.08) 0%, transparent 65%),
        linear-gradient(180deg, #080e1a 0%, #04060d 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 245, 212, 0.1);
}

.final-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #00f5d4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(232, 237, 245, 0.7);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ── HIGHLIGHT BOX ────────────────────────────────────────── */
.highlight {
    background: rgba(0, 245, 212, 0.06);
    border-left: 3px solid #00f5d4;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 0 6px 6px 0;
    color: #e8edf5;
}

/* ── DISCLAIMER ───────────────────────────────────────────── */
.disclaimer {
    background: rgba(4, 6, 13, 0.98);
    color: rgba(232, 237, 245, 0.35);
    padding: 28px 20px;
    text-align: center;
    font-size: 0.82rem;
    border-top: 1px solid rgba(0, 245, 212, 0.07);
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.7;
}

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero h1  { font-size: 2rem; }
    .hero p   { font-size: 1rem; }

    .features h2,
    .accounts h2,
    .regulation h2,
    .why-choose h2 { font-size: 1.7rem; }

    .trust-badges {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 14px;
    }

    .badge         { padding: 22px 14px; }
    .badge-icon    { font-size: 2.4rem; margin-bottom: 12px; }
    .badge h3      { font-size: 1rem; }
    .badge p       { font-size: 0.82rem; }

    .regulation-content { padding: 22px; }
    .final-cta h2       { font-size: 1.7rem; }
    .cta-button         { padding: 13px 28px; font-size: 0.95rem; }

    .feature-card,
    .account-card       { padding: 24px 18px; }
}
}




#fw-section-custom-html-f1398b7a-aec4-49b5-8962-c63b33f86e83 {

/* =====================================================
   TRADIWAVE SCANNER — CSS
   Farben: Cyan #00f5d4 · Dark Navy #04060d · Lila #7c4dff
   Fonts: Bebas Neue (titles) · JetBrains Mono (data) · DM Sans (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=JetBrains+Mono:wght@400;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg:       #04060d;
  --panel:    #0c1322;
  --panel2:   #111928;
  --border:   rgba(255,255,255,0.07);
  --cyan:     #00f5d4;
  --cyan-dim: rgba(0,245,212,0.12);
  --cyan-lo:  rgba(0,245,212,0.25);
  --lila:     #7c4dff;
  --gruen:    #00e676;
  --rot:      #ff4060;
  --gold:     #f5c842;
  --text:     #e8edf5;
  --dim:      rgba(255,255,255,0.38);
  --glow:     rgba(0,245,212,0.15);
}

*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
}

.app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
}

/* ── HEADER ─────────────────────────────────────────── */
header {
  background: var(--panel2);
  border-bottom: 1px solid var(--border);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
}

header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.4;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(0,245,212,0.4);
  flex-shrink: 0;
}

.version {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: var(--dim);
  letter-spacing: 0.12em;
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 3px;
}

/* Symbol switcher */
.sym-row { display: flex; gap: 4px; }

.sym-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}
.sym-btn:hover  { border-color: var(--cyan-lo); color: var(--text); }
.sym-btn.active { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }

/* TF buttons */
.tf-row { display: flex; gap: 3px; }
.tf-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 7px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s;
}
.tf-btn:hover  { border-color: var(--cyan-lo); color: var(--text); }
.tf-btn.active { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }

/* Regime badge */
.regime-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid;
  transition: all 0.4s;
}
.regime-badge.TREND    { border-color: var(--cyan);  color: var(--cyan);  background: var(--cyan-dim); }
.regime-badge.RANGE    { border-color: var(--gold);  color: var(--gold);  background: rgba(245,200,66,0.1); }
.regime-badge.VOLATILE { border-color: var(--lila);  color: var(--lila);  background: rgba(124,77,255,0.1); }

/* Price */
.price-wrap { margin-left: auto; text-align: right; flex-shrink: 0; }
.price-num  { font-family: 'JetBrains Mono', monospace; font-size: 18px; font-weight: 700; color: var(--cyan); letter-spacing: 0.04em; }
.price-chg  { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.06em; }
.price-chg.up { color: var(--gruen); }
.price-chg.dn { color: var(--rot); }

/* ── TABS ──────────────────────────────────────────── */
.tabs {
  display: flex;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.tab-btn {
  flex: 1;
  padding: 8px 4px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.15s;
}
.tab-btn:hover  { color: var(--text); }
.tab-btn.active { border-bottom-color: var(--cyan); color: var(--cyan); }

/* ── PANELS ─────────────────────────────────────────── */
.tab-panel { display: none; flex: 1; min-height: 0; overflow: hidden; }
.tab-panel.active { display: flex; }

/* ── CHART TAB ──────────────────────────────────────── */
.chart-tab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.left {
  display: flex;
  flex-direction: column;
  padding: 7px;
  gap: 5px;
  border-right: 1px solid var(--border);
  overflow: hidden;
}

.chart-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  flex: 1;
  min-height: 0;
  padding: 6px 6px 4px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.chart-box:hover { border-color: rgba(0,245,212,0.2); }

.chart-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
  color: var(--dim);
  margin-bottom: 4px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
}
.chart-wrap { flex: 1; min-height: 0; position: relative; }
.chart-wrap canvas { position: absolute; inset: 0; width: 100%!important; height: 100%!important; }

.sltp-legend { display: none; gap: 8px; margin-top: 4px; font-family: 'JetBrains Mono', monospace; font-size: 8px; }
.leg-e { color: var(--cyan); }
.leg-t { color: var(--gruen); }
.leg-s { color: var(--rot); }

.macd-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  height: 52px;
  padding: 4px 6px;
  flex-shrink: 0;
}

.ind-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; flex-shrink: 0; }
.ind-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 8px;
  transition: border-color 0.2s;
}
.ind-card:hover { border-color: rgba(0,245,212,0.2); }

.ind-lbl { font-family: 'JetBrains Mono', monospace; font-size: 7px; letter-spacing: 0.1em; color: var(--dim); margin-bottom: 3px; }
.ind-val { font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 700; line-height: 1; }
.ind-val.bull { color: var(--gruen); }
.ind-val.bear { color: var(--rot); }
.ind-val.warn { color: var(--gold); }
.ind-val.neu  { color: var(--cyan); }
.ind-sub { font-size: 8px; color: var(--dim); margin-top: 2px; font-family: 'JetBrains Mono', monospace; }

/* ── RIGHT AI PANEL ─────────────────────────────────── */
.right {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--panel);
  -webkit-overflow-scrolling: touch;
}
.r-sec { padding: 10px 12px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.r-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.2em;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* VERDICT */
.verdict {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: border-color 0.5s, box-shadow 0.5s;
  background: var(--bg);
}
.verdict.BUY  { border-color: var(--gruen); box-shadow: 0 0 20px rgba(0,230,118,0.07) inset; }
.verdict.SELL { border-color: var(--rot);   box-shadow: 0 0 20px rgba(255,64,96,0.07) inset; }
.verdict.HOLD { border-color: var(--cyan);  box-shadow: 0 0 20px rgba(0,245,212,0.07) inset; }

.v-word {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.1em;
}
.v-word.BUY  { color: var(--gruen); text-shadow: 0 0 24px rgba(0,230,118,0.4); }
.v-word.SELL { color: var(--rot);   text-shadow: 0 0 24px rgba(255,64,96,0.4); }
.v-word.HOLD { color: var(--cyan);  text-shadow: 0 0 20px var(--glow); }
.v-word.IDLE { color: var(--dim);   font-size: 12px; letter-spacing: 0.15em; font-family: 'JetBrains Mono', monospace; }
.v-time { font-family: 'JetBrains Mono', monospace; font-size: 7px; color: var(--dim); letter-spacing: 0.08em; }

.conf-block { width: 100%; }
.conf-hdr { display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 8px; color: var(--dim); margin-bottom: 4px; }
.conf-track { height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.conf-fill  { height: 100%; width: 0%; border-radius: 2px; transition: width 1.2s cubic-bezier(0.22,1,0.36,1); }
.conf-fill.BUY  { background: var(--gruen); }
.conf-fill.SELL { background: var(--rot); }
.conf-fill.HOLD { background: var(--cyan); }

/* ML SCORE BAR */
.score-bar-wrap { width: 100%; }
.score-bar-lbl { font-family: 'JetBrains Mono', monospace; font-size: 8px; color: var(--dim); margin-bottom: 4px; display: flex; justify-content: space-between; }
.score-track { height: 6px; background: var(--border); border-radius: 3px; position: relative; overflow: hidden; }
.score-fill  { position: absolute; top: 0; height: 100%; border-radius: 3px; transition: all 0.9s cubic-bezier(0.22,1,0.36,1); }
.score-center { position: absolute; left: 50%; top: 0; width: 1px; height: 100%; background: rgba(255,255,255,0.15); }

/* SL/TP card */
.sltp-card { width: 100%; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; background: var(--bg); }
.sltp-hdr  { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.sltp-col  { padding: 8px 6px; text-align: center; border-right: 1px solid var(--border); }
.sltp-col:last-child { border-right: none; }
.sltp-lbl  { font-family: 'JetBrains Mono', monospace; font-size: 7px; letter-spacing: 0.08em; margin-bottom: 4px; }
.sltp-lbl.e { color: var(--cyan); }
.sltp-lbl.s { color: rgba(255,64,96,0.7); }
.sltp-lbl.t { color: rgba(0,230,118,0.7); }
.sltp-val  { font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700; }
.sltp-val.e { color: var(--cyan); }
.sltp-val.s { color: var(--rot); }
.sltp-val.t { color: var(--gruen); }
.sltp-pts  { font-size: 8px; margin-top: 2px; font-family: 'JetBrains Mono', monospace; }
.sltp-pts.s { color: rgba(255,64,96,0.5); }
.sltp-pts.t { color: rgba(0,230,118,0.5); }
.rr-wrap   { padding: 6px 10px; }
.rr-lbl    { display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 8px; color: var(--dim); margin-bottom: 4px; }
.rr-lbl .rr { color: var(--cyan); }
.rr-track  { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; display: flex; }
.rr-risk   { background: rgba(255,64,96,0.6); height: 100%; transition: width 0.8s; }
.rr-reward { background: rgba(0,230,118,0.6); height: 100%; transition: width 0.8s; }
.sltp-foot { display: flex; justify-content: space-between; padding: 5px 10px; font-family: 'JetBrains Mono', monospace; font-size: 8px; color: var(--dim); border-top: 1px solid var(--border); background: rgba(0,0,0,0.2); }

/* SIGNAL BARS */
.sig-item { padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.sig-item:last-child { border-bottom: none; }
.sig-top { display: flex; align-items: center; gap: 6px; margin-bottom: 3px; font-size: 11px; }
.sig-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.sig-dot.bull { background: var(--gruen); }
.sig-dot.bear { background: var(--rot); }
.sig-dot.neut { background: var(--dim); }
.sig-name { flex: 1; color: var(--text); font-weight: 600; }
.sig-val  { font-family: 'JetBrains Mono', monospace; font-size: 9px; }
.sig-val.bull { color: var(--gruen); }
.sig-val.bear { color: var(--rot); }
.sig-val.neut { color: var(--dim); }
.sig-wt   { font-family: 'JetBrains Mono', monospace; font-size: 8px; color: var(--dim); }
.sig-bar-track { height: 2px; background: var(--border); border-radius: 1px; overflow: hidden; }
.sig-bar-fill  { height: 100%; border-radius: 1px; transition: width 0.7s; }
.sig-bar-fill.bull { background: rgba(0,230,118,0.5); }
.sig-bar-fill.bear { background: rgba(255,64,96,0.5); }
.sig-bar-fill.neut { background: rgba(255,255,255,0.15); }

/* REASONING */
.reasoning { font-size: 11px; line-height: 1.75; color: var(--text); }
.blink { display: inline-block; width: 7px; height: 11px; background: rgba(0,245,212,0.4); animation: blink 1s steps(1) infinite; vertical-align: middle; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* HISTORY */
.hist-row { display: flex; align-items: center; gap: 5px; padding: 4px 0; font-family: 'JetBrains Mono', monospace; font-size: 8px; color: var(--dim); border-bottom: 1px solid rgba(255,255,255,0.03); }
.hist-row:last-child { border-bottom: none; }
.hist-badge { padding: 2px 6px; border-radius: 3px; font-size: 8px; font-weight: 700; letter-spacing: 0.08em; }
.hist-badge.BUY  { background: rgba(0,230,118,0.1); color: var(--gruen); border: 1px solid rgba(0,230,118,0.2); }
.hist-badge.SELL { background: rgba(255,64,96,0.1);  color: var(--rot);   border: 1px solid rgba(255,64,96,0.2); }
.hist-badge.HOLD { background: var(--cyan-dim);       color: var(--cyan);  border: 1px solid var(--cyan-lo); }
.hist-time { margin-left: auto; }
.hist-pnl.pos { color: var(--gruen); }
.hist-pnl.neg { color: var(--rot); }

/* SCAN BUTTON */
.scan-btn {
  display: block;
  margin: 10px 12px;
  padding: 14px;
  background: var(--cyan);
  color: #04060d;
  border: none;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  width: calc(100% - 24px);
  box-shadow: 0 0 24px rgba(0,245,212,0.25);
}
.scan-btn:hover:not(:disabled) {
  background: #04060d;
  color: var(--cyan);
  box-shadow: 0 0 40px rgba(0,245,212,0.4), inset 0 0 0 1px var(--cyan);
}
.scan-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.scan-btn.running {
  background: #04060d;
  color: var(--cyan);
  animation: scanPulse 0.7s infinite alternate;
  box-shadow: inset 0 0 0 1px var(--cyan);
}
@keyframes scanPulse {
  from { box-shadow: 0 0 8px var(--glow), inset 0 0 0 1px var(--cyan); }
  to   { box-shadow: 0 0 28px rgba(0,245,212,0.35), inset 0 0 0 1px var(--cyan); }
}

.disc { padding: 6px 12px 10px; font-family: 'JetBrains Mono', monospace; font-size: 7px; color: var(--dim); line-height: 1.6; border-top: 1px solid var(--border); letter-spacing: 0.04em; }

/* ── ANALYTICS TAB ──────────────────────────────────── */
.analytics-tab { flex: 1; min-height: 0; display: flex; flex-direction: column; padding: 8px; gap: 6px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.analytics-row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; flex-shrink: 0; }

.stat-card { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; transition: border-color 0.2s; }
.stat-card:hover { border-color: rgba(0,245,212,0.2); }
.stat-card-lbl { font-family: 'JetBrains Mono', monospace; font-size: 7px; letter-spacing: 0.14em; color: var(--dim); margin-bottom: 5px; }
.stat-val { font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 700; line-height: 1; }
.stat-val.pos { color: var(--gruen); }
.stat-val.neg { color: var(--rot); }
.stat-val.neu { color: var(--cyan); }
.stat-sub { font-size: 9px; color: var(--dim); margin-top: 3px; }

.equity-box { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; flex-shrink: 0; height: 120px; }
.feat-box   { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; flex-shrink: 0; }
.mtf-box    { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; flex-shrink: 0; }

.feat-row { display: flex; align-items: center; gap: 8px; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 11px; }
.feat-row:last-child { border-bottom: none; }
.feat-name { flex: 1; color: var(--text); font-family: 'JetBrains Mono', monospace; font-size: 9px; }
.feat-bar-track { width: 60px; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.feat-bar-fill  { height: 100%; border-radius: 2px; background: var(--cyan); transition: width 0.8s; }
.feat-pct { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--cyan); width: 28px; text-align: right; }

.mtf-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.mtf-row:last-child { border-bottom: none; }
.mtf-tf   { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--dim); width: 28px; flex-shrink: 0; }
.mtf-bias { font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 700; width: 38px; }
.mtf-bias.bull { color: var(--gruen); }
.mtf-bias.bear { color: var(--rot); }
.mtf-bias.neut { color: var(--dim); }
.mtf-bar-track { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; position: relative; }
.mtf-bar-bull  { position: absolute; left: 50%; top: 0; height: 100%; background: var(--gruen); border-radius: 0 2px 2px 0; transition: width 0.8s; }
.mtf-bar-bear  { position: absolute; right: 50%; top: 0; height: 100%; background: var(--rot); border-radius: 2px 0 0 2px; transition: width 0.8s; }
.mtf-score { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--dim); width: 24px; text-align: right; }

#clock { font-family: 'JetBrains Mono', monospace; font-size: 8px; color: var(--dim); }

/* ── SCROLLBAR ──────────────────────────────────────── */
.right::-webkit-scrollbar,
.analytics-tab::-webkit-scrollbar { width: 3px; }
.right::-webkit-scrollbar-track,
.analytics-tab::-webkit-scrollbar-track { background: transparent; }
.right::-webkit-scrollbar-thumb,
.analytics-tab::-webkit-scrollbar-thumb { background: rgba(0,245,212,0.2); border-radius: 2px; }

/* ── MOBILE ─────────────────────────────────────────── */
@media (max-width: 480px) {
  header { padding: 6px 8px; gap: 5px; }
  .logo  { font-size: 15px; }
  .chart-tab { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .left  { border-right: none; border-bottom: 1px solid var(--border); }
  .analytics-row { grid-template-columns: 1fr 1fr; }
}
}


#fw-section-featured-collection-9a68f4f2-bf7e-4c9e-9397-f6b33c504818 {

/* =====================================================
   TRADIWAVE — ALL PRODUCTS PAGE CSS
   Farben: Cyan #00f5d4 · Dark Navy · Lila #7c4dff
   ===================================================== */

/* ── SECTION HINTERGRUND ──────────────────────────────────── */
.featured-collection {
    background:
        radial-gradient(ellipse 60% 40% at 15% 0%,   rgba(0, 245, 212, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 85% 5%,   rgba(124, 77, 255, 0.08) 0%, transparent 65%),
        radial-gradient(ellipse 55% 40% at 90% 100%,  rgba(0, 245, 212, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 45% 35% at 10% 95%,  rgba(124, 77, 255, 0.06) 0%, transparent 60%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(0, 245, 212, 0.015) 40px,
            rgba(0, 245, 212, 0.015) 41px
        ),
        #04060d !important;
    color: #e8edf5 !important;
    position: relative !important;
}

/* Fade oben */
.featured-collection::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important;
    height: 40px !important;
    background: linear-gradient(to bottom, #04060d 0%, transparent 100%) !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

/* Fade unten */
.featured-collection::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important; left: 0 !important;
    width: 100% !important;
    height: 80px !important;
    background: linear-gradient(to top, #04060d 0%, transparent 100%) !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

/* ── SECTION TITEL ────────────────────────────────────────── */
.featured-collection .section-header__heading {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2.2rem, 4vw, 3.2rem) !important;
    font-weight: 400 !important;
    letter-spacing: 0.03em !important;
    line-height: 1 !important;
    background: linear-gradient(45deg, #ffffff, #00f5d4, #7c4dff) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: titleShimmer 3s ease-in-out infinite !important;
    margin-bottom: 20px !important;
}

/* Section Header + Grid über Fade */
.featured-collection .section-header,
.featured-collection .collection__grid {
    position: relative !important;
    z-index: 10 !important;
}

.featured-collection .section-header {
    padding-top: 50px !important;
}

/* ── GRID LAYOUT ──────────────────────────────────────────── */
.featured-collection .collection__grid .grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: center !important;
}

.featured-collection .grid__column {
    flex: 0 0 calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    width: calc(100% - 20px) !important;
    margin: 0 !important;
}

@media (min-width: 1024px) {
    .featured-collection .grid__column {
        flex: 0 0 calc(33.333% - 20px) !important;
        max-width: calc(33.333% - 20px) !important;
        width: calc(33.333% - 20px) !important;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .featured-collection .grid__column {
        flex: 0 0 calc(50% - 15px) !important;
        max-width: calc(50% - 15px) !important;
        width: calc(50% - 15px) !important;
    }
    .featured-collection .collection__grid .grid {
        gap: 15px !important;
    }
}

/* ── PRODUCT TILE ─────────────────────────────────────────── */
.featured-collection .product-tile {
    background: linear-gradient(145deg, #0c1322, #111928) !important;
    border: 1px solid rgba(0, 245, 212, 0.1) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1) !important;
    backdrop-filter: blur(10px) !important;
    position: relative !important;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 245, 212, 0.04) inset !important;
    width: 100% !important;
    height: 100% !important;
}

.featured-collection .product-tile:hover {
    transform: translateY(-10px) scale(1.015) !important;
    border-color: rgba(0, 245, 212, 0.35) !important;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 245, 212, 0.1),
        0 0 0 1px rgba(0, 245, 212, 0.15) inset !important;
}

/* ── IMAGE CONTAINER ──────────────────────────────────────── */
.featured-collection .tile__image {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 16px 16px 0 0 !important;
    background: rgba(12, 19, 34, 0.5) !important;
}

.featured-collection .tile__image .image,
.featured-collection .tile__image .image--background-color,
.featured-collection .tile__image .image__object {
    border-radius: 16px 16px 0 0 !important;
    overflow: hidden !important;
}

.featured-collection .tile__image img {
    border-radius: 16px 16px 0 0 !important;
    filter: drop-shadow(0 0 16px rgba(0, 245, 212, 0.25)) !important;
    transition: all 0.35s ease !important;
    width: 100% !important;
    height: auto !important;
}

.featured-collection .product-tile:hover .tile__image img {
    filter: drop-shadow(0 0 28px rgba(0, 245, 212, 0.55)) !important;
    transform: scale(1.04) !important;
    animation: iconPulse 2s infinite !important;
}

/* ── TILE DESCRIPTION ─────────────────────────────────────── */
.featured-collection .tile__description {
    padding: 20px !important;
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(5px) !important;
    position: relative !important;
}

.featured-collection .tile__heading {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em !important;
    background: linear-gradient(45deg, #ffffff, #00f5d4, #7c4dff) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: textShimmer 3s ease-in-out infinite !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
}

/* ── PRICES ───────────────────────────────────────────────── */
.featured-collection .tile__prices {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 10px !important;
}

.featured-collection .tile__price--original {
    background: #00f5d4 !important;
    color: #04060d !important;
    padding: 8px 18px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.25) !important;
    transition: all 0.25s ease !important;
    border: none !important;
    display: inline-block !important;
}

.featured-collection .product-tile:hover .tile__price--original {
    transform: scale(1.04) !important;
    box-shadow: 0 0 32px rgba(0, 245, 212, 0.5) !important;
}

/* ── SOLD OUT BADGE ───────────────────────────────────────── */
.featured-collection .badge--sold-out,
.featured-collection [class*="sold-out"],
.featured-collection .product-tile .sold-out {
    background: rgba(255, 64, 96, 0.12) !important;
    border: 1px solid rgba(255, 64, 96, 0.4) !important;
    color: #ff4060 !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}

/* ── LIVE TRADING BADGE ───────────────────────────────────── */
.featured-collection .tile__description::after {
    content: '⚡ LIVE TRADING';
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.35);
    color: #00e676;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: 'JetBrains Mono', monospace;
    animation: puls 2s infinite;
    z-index: 10;
}

/* ── TILE LINK ────────────────────────────────────────────── */
.featured-collection .tile {
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
}

/* ── VIEW ALL BUTTON ──────────────────────────────────────── */
.featured-collection .section-header__cta .button,
.featured-collection .collection__cta .button {
    background: #00f5d4 !important;
    border: none !important;
    color: #04060d !important;
    padding: 12px 28px !important;
    border-radius: 6px !important;
    transition: all 0.25s ease !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    box-shadow: 0 0 24px rgba(0, 245, 212, 0.3) !important;
}

.featured-collection .section-header__cta .button:hover,
.featured-collection .collection__cta .button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 0 40px rgba(0, 245, 212, 0.55) !important;
    background: #1ffcde !important;
}

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 480px) {
    .featured-collection .container.wrapper {
        padding-left: 8px !important;
        padding-right: 8px !important;
        max-width: 100% !important;
    }
    .featured-collection .grid__column {
        flex: 0 0 96% !important;
        max-width: 96% !important;
        width: 96% !important;
    }
    .featured-collection .product-tile       { min-height: 450px !important; }
    .featured-collection .tile__image        { min-height: 280px !important; }
    .featured-collection .tile__image .image { height: 280px !important; }
    .featured-collection .tile__image img    { height: 100% !important; object-fit: cover !important; }
    .featured-collection .tile__description  { padding: 25px 20px !important; text-align: center !important; }
    .featured-collection .tile__heading      { font-size: 1.6rem !important; text-align: center !important; margin-bottom: 15px !important; }
    .featured-collection .tile__prices       { justify-content: center !important; }
    .featured-collection .tile__price--original { font-size: 1.2rem !important; padding: 10px 20px !important; }
    .featured-collection .product-tile:hover { transform: translateY(-6px) scale(1.01) !important; }
    .featured-collection .tile__description::after { font-size: 8px !important; padding: 2px 5px !important; }
}

/* ── ANIMATIONEN ──────────────────────────────────────────── */
@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}
@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1.04); }
    50%       { transform: scale(1.08); }
}
@keyframes puls {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.3); }
    50%       { box-shadow: 0 0 0 4px rgba(0, 245, 212, 0); }
}
}

#fw-section-custom-html-c0e545a4-b7e8-479d-82ea-1e620a1a58d9 {

/* =====================================================
   TRADIWAVE — LIVE PERFORMANCE PAGE CSS
   Farben: Cyan #00f5d4 · Dark Navy · Lila #7c4dff
   ===================================================== */

:root {
    --gruen:       #00e676;
    --rot:         #ff4060;
    --cyan:        #00f5d4;
    --cyan-dim:    rgba(0, 245, 212, 0.12);
    --lila:        #7c4dff;
    --lila2:       #a78bfa;
    --hintergrund: #04060d;
    --karte:       #0c1322;
    --karte2:      #111928;
    --rahmen:      rgba(255, 255, 255, 0.07);
    --text:        #e8edf5;
    --gedaempft:   rgba(255, 255, 255, 0.38);
}

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

body {
    font-family: 'DM Sans', 'Syne', sans-serif;
    background: transparent;
    color: var(--text);
    min-height: 100vh;
}

/* ── SEITEN-WRAPPER ───────────────────────────────────────── */
.seite {
    position: relative;
    padding: 60px 24px 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 0% 0%,   rgba(124, 77, 255, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 30%, rgba(0, 245, 212, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 80% 100%, rgba(124, 77, 255, 0.06) 0%, transparent 60%),
        repeating-linear-gradient(
            -45deg,
            transparent, transparent 40px,
            rgba(0, 245, 212, 0.012) 40px,
            rgba(0, 245, 212, 0.012) 41px
        ),
        #04060d;
}

/* Animierte Glow-Blobs */
.seite::before {
    content: '';
    position: fixed;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: blob1 12s ease-in-out infinite alternate;
}

.seite::after {
    content: '';
    position: fixed;
    bottom: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: blob2 15s ease-in-out infinite alternate;
}

@keyframes blob1 { from { transform: translate(0,0) scale(1); } to { transform: translate(80px,60px) scale(1.2); } }
@keyframes blob2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-60px,-80px) scale(1.15); } }

/* ── SEITEN-KOPF ──────────────────────────────────────────── */
.seiten-kopf {
    max-width: 1200px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.06) 0%, rgba(124, 77, 255, 0.05) 100%);
    border: 1px solid rgba(0, 245, 212, 0.15);
    border-radius: 16px;
    padding: 36px 40px;
    overflow: hidden;
}

/* Cyan Shimmer-Linie oben */
.seiten-kopf::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00f5d4, rgba(124, 77, 255, 0.8), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

/* Glow Deko rechts */
.seiten-kopf::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
}

.kopf-inhalt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.kopf-links { position: relative; z-index: 2; }

.kopf-augenbraue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gruen);
    margin-bottom: 12px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.22);
    padding: 5px 12px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
}

.live-punkt {
    width: 7px; height: 7px;
    background: var(--gruen);
    border-radius: 50%;
    animation: livePuls 1.8s ease-in-out infinite;
}

@keyframes livePuls {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.6); }
    50%       { box-shadow: 0 0 0 7px rgba(0, 230, 118, 0); }
}

.kopf-titel {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 8px;
}

.kopf-titel span {
    color: var(--cyan);
    text-shadow: 0 0 30px rgba(0, 245, 212, 0.4);
}

.kopf-untertitel {
    font-size: 0.9rem;
    color: var(--gedaempft);
    font-weight: 400;
}

.kopf-rechts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.kopf-abzeichen {
    background: rgba(0, 245, 212, 0.08);
    border: 1px solid rgba(0, 245, 212, 0.22);
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 0.75rem;
    color: var(--cyan);
    font-weight: 700;
    letter-spacing: 0.06em;
    font-family: 'JetBrains Mono', monospace;
    white-space: nowrap;
}

.kopf-abzeichen.gruen {
    background: rgba(0, 230, 118, 0.08);
    border-color: rgba(0, 230, 118, 0.22);
    color: var(--gruen);
}

/* ── LADE-BEREICH ─────────────────────────────────────────── */
.lade-bereich { text-align: center; padding: 80px 20px; position: relative; z-index: 2; }

.lade-kreisel {
    width: 36px; height: 36px;
    border: 2px solid rgba(0, 245, 212, 0.12);
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: drehen 0.8s linear infinite;
    margin: 0 auto 14px;
}

@keyframes drehen { to { transform: rotate(360deg); } }
.lade-bereich p { color: var(--gedaempft); font-size: 0.85rem; font-family: 'JetBrains Mono', monospace; }

/* ── EA-RASTER ────────────────────────────────────────────── */
.ea-raster {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}

@media (min-width: 700px) { .ea-raster { grid-template-columns: repeat(2, 1fr); } }

/* ── EA-KARTE ─────────────────────────────────────────────── */
.ea-karte {
    background: var(--karte);
    border-radius: 16px;
    border: 1px solid var(--rahmen);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.ea-karte:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 245, 212, 0.06);
    border-color: rgba(0, 245, 212, 0.2);
}

.ea-karte.aktiv {
    border-color: rgba(0, 245, 212, 0.3);
    box-shadow: 0 0 0 1px rgba(0, 245, 212, 0.1), 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* ── EA-KOPF ──────────────────────────────────────────────── */
.ea-kopf {
    padding: 22px 24px 18px;
    position: relative;
    overflow: hidden;
}

.ea-kopf::after {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.ea-kopf-oben {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.ea-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
}

.ea-live-pille {
    display: flex; align-items: center; gap: 5px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.22);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-family: 'JetBrains Mono', monospace;
    color: var(--gruen);
}

.ea-live-punkt {
    width: 6px; height: 6px;
    background: var(--gruen);
    border-radius: 50%;
    animation: livePuls 1.8s ease-in-out infinite;
}

.zeige-trades-btn {
    position: relative; z-index: 2;
    background: rgba(0, 245, 212, 0.06);
    border: 1px solid rgba(0, 245, 212, 0.2);
    color: var(--cyan);
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.22s;
    font-family: 'JetBrains Mono', monospace;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.04em;
}

.zeige-trades-btn:hover  {
    background: rgba(0, 245, 212, 0.12);
    border-color: rgba(0, 245, 212, 0.4);
    box-shadow: 0 0 14px rgba(0, 245, 212, 0.15);
    transform: translateY(-1px);
}

.zeige-trades-btn.aktiv  {
    background: rgba(0, 245, 212, 0.15);
    border-color: rgba(0, 245, 212, 0.5);
}

/* ── EA-KÖRPER ────────────────────────────────────────────── */
.ea-koerper { padding: 20px 24px 24px; }

/* ── GEWINN-REIHE ─────────────────────────────────────────── */
.gewinn-reihe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--rahmen);
    border-radius: 10px;
    margin-bottom: 16px;
}

.gewinn-beschriftung {
    font-size: 0.65rem;
    color: var(--gedaempft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    font-family: 'JetBrains Mono', monospace;
}

.gewinn-betrag {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--gruen);
    line-height: 1;
}

.gewinn-betrag.negativ { color: var(--rot); }

/* ── OFFEN-ABZEICHEN ──────────────────────────────────────── */
.offen-abzeichen {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.22);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gruen);
    font-family: 'JetBrains Mono', monospace;
    animation: schwebePuls 2.5s ease-in-out infinite;
}

.offen-abzeichen.verlust {
    background: rgba(255, 64, 96, 0.08);
    border-color: rgba(255, 64, 96, 0.22);
    color: var(--rot);
    animation: none;
}

@keyframes schwebePuls { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ── KENNZAHLEN-REIHE ─────────────────────────────────────── */
.kennzahlen-reihe {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 14px;
}

/* ── WIN RATE KREIS ───────────────────────────────────────── */
.kreis-umhuellung { width: 96px; height: 96px; flex-shrink: 0; }

.kreis-hintergrund {
    width: 100%; height: 100%;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}

.kreis-hintergrund::before {
    content: '';
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: var(--karte);
}

.kreis-inhalt {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative; z-index: 2;
}

.gewinnrate-zahl {
    font-size: 1.35rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyan);
    line-height: 1;
}

.gewinnrate-bezeichnung {
    font-size: 0.56rem;
    color: var(--gedaempft);
    font-weight: 600;
    letter-spacing: 0.06em;
    font-family: 'JetBrains Mono', monospace;
}

/* ── MINI-STATISTIKEN ─────────────────────────────────────── */
.mini-statistiken { display: flex; flex-direction: column; gap: 6px; }

.mini-statistik {
    display: flex; justify-content: space-between; align-items: center;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid var(--rahmen);
}

.mini-bezeichnung {
    font-size: 0.68rem;
    color: var(--gedaempft);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-family: 'JetBrains Mono', monospace;
}

.mini-wert {
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

/* ── STATISTIK-RASTER ─────────────────────────────────────── */
.statistik-raster {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.statistik-kachel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--rahmen);
    border-radius: 8px;
    padding: 10px 12px;
    transition: border-color 0.2s, background 0.2s;
}

.statistik-kachel:hover {
    border-color: rgba(0, 245, 212, 0.15);
    background: rgba(0, 245, 212, 0.03);
}

.statistik-kachel-bezeichnung {
    font-size: 0.6rem;
    color: var(--gedaempft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
    font-family: 'JetBrains Mono', monospace;
}

.statistik-kachel-wert {
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.positiv { color: var(--gruen); }
.negativ { color: var(--rot);   }
.neutral { color: var(--cyan);  }

/* ── KEINE-DATEN-KARTE ────────────────────────────────────── */
.keine-daten-karte {
    border: 1px dashed rgba(0, 245, 212, 0.15);
    border-radius: 10px;
    padding: 36px 20px;
    text-align: center;
}

.keine-daten-karte .symbol { font-size: 2.5rem; opacity: 0.18; margin-bottom: 10px; }
.keine-daten-karte p { color: var(--gedaempft); font-size: 0.85rem; }

/* ── TRADES-BEREICH ───────────────────────────────────────── */
.trades-bereich {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--karte);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0, 245, 212, 0.1);
    display: none;
    animation: heruntergleiten 0.3s ease;
    position: relative; z-index: 2;
    box-shadow: 0 0 40px rgba(0, 245, 212, 0.04);
}

.trades-bereich.sichtbar { display: block; }

@keyframes heruntergleiten {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.trades-kopf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rahmen);
}

.trades-titel {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--cyan);
}

.trades-anzahl {
    color: var(--gedaempft);
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
}

/* ── REITER ───────────────────────────────────────────────── */
.trades-reiter { display: flex; gap: 8px; margin-bottom: 18px; }

.trades-reiter-btn {
    padding: 6px 16px;
    border-radius: 5px;
    border: 1px solid var(--rahmen);
    background: transparent;
    color: var(--gedaempft);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
}

.trades-reiter-btn.aktiv {
    background: rgba(0, 245, 212, 0.1);
    color: var(--cyan);
    border-color: rgba(0, 245, 212, 0.35);
}

.trades-reiter-btn:hover:not(.aktiv) {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.65);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ── TRADE-EINTRAG ────────────────────────────────────────── */
.trade-eintrag {
    background: rgba(255, 255, 255, 0.02);
    padding: 12px 16px;
    margin-bottom: 6px;
    border-radius: 8px;
    border: 1px solid var(--rahmen);
    border-left: 2px solid rgba(0, 245, 212, 0.3);
    transition: all 0.18s;
}

.trade-eintrag:hover {
    background: rgba(0, 245, 212, 0.03);
    transform: translateX(3px);
    border-left-color: var(--cyan);
}

.trade-eintrag.ist-offen {
    border-left-color: var(--gruen);
    background: rgba(0, 230, 118, 0.03);
}

.trade-kopf-reihe {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 5px;
    flex-wrap: wrap; gap: 6px;
}

.trade-symbol {
    font-size: 0.92rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: #fff;
}

.trade-typ {
    font-size: 0.68rem;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.06em;
}

.trade-typ.kauf    { background: rgba(0, 230, 118, 0.1); color: var(--gruen); }
.trade-typ.verkauf { background: rgba(255, 64, 96, 0.1);  color: var(--rot); }

.trade-gewinn {
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.trade-details {
    color: var(--gedaempft);
    font-size: 0.73rem;
    font-family: 'JetBrains Mono', monospace;
}

/* ── SEITENNAVIGATION ─────────────────────────────────────── */
.seitennavigation {
    display: flex; justify-content: center;
    align-items: center; gap: 6px;
    margin-top: 20px; flex-wrap: wrap;
}

.seiten-btn {
    background: rgba(0, 245, 212, 0.06);
    border: 1px solid rgba(0, 245, 212, 0.15);
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'JetBrains Mono', monospace;
}

.seiten-btn:hover    { background: rgba(0, 245, 212, 0.12); border-color: rgba(0, 245, 212, 0.35); }
.seiten-btn.aktiv    { background: var(--cyan); border-color: var(--cyan); color: #04060d; font-weight: 700; }
.seiten-btn:disabled { opacity: 0.2; cursor: not-allowed; }

/* ── FEHLER / LEER-ZUSTAND ────────────────────────────────── */
.fehler-meldung {
    background: rgba(255, 64, 96, 0.06);
    border: 1px solid rgba(255, 64, 96, 0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: var(--rot);
    font-family: 'JetBrains Mono', monospace;
}

.leer-zustand { text-align: center; padding: 60px 20px; }
.leer-zustand .symbol { font-size: 3rem; opacity: 0.12; margin-bottom: 16px; }
.leer-zustand h2      { font-size: 1.2rem; margin-bottom: 8px; font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; }
.leer-zustand p       { color: var(--gedaempft); font-size: 0.85rem; }

/* ── EINBLENDEN ANIMATION ─────────────────────────────────── */
.einblenden { animation: einblendAnimation 0.5s ease both; }
.einblenden:nth-child(1) { animation-delay: 0.05s; }
.einblenden:nth-child(2) { animation-delay: 0.15s; }

@keyframes einblendAnimation {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 480px) {
    .seite            { padding: 20px 14px 50px; }
    .seiten-kopf      { margin-bottom: 24px; padding: 22px 18px; border-radius: 12px; }
    .kopf-inhalt      { flex-direction: column; align-items: flex-start; }
    .kopf-titel       { font-size: 1.8rem; }
    .kopf-rechts      { flex-direction: row; align-items: flex-start; }
    .gewinn-betrag    { font-size: 1.6rem; }
    .statistik-raster { grid-template-columns: 1fr 1fr; }
    .trades-bereich   { padding: 16px; }
    .ea-karte         { border-radius: 12px; }
}
}



#fw-section-featured-collection-ea2b934b-c19d-45b3-ac91-8c2889108c25 {

/* =====================================================
   TRADIWAVE — FEATURED COLLECTION CSS
   ===================================================== */

/* ── SECTION HINTERGRUND — Cyber Glow Aurora ─────────────── */
.featured-collection {
    background:
        radial-gradient(ellipse 60% 40% at 15% 0%,   rgba(0, 245, 212, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 85% 5%,   rgba(124, 77, 255, 0.08) 0%, transparent 65%),
        radial-gradient(ellipse 55% 40% at 90% 100%,  rgba(0, 245, 212, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 45% 35% at 10% 95%,  rgba(124, 77, 255, 0.06) 0%, transparent 60%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(0, 245, 212, 0.015) 40px,
            rgba(0, 245, 212, 0.015) 41px
        ),
        #04060d !important;
    color: #e8edf5 !important;
    position: relative !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

/* Fade oben — von #04060d zu transparent */
.featured-collection::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important;
    height: 40px !important;
    background: linear-gradient(to bottom,
        #04060d 0%,
        transparent 100%) !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

/* Fade unten — von transparent zu #04060d */
.featured-collection::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important; left: 0 !important;
    width: 100% !important;
    height: 80px !important;
    background: linear-gradient(to top,
        #04060d 0%,
        rgba(4, 6, 13, 0.6) 50%,
        transparent 100%) !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

/* ── SECTION TITEL — Bebas Neue wie der Rest der Seite ───── */
.featured-collection .section-header__heading {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2.2rem, 4vw, 3.2rem) !important;
    font-weight: 400 !important;
    letter-spacing: 0.03em !important;
    line-height: 1 !important;
    background: linear-gradient(45deg, #ffffff, #00f5d4, #7c4dff) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: titleShimmer 3s ease-in-out infinite !important;
    margin-bottom: 20px !important;
}

/* Section Header über dem Fade halten */
.featured-collection .section-header,
.featured-collection .collection__grid {
    position: relative !important;
    z-index: 10 !important;
}

.featured-collection .section-header {
    padding-top: 50px !important;
}

/* ── GRID LAYOUT ──────────────────────────────────────────── */
.featured-collection .collection__grid .grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: center !important;
}

.featured-collection .grid__column {
    flex: 0 0 calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    width: calc(100% - 20px) !important;
    margin: 0 !important;
}

@media (min-width: 1024px) {
    .featured-collection .grid__column {
        flex: 0 0 calc(33.333% - 20px) !important;
        max-width: calc(33.333% - 20px) !important;
        width: calc(33.333% - 20px) !important;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .featured-collection .grid__column {
        flex: 0 0 calc(50% - 15px) !important;
        max-width: calc(50% - 15px) !important;
        width: calc(50% - 15px) !important;
    }
    .featured-collection .collection__grid .grid {
        gap: 15px !important;
    }
}

/* ── PRODUCT TILE ─────────────────────────────────────────── */
.featured-collection .product-tile {
    background: linear-gradient(145deg, #0c1322, #111928) !important;
    border: 1px solid rgba(0, 245, 212, 0.1) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1) !important;
    backdrop-filter: blur(10px) !important;
    position: relative !important;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 245, 212, 0.04) inset !important;
    width: 100% !important;
    height: 100% !important;
}

.featured-collection .product-tile:hover {
    transform: translateY(-10px) scale(1.015) !important;
    border-color: rgba(0, 245, 212, 0.35) !important;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 245, 212, 0.1),
        0 0 0 1px rgba(0, 245, 212, 0.15) inset !important;
}

/* ── IMAGE CONTAINER ──────────────────────────────────────── */
.featured-collection .tile__image {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 16px 16px 0 0 !important;
    background: rgba(12, 19, 34, 0.5) !important;
}

.featured-collection .tile__image .image,
.featured-collection .tile__image .image--background-color,
.featured-collection .tile__image .image__object {
    border-radius: 16px 16px 0 0 !important;
    overflow: hidden !important;
}

.featured-collection .tile__image img {
    border-radius: 16px 16px 0 0 !important;
    filter: drop-shadow(0 0 16px rgba(0, 245, 212, 0.25)) !important;
    transition: all 0.35s ease !important;
    width: 100% !important;
    height: auto !important;
}

.featured-collection .product-tile:hover .tile__image img {
    filter: drop-shadow(0 0 28px rgba(0, 245, 212, 0.55)) !important;
    transform: scale(1.04) !important;
    animation: iconPulse 2s infinite !important;
}

/* ── TILE DESCRIPTION ─────────────────────────────────────── */
.featured-collection .tile__description {
    padding: 20px !important;
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(5px) !important;
    position: relative !important;
}

.featured-collection .tile__heading {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em !important;
    background: linear-gradient(45deg, #ffffff, #00f5d4, #7c4dff) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: textShimmer 3s ease-in-out infinite !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
}

/* ── PRICES ───────────────────────────────────────────────── */
.featured-collection .tile__prices {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 10px !important;
}

.featured-collection .tile__price--original {
    background: #00f5d4 !important;
    color: #04060d !important;
    padding: 8px 18px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.25) !important;
    transition: all 0.25s ease !important;
    border: none !important;
    display: inline-block !important;
}

.featured-collection .product-tile:hover .tile__price--original {
    transform: scale(1.04) !important;
    box-shadow: 0 0 32px rgba(0, 245, 212, 0.5) !important;
}

/* ── LIVE TRADING BADGE ───────────────────────────────────── */
.featured-collection .tile__description::after {
    content: '⚡ LIVE TRADING';
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.35);
    color: #00e676;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: 'JetBrains Mono', monospace;
    animation: puls 2s infinite;
    z-index: 10;
}

/* ── TILE LINK ────────────────────────────────────────────── */
.featured-collection .tile {
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
}

/* ── VIEW ALL BUTTON ──────────────────────────────────────── */
.featured-collection .section-header__cta .button,
.featured-collection .collection__cta .button {
    background: #00f5d4 !important;
    border: none !important;
    color: #04060d !important;
    padding: 12px 28px !important;
    border-radius: 6px !important;
    transition: all 0.25s ease !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    box-shadow: 0 0 24px rgba(0, 245, 212, 0.3) !important;
}

.featured-collection .section-header__cta .button:hover,
.featured-collection .collection__cta .button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 0 40px rgba(0, 245, 212, 0.55) !important;
    background: #1ffcde !important;
}

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 480px) {
    .featured-collection .container.wrapper {
        padding-left: 8px !important;
        padding-right: 8px !important;
        max-width: 100% !important;
    }
    .featured-collection .grid__column {
        flex: 0 0 96% !important;
        max-width: 96% !important;
        width: 96% !important;
    }
    .featured-collection .product-tile { min-height: 450px !important; }
    .featured-collection .tile__image { min-height: 280px !important; }
    .featured-collection .tile__image .image { height: 280px !important; }
    .featured-collection .tile__image img { height: 100% !important; object-fit: cover !important; }
    .featured-collection .tile__description { padding: 25px 20px !important; text-align: center !important; }
    .featured-collection .tile__heading { font-size: 1.6rem !important; text-align: center !important; margin-bottom: 15px !important; }
    .featured-collection .tile__prices { justify-content: center !important; }
    .featured-collection .tile__price--original { font-size: 1.2rem !important; padding: 10px 20px !important; }
    .featured-collection .product-tile:hover { transform: translateY(-6px) scale(1.01) !important; }
    .featured-collection .tile__description::after { font-size: 8px !important; padding: 2px 5px !important; }
}

/* ── ANIMATIONEN ──────────────────────────────────────────── */
@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}
@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1.04); }
    50%       { transform: scale(1.08); }
}
@keyframes puls {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.3); }
    50%       { box-shadow: 0 0 0 4px rgba(0, 245, 212, 0); }
}

@media (max-width: 640px) {
  .featured-collection {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .featured-collection .section-header {
    padding-top: 16px !important;
  }
}
}



#fw-section-custom-html-a8d0dace-ca07-49f4-8aff-190970a6c864 {

* { margin: 0; padding: 0; box-sizing: border-box; }
 
body { font-family: 'Arial', sans-serif; background: #0a0a0a; color: white; }
 
/* ── PERFORMANCE BANNER ─────────────────────────────────────── */
.performance-banner {
    background: linear-gradient(135deg, #0f0f23 0%, #1a0033 50%, #2d0052 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}
 
.performance-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(114,9,183,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(138,43,226,0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease infinite;
}
 
.performance-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}
 
.performance-content { padding: 20px; }
 
.performance-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #0a0a0a;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: badgePulse 2s infinite;
    box-shadow: 0 0 20px rgba(0,255,136,0.4);
}
 
.performance-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #e0c3fc 50%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}
 
.performance-subtitle {
    font-size: 1.3rem;
    color: #e0c3fc;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
 
.perf-stats-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}
 
.perf-stat-box {
    background: rgba(114,9,183,0.15);
    border: 1px solid rgba(114,9,183,0.4);
    border-radius: 15px;
    padding: 20px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
 
.perf-stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(114,9,183,0.8);
    box-shadow: 0 10px 30px rgba(114,9,183,0.3);
}
 
.perf-stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ff88;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(0,255,136,0.5);
}
 
.perf-stat-label { font-size: 0.9rem; color: #e0c3fc; opacity: 0.8; }
 
.cta-buttons { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
 
.primary-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(45deg, #7209b7, #a663cc);
    color: white; text-decoration: none; border-radius: 50px;
    font-size: 1.15rem; font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(114,9,183,0.5);
    position: relative; overflow: hidden;
}
 
.primary-cta::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.primary-cta:hover::before { left: 100%; }
.primary-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(114,9,183,0.7); }
 
.secondary-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 40px; background: transparent; color: white;
    text-decoration: none; border: 2px solid rgba(114,9,183,0.8);
    border-radius: 50px; font-size: 1.15rem; font-weight: 700;
    transition: all 0.3s ease;
}
.secondary-cta:hover { background: rgba(114,9,183,0.2); border-color: #7209b7; transform: translateY(-3px); }
 
.perf-floating-icons { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; }
.perf-floating-icon  { position: absolute; font-size: 30px; opacity: 0.2; animation: floatIcon 6s ease-in-out infinite; }
.perf-floating-icon:nth-child(1) { top: 10%;    left: 5%;    animation-delay: 0s; }
.perf-floating-icon:nth-child(2) { top: 60%;    left: 10%;   animation-delay: 1s; }
.perf-floating-icon:nth-child(3) { top: 30%;    right: 5%;   animation-delay: 2s; }
.perf-floating-icon:nth-child(4) { bottom: 20%; right: 10%;  animation-delay: 3s; }
 
/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-it-works-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #533483 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}
 
.how-it-works-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 10; }
 
.section-header { text-align: center; margin-bottom: 60px; }
 
.section-title {
    font-size: 3rem; font-weight: 900;
    background: linear-gradient(45deg, #ffffff, #e0c3fc, #7209b7);
    background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite;
    margin-bottom: 15px;
}
 
.section-subtitle { font-size: 1.2rem; color: #e0c3fc; opacity: 0.9; max-width: 800px; margin: 0 auto; line-height: 1.6; }
 
.main-steps-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 80px; }
 
.main-step-card {
    background: linear-gradient(145deg, rgba(26,26,46,0.9), rgba(15,52,96,0.7));
    border: 1px solid rgba(114,9,183,0.3);
    border-radius: 20px; padding: 40px 30px; text-align: center;
    position: relative; backdrop-filter: blur(10px);
    transition: all 0.4s ease; overflow: hidden;
}
.main-step-card:hover { transform: translateY(-10px); border-color: rgba(114,9,183,0.8); box-shadow: 0 20px 40px rgba(114,9,183,0.4); }
 
.step-number {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    width: 50px; height: 50px;
    background: linear-gradient(45deg, #7209b7, #a663cc);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: bold; font-size: 1.2rem; color: white;
    box-shadow: 0 5px 15px rgba(114,9,183,0.4);
}
 
.step-icon { font-size: 4rem; margin: 20px 0; display: block; filter: drop-shadow(0 0 20px rgba(114,9,183,0.6)); animation: iconFloat 3s ease-in-out infinite; }
 
.step-title {
    font-size: 1.5rem; font-weight: bold; color: #ffffff; margin-bottom: 15px;
    background: linear-gradient(45deg, #ffffff, #e0c3fc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
 
.step-description { color: #e0c3fc; line-height: 1.6; font-size: 1rem; }
 
.features-divider { text-align: center; margin: 60px 0 50px; position: relative; }
.features-divider::before, .features-divider::after {
    content: ''; position: absolute; top: 50%; width: 30%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(114,9,183,0.5), transparent);
}
.features-divider::before { left: 0; }
.features-divider::after  { right: 0; }
 
.features-title {
    font-size: 2.2rem; font-weight: 900;
    background: linear-gradient(45deg, #00ff88, #7209b7, #e0c3fc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    display: inline-block; padding: 0 30px; position: relative;
}
 
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
 
.feature-card {
    background: linear-gradient(135deg, rgba(114,9,183,0.1), rgba(15,52,96,0.2));
    border: 2px solid rgba(114,9,183,0.3);
    border-radius: 20px; padding: 35px 30px;
    transition: all 0.3s ease; position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(114,9,183,0.1), transparent);
    transition: left 0.5s ease;
}
.feature-card:hover::before { left: 100%; }
.feature-card:hover { border-color: rgba(114,9,183,0.8); box-shadow: 0 10px 30px rgba(114,9,183,0.3); transform: translateY(-5px); }
 
.feature-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
 
.feature-icon-box {
    width: 60px; height: 60px;
    background: linear-gradient(45deg, #7209b7, #a663cc);
    border-radius: 15px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; box-shadow: 0 5px 15px rgba(114,9,183,0.4); flex-shrink: 0;
}
 
.feature-title-text { font-size: 1.4rem; font-weight: 800; color: #ffffff; line-height: 1.2; }
.feature-title-text .highlight { color: #00ff88; text-shadow: 0 0 10px rgba(0,255,136,0.5); }
 
.feature-description { color: #e0c3fc; line-height: 1.7; font-size: 1rem; margin-bottom: 15px; }
 
.feature-bullets { list-style: none; padding: 0; margin: 0; }
.feature-bullets li { color: #ffffff; padding: 8px 0 8px 30px; position: relative; font-size: 0.95rem; }
.feature-bullets li::before { content: '✓'; position: absolute; left: 0; color: #00ff88; font-weight: bold; font-size: 1.1rem; }
 
.lifetime-value-box {
    background: linear-gradient(135deg, rgba(0,255,136,0.1), rgba(114,9,183,0.1));
    border: 2px solid rgba(0,255,136,0.4);
    border-radius: 20px; padding: 40px; text-align: center; margin-bottom: 50px;
    position: relative; overflow: hidden;
}
 
.lifetime-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #0a0a0a; padding: 8px 20px; border-radius: 30px;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0,255,136,0.4);
}
 
.lifetime-title { font-size: 2rem; font-weight: 900; color: #ffffff; margin-bottom: 15px; }
.lifetime-description { font-size: 1.1rem; color: #e0c3fc; line-height: 1.6; max-width: 800px; margin: 0 auto; }
 
.cta-section { text-align: center; margin-top: 60px; }
 
.hiw-cta-button {
    display: inline-block; padding: 18px 50px;
    background: linear-gradient(45deg, #7209b7, #a663cc);
    color: white; text-decoration: none; border-radius: 50px;
    font-size: 1.2rem; font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(114,9,183,0.5);
}
.hiw-cta-button:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(114,9,183,0.7); }
 
/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes gradientShift  { 0%, 100% { opacity: 1; } 50% { opacity: 0.8; } }
@keyframes badgePulse     { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes titleGlow      { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.2); } }
@keyframes floatIcon      { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-20px) rotate(10deg); } }
@keyframes titleShimmer   { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes iconFloat      { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
 
/* ── GAP FIXES ──────────────────────────────────────────────── */
.featured-collection { margin-bottom: 0 !important; padding-bottom: 0 !important; }
#fw-section-custom-html-a8d0dace-ca07-49f4-8aff-190970a6c864 { margin-top: 0 !important; padding-top: 0 !important; margin-bottom: 0 !important; padding-bottom: 0 !important; }
#fw-section-newsletter-1751311311 { margin-top: 0 !important; padding-top: 0 !important; }
 
/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .main-steps-container { grid-template-columns: 1fr; gap: 30px; }
    .features-grid        { grid-template-columns: 1fr; }
}
 
@media (max-width: 768px) {
    .performance-banner   { padding: 60px 20px; }
    .performance-title    { font-size: 2.2rem; }
    .performance-subtitle { font-size: 1.1rem; }
    .perf-stats-grid      { flex-direction: column; align-items: center; }
    .cta-buttons          { flex-direction: column; }
    .primary-cta, .secondary-cta { width: 100%; justify-content: center; }
    .how-it-works-section { padding: 60px 20px; }
    .section-title        { font-size: 2rem; }
    .section-subtitle     { font-size: 1rem; }
    .main-step-card       { padding: 35px 25px; }
    .feature-card         { padding: 30px 20px; }
    .features-title       { font-size: 1.8rem; }
    .lifetime-value-box   { padding: 30px 20px; }
}

}
#fw-section-custom-html-5bd7cad4-5f19-4f24-90fa-c6c652a5fa00 {
--color-primary: #9A47FF;
--color-primary-rgb: 154, 71, 255;
--color-background: #16162d;
--color-background-rgb: 22, 22, 45;
--color-on-background: #FFFFFF;
--color-on-background-rgb: 255, 255, 255;
--color-on-primary: #FFFFFF;
--color-on-primary-rgb: 255, 255, 255;
--color-product-image-background: #16213e;
--color-background-brightness: 25;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #9A47FF;
--primary-btn-text: #FFFFFF;
--primary-btn-border-color: #FFFFFF;
--secondary-btn-bg: transparent;
--secondary-btn-text: #FFFFFF;
--secondary-btn-border-color: #FFFFFF;

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

    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    .hero-banner {
        position: relative;
        width: 100%;
        max-width: 100vw;
        height: 650px;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        padding: 40px 0;
    }

    .geometric-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.1;
        background-image: 
            radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.15) 0%, transparent 50%);
    }

    .content-wrapper {
        position: relative;
        z-index: 10;
        display: flex;
        align-items: center;
        max-width: 1200px;
        width: 100%;
        padding: 0 20px;
        gap: 4rem;
        overflow: hidden;
    }

    .text-content {
        flex: 1;
        text-align: center;
    }

    .main-title {
        font-size: 4rem;
        font-weight: 900;
        background: linear-gradient(45deg, #ffffff, #e0c3fc, #9bb5ff, #ffffff);
        background-size: 400% 400%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 3s ease-in-out infinite;
        margin-bottom: 1rem;
        text-align: center;
    }

    .subtitle {
        font-size: 1.5rem;
        color: #e0c3fc;
        margin-bottom: 2rem;
        font-weight: 300;
        text-align: center;
    }

    .cta-button {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 40px;
        background: linear-gradient(45deg, #7209b7, #a663cc);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(114, 9, 183, 0.4);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
        margin: 0 auto;
    }

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(114, 9, 183, 0.6);
        background: linear-gradient(45deg, #8f2cc8, #b574d3);
    }

    .cta-subtext {
        font-size: 0.75rem;
        font-weight: 400;
        opacity: 0.9;
        margin-top: 4px;
    }

    .trust-badges {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
    }

    .trust-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
    }

    .trust-icon {
        font-size: 1.2rem;
        color: #00ff88;
    }

    /* METATRADER CHART STYLING */
    .trading-chart {
        flex: 0 0 450px;
        width: 450px;
        height: 430px;
        opacity: 0.95;
    }

    .chart-container {
        position: relative;
        width: 100%;
        height: 100%;
        background: #1a1a2e;
        border-radius: 8px;
        border: 1px solid rgba(114, 9, 183, 0.3);
        backdrop-filter: blur(10px);
        padding: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        transition: box-shadow 0.6s ease;
    }

    .chart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(114, 9, 183, 0.2);
    }

    .chart-symbol {
        font-size: 14px;
        font-weight: bold;
        color: #e0c3fc;
        font-family: 'Courier New', monospace;
    }

    .chart-price {
        font-size: 16px;
        font-weight: bold;
        color: #00ff88;
        font-family: 'Courier New', monospace;
    }

    .chart-timeframe {
        font-size: 11px;
        color: rgba(224, 195, 252, 0.6);
        font-family: 'Courier New', monospace;
    }

    .mt-chart {
        position: relative;
        width: 100%;
        height: 260px;
        background: #0a0a15;
        border: 1px solid rgba(114, 9, 183, 0.2);
        border-radius: 4px 4px 0 0;
        margin-bottom: 0;
        padding-bottom: 0px;
    }

    .chart-canvas {
        width: 100%;
        height: 100%;
    }

    .trade-info {
        position: absolute;
        top: 10px;
        left: 10px;
        background: rgba(0, 0, 0, 0.7);
        padding: 6px 10px;
        border-radius: 4px;
        font-size: 11px;
        font-family: 'Courier New', monospace;
        color: #00ff88;
        border: 1px solid #00ff88;
        z-index: 10;
        transition: opacity 0.3s ease;
    }

    .stats-overlay {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 10px;
        padding: 12px 10px;
        background: #0a0a15;
        border: 1px solid rgba(114, 9, 183, 0.2);
        border-top: none;
        border-radius: 0 0 4px 4px;
        font-size: 11px;
        color: #e0c3fc;
        font-family: 'Courier New', monospace;
        margin-top: 2px;
    }

    .stat-item {
        flex: 1;
        text-align: center;
        background: rgba(26, 26, 46, 0.9);
        padding: 8px 10px;
        border-radius: 6px;
        border: 1px solid rgba(114, 9, 183, 0.4);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .stat-value {
        display: block;
        font-size: 14px;
        font-weight: bold;
        color: #a663cc;
        margin-bottom: 3px;
    }

    @keyframes gradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

    .floating-icons {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .floating-icon {
        position: absolute;
        font-size: 24px;
        opacity: 0;
        animation: float 6s infinite linear;
    }

    @keyframes float {
        0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
        10% { opacity: 0.1; }
        90% { opacity: 0.1; }
        100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
    }

    @media (max-width: 768px) {
        .hero-banner {
            height: auto;
            min-height: 700px;
            padding: 40px 15px;
            max-width: 100vw;
            overflow-x: hidden;
        }
        
        .content-wrapper {
            flex-direction: column;
            text-align: center;
            gap: 2rem;
            padding: 0 15px;
            max-width: 100%;
            overflow-x: hidden;
        }
        
        .text-content {
            order: 2;
            padding-top: 20px;
            width: 100%;
            max-width: 100%;
        }
        
        .trading-chart {
            order: 1;
            flex: none;
            width: calc(100% - 20px);
            max-width: 380px;
            height: 425px;
            margin: 20px auto 0;
        }
        
        .chart-container {
            height: 100%;
            width: 100%;
            padding: 12px;
        }
        
        .mt-chart {
            height: 295px;
            width: 100%;
        }
        
        .main-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            word-wrap: break-word;
        }
        
        .subtitle {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            padding: 0 10px;
        }

        .trust-badges {
            justify-content: center;
            margin-top: 1.5rem;
            gap: 1rem;
            max-width: 100%;
            width: 100%;
        }
        
        .trust-item {
            flex: 0 0 calc(50% - 0.5rem);
            max-width: calc(50% - 0.5rem);
            font-size: 0.85rem;
            justify-content: center;
        }
        
        .trust-item:last-child {
            flex: 0 0 100%;
            max-width: 300px;
            margin: 0 auto;
        }
        
        .stats-overlay {
            gap: 8px;
            padding: 8px 5px;
        }
        
        .stat-item {
            padding: 6px 5px;
            flex: 1;
        }
        
        .stat-value {
            font-size: 11px;
        }
        
        .stat-item span:not(.stat-value) {
            font-size: 9px;
        }
    }

    @media (max-width: 480px) {
        .hero-banner {
            padding: 30px 10px;
            min-height: 680px;
        }
        
        .content-wrapper {
            padding: 0 10px;
        }
        
        .trading-chart {
            width: calc(100% - 10px);
            max-width: 350px;
            height: 410px;
        }
        
        .chart-container {
            padding: 10px;
        }
        
        .mt-chart {
            height: 275px;
        }
        
        .main-title {
            font-size: 1.7rem;
            padding: 0 5px;
        }
        
        .subtitle {
            font-size: 0.95rem;
            padding: 0 10px;
        }
        
        .cta-button {
            padding: 12px 25px;
            font-size: 0.95rem;
        }
        
        .trust-badges {
            gap: 0.8rem;
            padding: 0 10px;
            width: 100%;
            justify-content: center;
        }
        
        .trust-item {
            font-size: 0.8rem;
            justify-content: center;
        }
        
        .trust-icon {
            font-size: 1rem;
        }
        
        .stats-overlay {
            gap: 6px;
            padding: 8px 4px;
        }
        
        .stat-item {
            padding: 5px 3px;
        }
        
        .stat-value {
            font-size: 10px;
        }
        
        .stat-item span:not(.stat-value) {
            font-size: 8px;
        }
        
        .chart-price {
            font-size: 14px;
        }
        
        .chart-symbol {
            font-size: 12px;
        }
        
        .chart-header {
            padding: 0 5px;
        }
    }
}
#fw-section-newsletter-1751311311 {
--color-primary: #9A47FF;
--color-primary-rgb: 154, 71, 255;
--color-background: #16162D;
--color-background-rgb: 22, 22, 45;
--color-on-background: #FFFFFF;
--color-on-background-rgb: 255, 255, 255;
--color-on-primary: #FFFFFF;
--color-on-primary-rgb: 255, 255, 255;
--color-product-image-background: #16213e;
--color-background-brightness: 25;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #9A47FF;
--primary-btn-text: #FFFFFF;
--primary-btn-border-color: #FFFFFF;
--secondary-btn-bg: transparent;
--secondary-btn-text: #FFFFFF;
--secondary-btn-border-color: #FFFFFF;
/* ===== NEWSLETTER SECTION ENHANCEMENT ===== */

/* Newsletter Container */
.newsletter {
    background: linear-gradient(135deg, #0f3460 0%, #533483 50%, #7209b7 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    border: none !important;
    padding: 80px 20px !important;
}

/* Floating Background Effects */
.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(114, 9, 183, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Newsletter Content */
.newsletter__content {
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
}

/* Newsletter Heading */
.newsletter__heading {
    font-size: 3rem !important;
    font-weight: 900 !important;
    background: linear-gradient(45deg, #ffffff, #e0c3fc, #9bb5ff, #ffffff) !important;
    background-size: 400% 400% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: newsletterGlow 3s ease-in-out infinite !important;
    margin-bottom: 20px !important;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

/* Add subtitle */
.newsletter__heading::after {
    content: 'Get exclusive trading insights and EA updates';
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: #e0c3fc;
    margin-top: 15px;
    opacity: 0.9;
    background: none;
    -webkit-text-fill-color: #e0c3fc;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none;
    animation: none;
}

/* Form Container */
.newsletter-form {
    max-width: 500px !important;
    margin: 0 auto !important;
    position: relative !important;
}

/* Input and Button Container */
.newsletter-form__input-button-container {
    display: flex !important;
    gap: 15px !important;
    align-items: flex-start !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border: 2px solid rgba(114, 9, 183, 0.4) !important;
    border-radius: 50px !important;
    padding: 5px !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
}

.newsletter-form__input-button-container:hover {
    border-color: rgba(114, 9, 183, 0.8) !important;
    box-shadow: 0 10px 30px rgba(114, 9, 183, 0.3) !important;
}

/* Input Field */
.newsletter-form__input {
    flex: 1 !important;
}

.input-field__input {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    padding: 15px 20px !important;
    outline: none !important;
    width: 100% !important;
}

.input-field__input::placeholder {
    color: #e0c3fc !important;
    opacity: 0.7 !important;
}

.input-field__input:focus {
    background: rgba(114, 9, 183, 0.1) !important;
    border-radius: 25px !important;
}

/* Subscribe Button */
.newsletter-form__button .button {
    background: linear-gradient(45deg, #7209b7, #a663cc) !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 15px 30px !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(114, 9, 183, 0.4) !important;
}

.newsletter-form__button .button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(114, 9, 183, 0.6) !important;
    background: linear-gradient(45deg, #8f2cc8, #b574d3) !important;
}

/* Success/Error Messages */
.alert--success {
    background: linear-gradient(45deg, #00ff88, #00cc6a) !important;
    color: white !important;
    border: none !important;
    border-radius: 15px !important;
    padding: 15px 20px !important;
    margin-top: 20px !important;
    font-weight: 600 !important;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3) !important;
}

.alert--error {
    background: linear-gradient(45deg, #ff4444, #ff6b6b) !important;
    color: white !important;
    border: none !important;
    border-radius: 15px !important;
    padding: 15px 20px !important;
    margin-top: 20px !important;
    font-weight: 600 !important;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3) !important;
}

/* Newsletter Animation */
@keyframes newsletterGlow {
    0%, 100% { 
        background-position: 0% 50%; 
        filter: drop-shadow(0 0 10px rgba(114, 9, 183, 0.3));
    }
    50% { 
        background-position: 100% 50%; 
        filter: drop-shadow(0 0 20px rgba(114, 9, 183, 0.6));
    }
}

/* Gap Fix für Newsletter */
.newsletter {
    margin-top: 0 !important;
}

/* How It Works/Features zu Newsletter Übergang */
.features-section + .fw-section .newsletter,
[id*="fw-section-custom-html"] + .fw-section .newsletter {
    margin-top: -20px !important;
    padding-top: 100px !important;
}

/* Newsletter Section selbst */
.fw-section:has(.newsletter) {
    margin-top: -15px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .newsletter__heading {
        font-size: 2.5rem !important;
    }
    
    .newsletter__heading::after {
        font-size: 1rem !important;
    }
    
    .newsletter-form__input-button-container {
        flex-direction: column !important;
        border-radius: 20px !important;
        padding: 10px !important;
        gap: 10px !important;
    }
    
    .newsletter-form__button .button {
        width: 100% !important;
        border-radius: 15px !important;
    }
    
    .newsletter {
        padding: 60px 20px !important;
    }
}
}

#fw-section-footer {

/* =====================================================
   TRADIWAVE — FOOTER CSS
   Angepasst an das neue Tradiwave Design
   Farben: Cyan #00f5d4 · Dark Navy · Lila #7c4dff
   ===================================================== */

/* ── FOOTER CONTAINER ─────────────────────────────────────── */
.page__footer {
    background:
        radial-gradient(ellipse 60% 50% at 0% 100%,  rgba(0, 245, 212, 0.05) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 100% 80%,  rgba(124, 77, 255, 0.06) 0%, transparent 60%),
        #04060d !important;
    border-top: 1px solid rgba(0, 245, 212, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* ── SHIMMER LINIE OBEN ───────────────────────────────────── */
.page__footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 245, 212, 0.2) 20%,
        #00f5d4 50%,
        rgba(0, 245, 212, 0.2) 80%,
        transparent 100%);
    animation: footerShimmer 4s ease-in-out infinite;
}

/* ── FOOTER CONTENT ───────────────────────────────────────── */
.page__footer .footer,
.page__footer .wrapper {
    position: relative !important;
    z-index: 10 !important;
}

.footer__inner {
    position: relative !important;
}

/* ── FOOTER TOP ───────────────────────────────────────────── */
.footer__top {
    padding-bottom: 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* ── MENU LINKS ───────────────────────────────────────────── */
.footer__list--menu .footer__menu-link {
    color: rgba(232, 237, 245, 0.65) !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    padding: 7px 14px !important;
    border-radius: 6px !important;
    display: inline-block !important;
    font-weight: 500 !important;
}

.footer__list--menu .footer__menu-link:hover {
    color: #00f5d4 !important;
    background: rgba(0, 245, 212, 0.08) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 245, 212, 0.1) !important;
}

/* ── CURRENCY SELECTOR ────────────────────────────────────── */
.footer__menu-link--icon {
    background: rgba(0, 245, 212, 0.06) !important;
    border: 1px solid rgba(0, 245, 212, 0.18) !important;
    border-radius: 6px !important;
    padding: 8px 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    color: rgba(232, 237, 245, 0.65) !important;
}

.footer__menu-link--icon:hover {
    background: rgba(0, 245, 212, 0.12) !important;
    border-color: rgba(0, 245, 212, 0.4) !important;
    color: #00f5d4 !important;
    transform: translateY(-1px) !important;
}

/* ── CURRENCY DROPDOWN ────────────────────────────────────── */
.footer__dropdown {
    background: #0c1322 !important;
    border: 1px solid rgba(0, 245, 212, 0.15) !important;
    border-radius: 8px !important;
    backdrop-filter: blur(10px) !important;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 245, 212, 0.05) !important;
    margin-top: 8px !important;
}

.footer__dropdown-inner {
    padding: 6px !important;
}

.footer__dropdown-link {
    color: rgba(232, 237, 245, 0.7) !important;
    text-decoration: none !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    display: block !important;
    transition: all 0.2s ease !important;
    font-size: 0.9rem !important;
}

.footer__dropdown-link:hover {
    background: rgba(0, 245, 212, 0.08) !important;
    color: #00f5d4 !important;
    transform: translateX(4px) !important;
}

/* ── FOOTER LIST ──────────────────────────────────────────── */
.footer__list-item {
    margin: 0 6px !important;
}

.footer__list {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 4px !important;
}

.footer__list--bottom {
    justify-content: space-between !important;
    align-items: center !important;
}

/* ── FOOTER BOTTOM ────────────────────────────────────────── */
.footer__bottom {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    margin-top: 20px !important;
}

/* ── COPYRIGHT ────────────────────────────────────────────── */
.footer__copy {
    color: rgba(232, 237, 245, 0.45) !important;
    font-size: 0.82rem !important;
    font-weight: 400 !important;
    font-family: 'JetBrains Mono', monospace !important;
    letter-spacing: 0.03em !important;
}

/* ── POWERED BY — versteckt ───────────────────────────────── */
.footer__powered-by {
    display: none !important;
}

/* ── SOCIAL ICONS ─────────────────────────────────────────── */
.footer__list--socials a {
    background: rgba(0, 245, 212, 0.06) !important;
    border: 1px solid rgba(0, 245, 212, 0.15) !important;
    border-radius: 6px !important;
    padding: 9px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 4px !important;
    transition: all 0.25s ease !important;
    color: rgba(232, 237, 245, 0.6) !important;
}

.footer__list--socials a:hover {
    background: rgba(0, 245, 212, 0.12) !important;
    border-color: rgba(0, 245, 212, 0.4) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 0 16px rgba(0, 245, 212, 0.2) !important;
    color: #00f5d4 !important;
}

/* ── DROPDOWN ICON ANIMATION ──────────────────────────────── */
.footer__link-icon svg {
    transition: all 0.25s ease !important;
}

.footer__menu-link--icon:hover .footer__link-icon svg {
    transform: rotate(180deg) !important;
}

/* ── GRID ─────────────────────────────────────────────────── */
.footer__inner .grid {
    align-items: center !important;
}

.footer__inner .grid__column {
    position: relative !important;
}

/* ── ANIMATION ────────────────────────────────────────────── */
@keyframes footerShimmer {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
}

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .footer__list--menu {
        flex-direction: column !important;
        gap: 8px !important;
        align-items: flex-start !important;
    }
    .footer__list--bottom {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
    }
    .footer__menu-link {
        width: 100% !important;
        text-align: center !important;
    }
    .footer__top {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .footer__menu-link--icon {
        width: 100% !important;
        justify-content: center !important;
    }
    .footer__list--menu .footer__menu-link {
        padding: 11px 18px !important;
        margin: 2px 0 !important;
    }
}
}
#fw-section-announcement-bar-cafce7c2-1fa8-41ea-89dd-921194237c42 {
--color-primary: #00f5d4;
--color-primary-rgb: 0, 245, 212;
--color-background: #16162D;
--color-background-rgb: 22, 22, 45;
--color-on-background: #FFFFFF;
--color-on-background-rgb: 255, 255, 255;
--color-on-primary: #FFFFFF;
--color-on-primary-rgb: 255, 255, 255;
--color-product-image-background: #16213e;
--color-background-brightness: 25;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #00f5d4;
--primary-btn-text: #FFFFFF;
--primary-btn-border-color: #FFFFFF;
--secondary-btn-bg: transparent;
--secondary-btn-text: #FFFFFF;
--secondary-btn-border-color: #FFFFFF;

}
#fw-section-header {

/* =====================================================
   TRADIWAVE — HEADER CSS
   Angepasst an das neue Tradiwave Design
   Farben: Cyan #00f5d4 · Dark Navy · Lila #7c4dff
   ===================================================== */

/* ── RESET ZOOM (nur für Tests, für Produktion entfernen) ── */
/* body { zoom: 0.5; } */

/* ── HAUPTHEADER ──────────────────────────────────────────── */
.header,
header {
    background: linear-gradient(135deg, #04060d 0%, #080e1a 50%, #0c1322 100%) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 245, 212, 0.12) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Geometrischer Hintergrund Glow */
.header::before,
header::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 77, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 245, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
/* ─── TOP ACCENT LINE ─── */

/* ── LOGO ─────────────────────────────────────────────────── */
.header .logo,
header .logo,
.header h1,
header h1 {
    background: linear-gradient(45deg, #ffffff, #00f5d4, #7c4dff) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: logoGlow 3s ease-in-out infinite !important;
    font-weight: 900 !important;
    font-size: 1.8rem !important;
    position: relative;
    z-index: 10;
}

/* ── NAV LINKS ────────────────────────────────────────────── */
.header nav a,
header nav a,
.header .nav-item,
header .nav-item {
    color: rgba(232, 237, 245, 0.7) !important;
    text-decoration: none !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    transition: all 0.25s ease !important;
    font-weight: 500 !important;
    position: relative;
    z-index: 10;
}

.header nav a:hover,
header nav a:hover,
.header .nav-item:hover,
header .nav-item:hover {
    background: rgba(0, 245, 212, 0.08) !important;
    color: #00f5d4 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 245, 212, 0.15) !important;
}

/* ── WÄHRUNGSAUSWAHL ──────────────────────────────────────── */
.header select,
header select,
.currency-selector {
    background: rgba(0, 245, 212, 0.08) !important;
    border: 1px solid rgba(0, 245, 212, 0.2) !important;
    color: #e8edf5 !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    outline: none !important;
    transition: all 0.25s ease !important;
    position: relative;
    z-index: 10;
}

.header select:hover,
header select:hover {
    background: rgba(0, 245, 212, 0.14) !important;
    border-color: rgba(0, 245, 212, 0.4) !important;
}

/* ── WARENKORB ────────────────────────────────────────────── */
.header .cart,
header .cart,
.cart-icon {
    background: rgba(0, 245, 212, 0.08) !important;
    border: 1px solid rgba(0, 245, 212, 0.2) !important;
    border-radius: 6px !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #e8edf5 !important;
    transition: all 0.25s ease !important;
    position: relative;
    z-index: 10;
}

.header .cart:hover,
header .cart:hover {
    background: rgba(0, 245, 212, 0.15) !important;
    border-color: rgba(0, 245, 212, 0.5) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.2) !important;
}

/* ── CART BADGE ───────────────────────────────────────────── */
.cart-badge {
    position: absolute !important;
    top: -5px !important; right: -5px !important;
    background: var(--cyan, #00f5d4) !important;
    color: #04060d !important;
    border-radius: 50% !important;
    width: 18px !important; height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    animation: puls 2s infinite !important;
}

/* ── MOBILE MENU TOGGLE ───────────────────────────────────── */
.mobile-menu-toggle {
    background: rgba(0, 245, 212, 0.08) !important;
    border: 1px solid rgba(0, 245, 212, 0.2) !important;
    color: #e8edf5 !important;
    border-radius: 6px !important;
    padding: 8px !important;
    position: relative;
    z-index: 10;
}

/* ── SHIMMER BOTTOM BORDER ────────────────────────────────── */
.header::after,
header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent 0%, #00f5d4 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

/* ── STICKY ───────────────────────────────────────────────── */
.header.sticky,
header.sticky {
    background: rgba(4, 6, 13, 0.96) !important;
    backdrop-filter: blur(16px) !important;
}

/* ── TRADING STATUS BADGE ─────────────────────────────────── */
.trading-status {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: 4px;
    padding: 4px 12px;
    margin-left: 20px;
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    color: #00e676;
    letter-spacing: 0.08em;
    font-weight: 600;
    animation: puls 2s infinite;
}

.trading-status::before {
    content: '';
    width: 6px; height: 6px;
    background: #00e676;
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 1.5s infinite;
}

/* =====================================================
   MOBILE MENU / DRAWER
   ===================================================== */

/* ── HAMBURGER BUTTON ─────────────────────────────────────── */
.header__icon {
    background: rgba(0, 245, 212, 0.08) !important;
    border: 1px solid rgba(0, 245, 212, 0.2) !important;
    border-radius: 6px !important;
    padding: 10px !important;
    color: #e8edf5 !important;
    transition: all 0.25s ease !important;
    position: relative !important;
    cursor: pointer !important;
    box-shadow: none !important;
}

.header__icon:hover {
    background: rgba(0, 245, 212, 0.14) !important;
    border-color: rgba(0, 245, 212, 0.45) !important;
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.15) !important;
    transform: translateY(-1px) !important;
}

.header__icon svg {
    transition: all 0.3s ease !important;
    filter: none !important;
}

.header__icon:hover svg {
    filter: drop-shadow(0 0 6px rgba(0, 245, 212, 0.6)) !important;
    transform: none !important;
}

/* ── DRAWER HINTERGRUND ───────────────────────────────────── */
.drawer__background {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(8px) !important;
    transition: all 0.4s ease !important;
    position: fixed !important;
    top: 0 !important; left: 0 !important;
    width: 100vw !important; height: 100vh !important;
    z-index: 999 !important;
}

/* ── DRAWER CONTENT ───────────────────────────────────────── */
.drawer__content {
    background: linear-gradient(160deg,
        #04060d 0%,
        #080e1a 30%,
        #0c1322 60%,
        #111928 100%) !important;
    border-right: 1px solid rgba(0, 245, 212, 0.1) !important;
    box-shadow:
        20px 0 60px rgba(0, 0, 0, 0.8),
        inset 0 0 60px rgba(0, 245, 212, 0.03) !important;
    position: fixed !important;
    top: 0 !important; left: 0 !important;
    bottom: 0 !important; right: auto !important;
    width: 300px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    overflow-y: auto !important;
    transform: translateX(-100%) !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    z-index: 1000 !important;
    border-top-right-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
}

.drawer.visible .drawer__content {
    transform: translateX(0) !important;
}

/* Animated Left Border — Cyan */
.drawer__content::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2px; height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        #00f5d4 30%,
        #7c4dff 60%,
        transparent 100%);
    animation: borderFlow 4s ease-in-out infinite;
    z-index: 5;
}

/* Subtiler Glow-Hintergrund */
.drawer__content::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 77, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 245, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* ── DRAWER HEADER SECTION ────────────────────────────────── */
.mobile-menu__section--header {
    background: rgba(255, 255, 255, 0.02) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 20px !important;
    position: relative !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* ── CLOSE BUTTON ─────────────────────────────────────────── */
.mobile-menu__close {
    background: rgba(0, 245, 212, 0.08) !important;
    border: 1px solid rgba(0, 245, 212, 0.2) !important;
    border-radius: 6px !important;
    width: 36px !important; height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #e8edf5 !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 100 !important;
    margin-left: auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.mobile-menu__close svg {
    width: 16px !important; height: 16px !important;
    stroke: #e8edf5 !important;
    stroke-width: 2 !important;
    fill: none !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important; left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.mobile-menu__close:hover {
    background: rgba(0, 245, 212, 0.15) !important;
    border-color: rgba(0, 245, 212, 0.5) !important;
    box-shadow: 0 0 16px rgba(0, 245, 212, 0.2) !important;
    transform: rotate(90deg) !important;
}

/* ── DRAWER BODY ──────────────────────────────────────────── */
.mobile-menu__section--body {
    padding: 20px 16px !important;
    position: relative !important;
    z-index: 10 !important;
}

/* ── MENU LINKS ───────────────────────────────────────────── */
.mobile-menu__link,
.mobile-menulink,
aside[data-drawer="mobile-menu"] a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 14px 18px !important;
    margin-bottom: 8px !important;
    color: rgba(232, 237, 245, 0.75) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    transition: all 0.25s ease !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 10 !important;
}

.mobile-menu__link:hover,
.mobile-menulink:hover,
aside[data-drawer="mobile-menu"] a:hover {
    background: rgba(0, 245, 212, 0.08) !important;
    border-color: rgba(0, 245, 212, 0.25) !important;
    color: #00f5d4 !important;
    transform: translateX(6px) !important;
    box-shadow: 0 4px 16px rgba(0, 245, 212, 0.1) !important;
}

/* Shimmer on hover */
.mobile-menu__link::after,
.mobile-menulink::after,
aside[data-drawer="mobile-menu"] a::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 245, 212, 0.06),
        transparent);
    transition: left 0.4s ease;
}

.mobile-menu__link:hover::after,
.mobile-menulink:hover::after,
aside[data-drawer="mobile-menu"] a:hover::after {
    left: 100%;
}

/* ── FOOTER SECTION ───────────────────────────────────────── */
.mobile-menu__section--socials {
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 16px 20px 20px !important;
    position: relative !important;
    z-index: 10 !important;
}

/* ── ALTERNATIVE DRAWER SELEKTOREN ───────────────────────── */
aside[data-drawer="mobile-menu"] {
    position: fixed !important;
    top: 0 !important; left: 0 !important;
    width: 100vw !important; height: 100vh !important;
    z-index: 999 !important;
    pointer-events: none !important;
}

aside[data-drawer="mobile-menu"].visible {
    pointer-events: auto !important;
}

aside[data-drawer="mobile-menu"] .drawer__background,
aside[data-drawer="mobile-menu"] .drawerbackground {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(8px) !important;
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
}

aside[data-drawer="mobile-menu"] .drawer__content,
aside[data-drawer="mobile-menu"] .drawercontent {
    background: linear-gradient(160deg,
        #04060d 0%,
        #080e1a 30%,
        #0c1322 60%,
        #111928 100%) !important;
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 300px !important;
    max-width: 85vw !important;
    height: 100% !important;
    transform: translateX(-100%) !important;
    transition: transform 0.4s ease !important;
    overflow-y: auto !important;
    z-index: 1000 !important;
    border-top-right-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
}

aside[data-drawer="mobile-menu"].visible .drawer__content,
aside[data-drawer="mobile-menu"].visible .drawercontent {
    transform: translateX(0) !important;
}

/* ── LIST ITEMS SICHTBAR ──────────────────────────────────── */
.mobile-menu__list-item,
.mobile-menulist-item,
.drawer .mobile-menu__list-item,
aside[data-drawer="mobile-menu"] li {
    opacity: 1 !important;
    transform: translateX(0) !important;
    display: block !important;
    visibility: visible !important;
}

/* ── ANIMATIONEN ──────────────────────────────────────────── */
@keyframes logoGlow {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

@keyframes puls {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.4); }
    50%       { box-shadow: 0 0 0 6px rgba(0, 245, 212, 0); }
}

@keyframes blink {
    0%, 50%    { opacity: 1; }
    51%, 100%  { opacity: 0.3; }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50%      { opacity: 1; }
}

@keyframes borderFlow {
    0%, 100% { background-position: 0% 0%;   opacity: 0.6; }
    50%      { background-position: 0% 100%; opacity: 1; }
}

/* ── DRAWER SLIDE IN ──────────────────────────────────────── */
.drawer.visible .drawer__content {
    animation: drawerSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes drawerSlideIn {
    from { transform: translateX(-100%); opacity: 0.8; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 480px) {
    .drawer__content {
        width: 270px !important;
        max-width: 90vw !important;
    }

    .mobile-menu__link,
    .mobile-menulink,
    aside[data-drawer="mobile-menu"] a {
        font-size: 14px !important;
        padding: 12px 16px !important;
        margin-bottom: 6px !important;
    }

    .mobile-menu__close {
        width: 32px !important;
        height: 32px !important;
    }
}
}
#fw-section-product-product-default {

@media (max-width: 640px) {
  /* Members Only Button Container */
  .product-info__membership-buttons,
  [class*="membership"] .button-group,
  [class*="member"] .buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100% !important;
  }

  /* JOIN NOW + CHANGE TIER Buttons */
  .product-info__membership-buttons .button,
  .product-info__membership-buttons .button--primary,
  .product-info__membership-buttons .button--secondary {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 12px 14px !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  /* Login Button kleiner */
  .product-info__membership-buttons .button--tertiary,
  .product-info__membership-buttons .login-button {
    flex: 0 0 auto !important;
    padding: 12px 16px !important;
    font-size: 0.82rem !important;
  }
}

/* ── MEMBERS ONLY BUTTONS — MOBILE FIX ───────────────────── */
@media (max-width: 768px) {

  /* Container der Buttons kleiner */
  .product-info__members-only,
  [data-product="members-only"] {
    padding: 16px !important;
    border-radius: 10px !important;
  }

  /* Buttons nebeneinander, kompakter */
  .product-info__members-only-cta-container,
  [class*="members-only-cta"] {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100% !important;
  }

  /* JOIN NOW + CHANGE TIER — kleiner */
  .button--primary.button--large,
  .product-info__members-only-cta-container .button--primary {
    padding: 12px 16px !important;
    font-size: 0.82rem !important;
    border-radius: 6px !important;
    flex: 1 !important;
    min-width: 0 !important;
    width: auto !important;
  }

  /* LOGIN Button — gleiche Größe, runde Form bleibt */
  .button--secondary.button--large,
  .product-info__members-only-cta-container .button--secondary {
    padding: 12px 16px !important;
    font-size: 0.82rem !important;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }

  /* Text auf Buttons kürzer umbrechen verhindern */
  .product-info__members-only-cta-container a,
  .product-info__members-only-cta-container button {
    max-width: 160px !important;
    text-align: center !important;
  }
}


/* =====================================================
   TRADIWAVE — PRODUCT PAGE CSS
   Farben: Cyan #00f5d4 · Dark Navy · Lila #7c4dff
   ===================================================== */

/* ── PAGE BACKGROUND ──────────────────────────────────────── */
.page__main {
    background:
        radial-gradient(ellipse 70% 50% at 0% 0%,    rgba(124, 77, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 20%,  rgba(0, 245, 212, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 80% 100%,  rgba(124, 77, 255, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 5% 80%,    rgba(0, 245, 212, 0.05) 0%, transparent 55%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(0, 245, 212, 0.012) 40px,
            rgba(0, 245, 212, 0.012) 41px
        ),
        #04060d !important;
    min-height: 100vh !important;
}

/* ── PRODUCT WRAPPER ──────────────────────────────────────── */
.product {
    background: transparent !important;
    color: #e8edf5 !important;
}

.product .container.wrapper {
    max-width: 100% !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

/* ── GRID LAYOUT ──────────────────────────────────────────── */
.product__main .grid {
    display: grid !important;
    grid-template-columns: 600px 1fr !important;
    gap: 40px !important;
    align-items: start !important;
}

.product__main .grid__column--7\@sm {
    grid-column: 1 !important;
    width: 600px !important;
    max-width: 600px !important;
    padding: 15px !important;
    overflow: visible !important;
}

.product__main .grid__column--5\@sm {
    grid-column: 2 !important;
    width: 100% !important;
    max-width: none !important;
}

/* ── GALLERY ──────────────────────────────────────────────── */
.product__gallery {
    overflow: visible !important;
    padding: 10px !important;
}

.gallery,
.gallery__main,
.gallery__main-inner {
    overflow: visible !important;
}

.gallery__image-container {
    background: linear-gradient(145deg, #0c1322, #111928) !important;
    border: 1px solid rgba(0, 245, 212, 0.15) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1) !important;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 245, 212, 0.05) inset !important;
    min-height: 500px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
}

.gallery__image-container:hover {
    border-color: rgba(0, 245, 212, 0.4) !important;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 245, 212, 0.1),
        0 0 0 1px rgba(0, 245, 212, 0.2) inset !important;
    transform: translateY(-6px) scale(1.01) !important;
    z-index: 10 !important;
}

.gallery__image-object {
    border-radius: 15px !important;
    transition: all 0.35s ease !important;
    width: 100% !important;
    height: auto !important;
}

/* Gallery Navigation Arrows */
.gallery__nav-item {
    background: rgba(0, 245, 212, 0.08) !important;
    border: 1px solid rgba(0, 245, 212, 0.2) !important;
    border-radius: 6px !important;
    color: #00f5d4 !important;
    transition: all 0.25s ease !important;
}

.gallery__nav-item:hover {
    background: rgba(0, 245, 212, 0.18) !important;
    border-color: rgba(0, 245, 212, 0.5) !important;
    box-shadow: 0 0 16px rgba(0, 245, 212, 0.2) !important;
    transform: scale(1.05) !important;
}

/* Thumbnails */
.gallery-thumbs__image-container {
    background: #0c1322 !important;
    border: 1px solid rgba(0, 245, 212, 0.12) !important;
    border-radius: 8px !important;
    transition: all 0.25s ease !important;
    min-width: 72px !important;
    min-height: 72px !important;
    overflow: hidden !important;
}

.gallery-thumbs__image-container:hover {
    border-color: rgba(0, 245, 212, 0.45) !important;
    transform: scale(1.06) !important;
    box-shadow: 0 0 14px rgba(0, 245, 212, 0.2) !important;
}

/* ── PRODUCT INFO BOX ─────────────────────────────────────── */
.product__info,
.product-info {
    background: linear-gradient(145deg, #0c1322, #111928) !important;
    border: 1px solid rgba(0, 245, 212, 0.1) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 245, 212, 0.04) inset !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Subtiler Glow oben rechts in der Info-Box */
.product__info::before,
.product-info::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important; right: 0 !important;
    width: 200px !important; height: 200px !important;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.05) 0%, transparent 70%) !important;
    pointer-events: none !important;
}

/* ── PRODUCT TITLE ────────────────────────────────────────── */
.product-info__title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
    font-weight: 400 !important;
    letter-spacing: 0.04em !important;
    line-height: 1.05 !important;
    background: linear-gradient(45deg, #ffffff, #00f5d4, #7c4dff) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: titleShimmer 3s ease-in-out infinite !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
}

/* ── PRICE ────────────────────────────────────────────────── */
.product-info__price--original {
    background: #00f5d4 !important;
    color: #04060d !important;
    padding: 10px 24px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    box-shadow: 0 0 24px rgba(0, 245, 212, 0.3) !important;
    border: none !important;
    display: inline-block !important;
    transition: all 0.25s ease !important;
    font-family: 'JetBrains Mono', monospace !important;
}

.product-info__price--original:hover {
    transform: scale(1.04) !important;
    box-shadow: 0 0 40px rgba(0, 245, 212, 0.55) !important;
    background: #1ffcde !important;
}

/* ── DESCRIPTION ──────────────────────────────────────────── */
.product-info__description {
    background: rgba(0, 245, 212, 0.04) !important;
    border: 1px solid rgba(0, 245, 212, 0.1) !important;
    border-radius: 10px !important;
    padding: 22px !important;
    margin: 20px 0 !important;
    color: rgba(232, 237, 245, 0.8) !important;
    max-height: 400px !important;
    overflow-y: auto !important;
    line-height: 1.75 !important;
}

/* Scrollbar */
.product-info__description::-webkit-scrollbar { width: 5px !important; }
.product-info__description::-webkit-scrollbar-track {
    background: rgba(0, 245, 212, 0.05) !important;
    border-radius: 10px !important;
}
.product-info__description::-webkit-scrollbar-thumb {
    background: rgba(0, 245, 212, 0.3) !important;
    border-radius: 10px !important;
}
.product-info__description::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 245, 212, 0.6) !important;
}

/* Description Typography */
.product-info__description h1 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.04em !important;
    background: linear-gradient(45deg, #ffffff, #00f5d4) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-top: 20px !important;
    margin-bottom: 12px !important;
}

.product-info__description h2 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.04em !important;
    color: #00f5d4 !important;
    margin-top: 18px !important;
    margin-bottom: 10px !important;
}

.product-info__description h3 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: rgba(232, 237, 245, 0.9) !important;
    margin-top: 14px !important;
    margin-bottom: 8px !important;
}

.product-info__description ul,
.product-info__description ol {
    margin: 12px 0 !important;
    padding-left: 22px !important;
}

.product-info__description li {
    margin: 7px 0 !important;
    color: rgba(232, 237, 245, 0.75) !important;
}

.product-info__description li::marker {
    color: #00f5d4 !important;
}

.product-info__description strong {
    color: #00f5d4 !important;
    font-weight: 600 !important;
}

.product-info__description a {
    color: #00f5d4 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(0, 245, 212, 0.3) !important;
    transition: all 0.2s ease !important;
}

.product-info__description a:hover {
    border-color: #00f5d4 !important;
    text-shadow: 0 0 8px rgba(0, 245, 212, 0.4) !important;
}

/* ── QUANTITY SELECTOR ────────────────────────────────────── */
.select-field {
    background: rgba(0, 245, 212, 0.05) !important;
    border: 1px solid rgba(0, 245, 212, 0.2) !important;
    border-radius: 8px !important;
    transition: all 0.25s ease !important;
}

.select-field:hover,
.select-field:focus-within {
    border-color: rgba(0, 245, 212, 0.5) !important;
    box-shadow: 0 0 16px rgba(0, 245, 212, 0.1) !important;
}

.select-field__select {
    background: transparent !important;
    color: #e8edf5 !important;
    font-weight: 600 !important;
    padding: 10px 14px !important;
}

.select-field__dropdown-icon {
    color: #00f5d4 !important;
}

/* ── ADD TO CART BUTTON ───────────────────────────────────── */
.button--primary {
    background: #00f5d4 !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 16px 32px !important;
    color: #04060d !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 0 28px rgba(0, 245, 212, 0.3) !important;
}

.button--primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 0 50px rgba(0, 245, 212, 0.55) !important;
    background: #1ffcde !important;
}

/* ── STICKY ADD TO CART ───────────────────────────────────── */
.sticky-add-to-cart {
    background: rgba(8, 14, 26, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    border-top: 1px solid rgba(0, 245, 212, 0.15) !important;
    padding: 14px !important;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4) !important;
}

/* ── PRODUCT RECOMMENDATIONS ──────────────────────────────── */
.product-recommendations {
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 245, 212, 0.05) 0%, transparent 70%),
        #04060d !important;
    color: #e8edf5 !important;
    position: relative !important;
}

/* "You may also like" Title */
.collection__heading {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 400 !important;
    letter-spacing: 0.04em !important;
    background: linear-gradient(45deg, #ffffff, #00f5d4, #7c4dff) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: titleShimmer 3s ease-in-out infinite !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    text-transform: uppercase !important;
}

/* ── RECOMMENDATION TILES ─────────────────────────────────── */
.product-tile {
    background: linear-gradient(145deg, #0c1322, #111928) !important;
    border: 1px solid rgba(0, 245, 212, 0.1) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1) !important;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 245, 212, 0.04) inset !important;
}

.product-tile:hover {
    transform: translateY(-10px) scale(1.015) !important;
    border-color: rgba(0, 245, 212, 0.35) !important;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 245, 212, 0.1),
        0 0 0 1px rgba(0, 245, 212, 0.15) inset !important;
}

.tile__image .image {
    border-radius: 16px 16px 0 0 !important;
    overflow: hidden !important;
}

.tile__image img {
    border-radius: 16px 16px 0 0 !important;
    transition: all 0.35s ease !important;
    filter: drop-shadow(0 0 12px rgba(0, 245, 212, 0.2)) !important;
}

.product-tile:hover .tile__image img {
    transform: scale(1.04) !important;
    filter: drop-shadow(0 0 24px rgba(0, 245, 212, 0.45)) !important;
}

.tile__description {
    padding: 18px !important;
    background: rgba(0, 0, 0, 0.2) !important;
}

.tile__heading {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em !important;
    background: linear-gradient(45deg, #ffffff, #00f5d4, #7c4dff) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: textShimmer 3s ease-in-out infinite !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
}

.tile__price--original {
    background: #00f5d4 !important;
    color: #04060d !important;
    padding: 6px 14px !important;
    border-radius: 5px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 0 16px rgba(0, 245, 212, 0.25) !important;
    transition: all 0.25s ease !important;
    display: inline-block !important;
    font-family: 'JetBrains Mono', monospace !important;
}

.product-tile:hover .tile__price--original {
    transform: scale(1.04) !important;
    box-shadow: 0 0 28px rgba(0, 245, 212, 0.5) !important;
}

/* Sale Price */
.tile__price--offer {
    color: rgba(255, 64, 96, 0.8) !important;
    text-decoration: line-through !important;
    opacity: 0.7 !important;
    font-size: 0.85rem !important;
    margin-right: 8px !important;
}

/* ── SOLD OUT BADGE ───────────────────────────────────────── */
.badge--sold-out,
[class*="sold-out"] {
    background: rgba(255, 64, 96, 0.12) !important;
    border: 1px solid rgba(255, 64, 96, 0.4) !important;
    color: #ff4060 !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}

/* ── ANIMATIONEN ──────────────────────────────────────────── */
@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

/* ── TABLET ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .product__main .grid {
        grid-template-columns: 420px 1fr !important;
        gap: 28px !important;
    }

    .product__main .grid__column--7\@sm {
        width: 420px !important;
        max-width: 420px !important;
    }

    .gallery__image-container {
        min-height: 380px !important;
    }
}

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .product__main .grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 16px !important;
        padding: 0 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .product .container.wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }

    /* Text zuerst auf Mobile */
    .product__main .grid__column--5\@sm {
        grid-row: 1 !important;
        grid-column: 1 !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
    }

    /* Bild darunter */
    .product__main .grid__column--7\@sm {
        grid-row: 2 !important;
        grid-column: 1 !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
    }

    .gallery__image-container {
        min-height: 280px !important;
        border-radius: 12px !important;
    }

    .product__info,
    .product-info {
        padding: 20px !important;
        border-radius: 12px !important;
    }

    .product-info__title {
        font-size: 1.8rem !important;
        text-align: center !important;
    }

    .product-info__description {
        max-height: 350px !important;
        font-size: 0.95rem !important;
    }

    .button--primary {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
    }

    .select-field {
        width: 100% !important;
        margin: 12px 0 !important;
    }

    .collection__heading {
        font-size: 1.8rem !important;
    }

    .product-tile:hover {
        transform: translateY(-6px) scale(1.01) !important;
    }

    .product__gallery {
        padding: 0 !important;
    }
}
}
#fw-section-product-recommendations-product-default {

/* =====================================================
   TRADIWAVE — YOU MAY ALSO LIKE SECTION
   Farben: Cyan #00f5d4 · Dark Navy · Lila #7c4dff
   ===================================================== */

/* ── SECTION HINTERGRUND ──────────────────────────────────── */
.product-recommendations {
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 245, 212, 0.05) 0%, transparent 70%),
        #04060d !important;
    color: #e8edf5 !important;
    padding: 60px 0 !important;
}

/* ── "YOU MAY ALSO LIKE" TITEL ────────────────────────────── */
.collection__heading,
.product-recommendations .collection__heading {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 400 !important;
    letter-spacing: 0.04em !important;
    background: linear-gradient(45deg, #ffffff, #00f5d4, #7c4dff) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: titleShimmer 3s ease-in-out infinite !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    text-shadow: none !important;
}

/* ── GRID ─────────────────────────────────────────────────── */
.product-recommendations .collection__grid .grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: center !important;
}

.product-recommendations .grid__column {
    flex: 0 0 calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    width: calc(100% - 20px) !important;
    margin: 0 !important;
}

@media (min-width: 1024px) {
    .product-recommendations .grid__column {
        flex: 0 0 calc(33.333% - 20px) !important;
        max-width: calc(33.333% - 20px) !important;
        width: calc(33.333% - 20px) !important;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .product-recommendations .grid__column {
        flex: 0 0 calc(50% - 15px) !important;
        max-width: calc(50% - 15px) !important;
        width: calc(50% - 15px) !important;
    }
    .product-recommendations .collection__grid .grid {
        gap: 15px !important;
    }
}

/* ── PRODUCT TILE ─────────────────────────────────────────── */
.product-recommendations .product-tile {
    background: linear-gradient(145deg, #0c1322, #111928) !important;
    border: 1px solid rgba(0, 245, 212, 0.1) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position: relative !important;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 245, 212, 0.04) inset !important;
    width: 100% !important;
    height: 100% !important;
}

.product-recommendations .product-tile:hover {
    transform: translateY(-10px) scale(1.015) !important;
    border-color: rgba(0, 245, 212, 0.35) !important;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 245, 212, 0.1),
        0 0 0 1px rgba(0, 245, 212, 0.15) inset !important;
}

/* Kein "HIGH PERFORMANCE" Badge */
.product-recommendations .product-tile::before {
    display: none !important;
}

/* ── IMAGE ────────────────────────────────────────────────── */
.product-recommendations .tile__image {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 16px 16px 0 0 !important;
    background: rgba(12, 19, 34, 0.5) !important;
}

.product-recommendations .tile__image .image,
.product-recommendations .tile__image .image__object {
    border-radius: 16px 16px 0 0 !important;
    overflow: hidden !important;
}

.product-recommendations .tile__image img {
    border-radius: 16px 16px 0 0 !important;
    filter: drop-shadow(0 0 14px rgba(0, 245, 212, 0.2)) !important;
    transition: all 0.35s ease !important;
    width: 100% !important;
    height: auto !important;
}

.product-recommendations .product-tile:hover .tile__image img {
    filter: drop-shadow(0 0 26px rgba(0, 245, 212, 0.5)) !important;
    transform: scale(1.04) !important;
    animation: iconPulse 2s infinite !important;
}

/* ── DESCRIPTION ──────────────────────────────────────────── */
.product-recommendations .tile__description {
    padding: 18px !important;
    background: rgba(0, 0, 0, 0.2) !important;
    position: relative !important;
}

/* ── TITEL ────────────────────────────────────────────────── */
.product-recommendations .tile__heading {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em !important;
    background: linear-gradient(45deg, #ffffff, #00f5d4, #7c4dff) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: textShimmer 3s ease-in-out infinite !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
}

/* ── PREIS ────────────────────────────────────────────────── */
.product-recommendations .tile__prices {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 10px !important;
}

.product-recommendations .tile__price--original {
    background: #00f5d4 !important;
    color: #04060d !important;
    padding: 6px 16px !important;
    border-radius: 5px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    box-shadow: 0 0 16px rgba(0, 245, 212, 0.25) !important;
    transition: all 0.25s ease !important;
    border: none !important;
    display: inline-block !important;
    font-family: 'JetBrains Mono', monospace !important;
}

.product-recommendations .product-tile:hover .tile__price--original {
    transform: scale(1.04) !important;
    box-shadow: 0 0 28px rgba(0, 245, 212, 0.5) !important;
}

/* ── SALE PREIS ───────────────────────────────────────────── */
.product-recommendations .tile__price--offer {
    color: rgba(255, 64, 96, 0.8) !important;
    text-decoration: line-through !important;
    opacity: 0.7 !important;
    font-size: 0.88rem !important;
    margin-right: 5px !important;
}

/* ── LIVE TRADING BADGE ───────────────────────────────────── */
.product-recommendations .tile__description::after {
    content: '⚡ LIVE TRADING';
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: #00e676;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: 'JetBrains Mono', monospace;
    z-index: 10;
}

/* ── LINK ─────────────────────────────────────────────────── */
.product-recommendations .tile {
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
}

/* ── ANIMATIONEN ──────────────────────────────────────────── */
@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}
@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1.04); }
    50%       { transform: scale(1.08); }
}

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .collection__heading,
    .product-recommendations .collection__heading {
        font-size: 2rem !important;
    }
    .product-recommendations .product-tile:hover {
        transform: translateY(-6px) scale(1.01) !important;
    }
}

@media (max-width: 480px) {
    .product-recommendations .tile__description::after {
        font-size: 8px !important;
        padding: 2px 5px !important;
    }
}
}