:root {
    --bg-main: #0b0f19;
    --bg-card: #111827;
    --bg-card-hover: #1a2234;
    --primary: #ef4444;
    --primary-glow: rgba(239, 68, 68, 0.4);
    --primary-hover: #dc2626;
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --border: #1f2937;
    --border-accent: rgba(239, 68, 68, 0.4);
    --success: #10b981;
    --warning: #f59e0b;
}

/* THEME ACCENTS */
[data-theme="blue"] {
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.45);
    --primary-hover: #2563eb;
    --border-accent: rgba(59, 130, 246, 0.45);
}

[data-theme="purple"] {
    --primary: #a855f7;
    --primary-glow: rgba(168, 85, 247, 0.45);
    --primary-hover: #9333ea;
    --border-accent: rgba(168, 85, 247, 0.45);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-main);
    text-decoration: none;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    object-fit: cover;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.nav-brand span {
    color: var(--primary);
    text-shadow: 0 0 12px var(--primary-glow);
    transition: color 0.3s, text-shadow 0.3s;
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

/* THEME SWITCHER */
.theme-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1f2937;
    padding: 6px 10px;
    border-radius: 20px;
    border: 1px solid #374151;
}

.theme-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.theme-dot:hover {
    transform: scale(1.25);
}

.theme-dot.active {
    border-color: #ffffff;
    box-shadow: 0 0 8px #ffffff;
}

.dot-red { background: #ef4444; }
.dot-blue { background: #3b82f6; }
.dot-purple { background: #a855f7; }

/* HERO */
.hero {
    text-align: center;
    padding: 50px 24px 30px 24px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-accent);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.hero-title span {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
    transition: color 0.3s, text-shadow 0.3s;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

.hero-banner-wrapper {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 24px;
}

.hero-banner-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border-accent);
    box-shadow: 0 8px 32px var(--primary-glow);
    display: block;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* CONTAINER & SECTIONS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px 24px;
    flex-grow: 1;
    width: 100%;
}

.section-title-wrap {
    text-align: center;
    margin: 50px 0 28px 0;
}

.section-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.section-title span {
    color: var(--primary);
    text-shadow: 0 0 12px var(--primary-glow);
}

.section-sub {
    color: var(--text-muted);
    font-size: 14px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 20px var(--primary-glow);
    transform: translateY(-1px);
}

/* FILTER TABS & SEARCH */
.filter-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    background: #1f2937;
    color: var(--text-muted);
    border: 1px solid #374151;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    background: #374151;
    color: #ffffff;
    border-color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 16px var(--primary-glow);
}

.search-input {
    background: #0b0f19;
    border: 1px solid #374151;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* PRODUCT GRID & CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.card-img-top {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-accent);
    display: block;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.card-content {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.card-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 16px;
}

.card-price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}

.feature-list {
    list-style: none;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    font-size: 13px;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    color: var(--primary);
    font-weight: 800;
}

/* WARENKORB BUTTON & DRAWER */
.cart-btn, .cart-nav-btn {
    background: linear-gradient(135deg, #1f2937, #111827);
    border: 1px solid #374151;
    color: #ffffff;
    padding: 7px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cart-btn:hover, .cart-nav-btn:hover {
    border-color: var(--primary);
    background: #1f2937;
    box-shadow: 0 0 14px var(--primary-glow);
    transform: translateY(-1px);
}

.cart-badge-count {
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 10px;
    box-shadow: 0 0 8px var(--primary-glow);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #111827;
    border-left: 1px solid #1f2937;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.8);
    z-index: 20010;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid #1f2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.cart-close-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 20px;
    cursor: pointer;
}

.cart-close-btn:hover {
    color: var(--primary);
}

.cart-items-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    background: #0b0f19;
    border: 1px solid #1f2937;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cart-item-title {
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
}

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qty-control {
    display: flex;
    align-items: center;
    background: #1f2937;
    border-radius: 6px;
    border: 1px solid #374151;
}

.qty-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    width: 28px;
    height: 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #374151;
}

.qty-value {
    padding: 0 10px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: #ef4444;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid #1f2937;
    background: #0b0f19;
}

.card-qty-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.btn-in-cart {
    background: #22c55e !important;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.4) !important;
}

/* RECENT BUYERS SLIDER */
.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 900px) {
    .slider-track {
        grid-template-columns: 1fr;
    }
}

.buyer-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s, border-color 0.2s;
}

.buyer-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.buyer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    object-fit: cover;
}

.buyer-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.buyer-name {
    font-weight: 800;
    font-size: 14px;
    color: #ffffff;
}

.buyer-product {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

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

.slider-nav-btn {
    background: #1f2937;
    border: 1px solid #374151;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.slider-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

/* COMPARISON TABLE */
.comparison-container {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 16px;
    overflow-x: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 14px;
}

.comp-table th, .comp-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #1f2937;
}

.comp-table th {
    background: #0b0f19;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.comp-table th:first-child, .comp-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: #f9fafb;
    padding-left: 28px;
}

.comp-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comp-check {
    color: #22c55e;
    font-weight: 800;
    font-size: 18px;
}

.comp-cross {
    color: #ef4444;
    font-weight: 700;
    font-size: 16px;
    opacity: 0.6;
}

.comp-highlight {
    background: rgba(239, 68, 68, 0.08) !important;
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

/* FAQ LIST */
.faq-list {
    max-width: 900px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

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

.faq-question {
    padding: 18px 24px;
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px 20px 24px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    display: none;
    border-top: 1px solid #1f2937;
    padding-top: 16px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

/* MODALS */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 30000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #111827;
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    padding: 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.9);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--primary);
}

.welcome-badge {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.coupon-highlight-box {
    background: #0b0f19;
    border: 2px dashed var(--primary);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: monospace;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-content {
    max-height: 380px;
    overflow-y: auto;
    text-align: left;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-content h4 {
    color: #ffffff;
    margin: 14px 0 4px 0;
    font-size: 14px;
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #d1d5db;
}

.form-input, .form-select {
    width: 100%;
    padding: 12px 14px;
    background: #0b0f19;
    border: 1px solid #374151;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus {
    border-color: var(--primary);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.payment-card {
    background: #0b0f19;
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.payment-card:hover {
    border-color: var(--primary);
}

.summary-box {
    background: #0b0f19;
    border: 1px solid #1f2937;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.summary-total {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    border-top: 1px solid #1f2937;
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 0;
}

/* LIVE STATUS BAR FOOTER */
.live-status-bar {
    background: #0b0f19;
    border-top: 1px solid #1f2937;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: auto;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #22c55e;
    margin-right: 6px;
    animation: pulse 2s infinite;
}

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


/* ══════════════════════════════════════════════════════════════════
   🎮 1. INTERAKTIVER BOT SIMULATOR STYLES
   ══════════════════════════════════════════════════════════════════ */
.discord-simulator-container {
    background: #313338;
    border: 1px solid #1f2937;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    max-width: 860px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.discord-header-bar {
    background: #2b2d31;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
.discord-channel-name {
    color: #f2f3f5;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.discord-command-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 18px;
    background: #232428;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.discord-chip-btn {
    background: #313338;
    border: 1px solid #3f4147;
    color: #dbdee1;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    font-family: monospace;
    cursor: pointer;
    transition: all 0.15s;
}
.discord-chip-btn:hover, .discord-chip-btn.active {
    background: #5865F2;
    color: #fff;
    border-color: #5865F2;
}
.discord-chat-area {
    padding: 20px 18px;
    min-height: 280px;
    max-height: 380px;
    overflow-y: auto;
    background: #313338;
}
.discord-message {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    animation: fadeIn 0.2s ease;
}
.discord-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.discord-msg-body {
    flex: 1;
}
.discord-msg-author {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.discord-author-name {
    color: #f2f3f5;
    font-weight: 700;
    font-size: 14px;
}
.discord-bot-tag {
    background: #5865F2;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 3px;
    text-transform: uppercase;
}
.discord-msg-time {
    color: #949ba4;
    font-size: 11px;
}
.discord-embed-box {
    background: #2b2d31;
    border-left: 4px solid #ef4444;
    border-radius: 4px;
    padding: 14px 16px;
    max-width: 520px;
    margin-top: 6px;
}
.discord-embed-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 6px;
}
.discord-embed-desc {
    color: #dbdee1;
    font-size: 13px;
    line-height: 1.45;
    white-space: pre-line;
}
.discord-embed-footer {
    color: #949ba4;
    font-size: 11px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.discord-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.discord-btn {
    background: #4e5058;
    color: #ffffff;
    border: none;
    padding: 7px 14px;
    border-radius: 4px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.discord-btn:hover { background: #6d6f78; }
.discord-btn-primary { background: #5865F2; }
.discord-btn-primary:hover { background: #4752c4; }
.discord-btn-success { background: #248046; }
.discord-btn-success:hover { background: #1a6334; }

/* ══════════════════════════════════════════════════════════════════
   🎁 2. TÄGLICHES GLÜCKSRAD STYLES
   ══════════════════════════════════════════════════════════════════ */
.wheel-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto 20px auto;
}
.wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 24px solid #ef4444;
    z-index: 10;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.8));
}
#spinCanvas {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
    border: 4px solid #1f2937;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

/* ══════════════════════════════════════════════════════════════════
   💬 3. FLOATING KI CHAT WIDGET STYLES
   ══════════════════════════════════════════════════════════════════ */
.ai-floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 20px;
    font-weight: 800;
    font-size: 13.5px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(239, 68, 68, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 15000;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulseGlow 3s infinite;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(239,68,68,0.4); }
    50% { box-shadow: 0 0 30px rgba(239,68,68,0.8); }
}
.ai-floating-btn:hover {
    transform: translateY(-3px) scale(1.03);
}
.ai-chat-window {
    position: fixed;
    bottom: 84px;
    right: 24px;
    width: 380px;
    max-width: calc(100vw - 48px);
    height: 520px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 25000;
    animation: slideUp 0.25s ease;
}
.ai-chat-window.active { display: flex; }
@keyframes slideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.ai-chat-header {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 14px 18px;
    border-bottom: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ai-chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
}
.ai-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    line-height: 1.45;
}
.ai-msg-bot {
    align-self: flex-start;
    background: #1e293b;
    border: 1px solid #334155;
    color: #e2e8f0;
    border-bottom-left-radius: 2px;
}
.ai-msg-user {
    align-self: flex-end;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    border-bottom-right-radius: 2px;
}
.ai-quick-chips {
    padding: 8px 12px;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    background: #0b0f19;
    border-top: 1px solid #1e293b;
}
.ai-chip {
    background: #1e293b;
    color: #93c5fd;
    border: 1px solid #3b82f6;
    border-radius: 14px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.ai-chat-input-row {
    padding: 12px;
    background: #1e293b;
    border-top: 1px solid #334155;
    display: flex;
    gap: 8px;
}


/* ══════════════════════════════════════════════════════════════════
   📌 UNIFIED STICKY HEADER (BANNER + NAVBAR ZUSAMMEN FIXIERT)
   ══════════════════════════════════════════════════════════════════ */
.sticky-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.global-top-banner {
    background: linear-gradient(90deg, #b91c1c, #ef4444, #f59e0b);
    color: #ffffff;
    text-align: center;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    width: 100%;
}


/* ══════════════════════════════════════════════════════════════════
   📊 LIVE STATISTIK GRID STYLES
   ══════════════════════════════════════════════════════════════════ */
.live-stats-section {
    margin: 70px 0 50px 0;
    text-align: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.stat-card {
    background: linear-gradient(145deg, #111827, #0b0f19);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px var(--primary-glow);
}
.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: inline-block;
}
.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.stat-label {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 🏷️ SALE BADGE IN DER ECKE */
.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 14px rgba(239, 68, 68, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    animation: badgeGlow 2.5s infinite;
}
@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.9); }
}

/* 📦 MENGENRABATT FORTSCHRITTSBALKEN */
.tier-discount-banner {
    background: #111827;
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 14px;
    font-size: 12px;
}
.tier-progress-track {
    background: #1f2937;
    height: 6px;
    border-radius: 3px;
    margin-top: 6px;
    overflow: hidden;
}
.tier-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    transition: width 0.3s ease;
}
