/* ============================================================
   KONCEPT GAMING — DE OFFER WALL
   Germany-specific styles (Black / Red / Gold)
   ============================================================ */

/* DE Nav badge */
.de-nav-badge {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.1), rgba(0, 0, 0, 0.06));
    border-radius: 20px;
    padding: 0.35rem 0.9rem !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
}

.de-nav-badge.active,
.de-nav-badge:hover {
    background: linear-gradient(135deg, #1a1a1a, #333) !important;
    color: white !important;
    border-color: transparent !important;
}

/* ============================================================
   DE HERO
   ============================================================ */
.de-hero {
    background: #0a0a0a;
    min-height: 540px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}

/* German flag stripes — subtle accent lines */
.de-flag-stripe {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0.25;
}
.de-stripe-black { background: #333; top: 0; }
.de-stripe-red   { background: #cc0000; top: 3px; }
.de-stripe-gold  { background: #f39c12; top: 6px; }

.de-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 55px 55px;
}

.de-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
}

.de-orb-1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(204, 0, 0, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -50px;
    animation: deOrb1 9s ease-in-out infinite alternate;
}

.de-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: 0;
    animation: deOrb2 12s ease-in-out infinite alternate;
}

@keyframes deOrb1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 40px) scale(1.12); }
}

@keyframes deOrb2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(25px, -25px) scale(1.06); }
}

.de-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.de-geo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.2), rgba(100, 0, 0, 0.12));
    border: 1px solid rgba(204, 0, 0, 0.3);
    border-radius: 30px;
    padding: 0.45rem 1.2rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: #ff7070;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.de-hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

.de-hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.12rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Hero Stats */
.de-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.de-stat { text-align: center; }

.de-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.de-stat-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.de-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* Trust badges */
.de-trust-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.de-trust-badges span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
}

/* ============================================================
   FILTERS BAR
   ============================================================ */
.de-filters-bar {
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 56px;
    z-index: 90;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.de-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
    flex-wrap: wrap;
}

.de-filter-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.de-filter-group {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    flex: 1;
}

.de-filter {
    padding: 0.45rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.de-filter:hover {
    border-color: #cc0000;
    color: #ff6b6b;
}

.de-filter.active {
    background: linear-gradient(135deg, #cc0000, #8a0000);
    color: white;
    border-color: transparent;
    box-shadow: 0 3px 14px rgba(204, 0, 0, 0.35);
}

.de-sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    white-space: nowrap;
}

.de-sort label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.de-sort select {
    padding: 0.4rem 1.8rem 0.4rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.5)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
}

/* ============================================================
   OFFER WALL CARDS
   ============================================================ */
.de-offer-wall {
    background: #0d0d0d;
    padding: 3rem 0 4rem !important;
}

.de-offer-wall .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.de-offer-card {
    background: #161616;
    border-radius: 18px;
    padding: 1.75rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 38px 180px 210px 1fr 1fr 140px 180px;
    gap: 1.5rem;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: deFadeInUp 0.5s ease both;
}

.de-offer-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px 0 0 18px;
    transition: background 0.3s ease;
}

.de-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    border-color: rgba(204, 0, 0, 0.2);
}

.de-offer-card:hover::before {
    background: linear-gradient(180deg, #cc0000, #f39c12);
}

/* Top rank styling */
.de-offer-card.de-rank-1 {
    border: 1px solid rgba(243, 156, 18, 0.2);
    background: linear-gradient(145deg, #1a1500, #161616 40%);
}

.de-offer-card.de-rank-1::before {
    background: linear-gradient(180deg, #f39c12, #e67e22);
}

.de-offer-card.de-rank-2::before {
    background: linear-gradient(180deg, #888, #666);
}

.de-offer-card.de-rank-3::before {
    background: linear-gradient(180deg, #cd7f32, #8B4513);
}

.de-rank {
    font-size: 0.78rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

.de-rank-1 .de-rank { color: #d4a017; }
.de-rank-2 .de-rank { color: #8e9eab; }
.de-rank-3 .de-rank { color: #cd7f32; }

.de-new-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #cc0000, #8a0000);
    color: white;
    box-shadow: 0 2px 8px rgba(204, 0, 0, 0.4);
}

/* Logo */
.de-offer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.de-offer-logo img {
    width: 72px;
    height: 56px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px;
    background: #222;
}

.de-logo-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

/* Bonus */
.de-offer-bonus { text-align: left; }

.de-bonus-main {
    font-size: 1.55rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.de-bonus-type {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.4rem;
}

.de-bonus-code {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    font-family: monospace;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 0.22rem 0.55rem;
    border-radius: 6px;
}

/* Details */
.de-offer-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.de-detail-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
}

.de-detail-icon { font-size: 0.82rem; width: 18px; text-align: center; }

.de-detail-label {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    flex: 1;
}

.de-detail-value {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-align: right;
}

/* Tags */
.de-offer-tags {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.de-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.22rem 0.6rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.07);
    white-space: nowrap;
    text-align: center;
}

.de-sofort-tag {
    background: rgba(243, 156, 18, 0.12);
    color: #f39c12;
    border: 1px solid rgba(243, 156, 18, 0.2);
    font-weight: 700;
}

/* Rating */
.de-offer-rating { text-align: center; }

.de-stars {
    color: #f39c12;
    font-size: 0.95rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.25rem;
}

.de-rating-val {
    font-size: 0.88rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
}

/* Actions */
.de-offer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.de-btn-claim {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.88rem !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #cc0000, #8a0000) !important;
    border-color: transparent !important;
    box-shadow: 0 4px 18px rgba(204, 0, 0, 0.35) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.de-btn-claim:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(204, 0, 0, 0.5) !important;
}

.de-btn-review {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
    text-align: center;
}

.de-btn-review:hover { color: #f39c12; }

/* ============================================================
   PAYMENT STRIP
   ============================================================ */
.de-payments-strip {
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0;
}

.de-payments-strip h3 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
    margin-bottom: 1.25rem;
}

.de-payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.de-payment-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 30px;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    transition: all 0.2s ease;
    cursor: default;
}

.de-payment-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   REGULATIONS GRID
   ============================================================ */
.de-regulations {
    background: #0d0d0d;
    padding: 5rem 0 !important;
}

.de-regulations .section-header h2 { color: white !important; }
.de-regulations .section-header p { color: rgba(255,255,255,0.5) !important; }

.de-reg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.de-reg-card {
    background: #161616;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.de-reg-card:hover {
    transform: translateY(-4px);
    border-color: rgba(204, 0, 0, 0.2);
}

.de-reg-card.de-reg-highlight {
    border: 1px solid rgba(243, 156, 18, 0.2);
    background: linear-gradient(145deg, #1a1500, #161616 50%);
}

.de-reg-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.de-reg-card h4 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0.5rem !important;
}

.de-reg-card p {
    font-size: 0.84rem !important;
    color: rgba(255, 255, 255, 0.45) !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

.de-reg-status {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.de-reg-status.legal {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.de-reg-status.warning {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.de-reg-status.neutral {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================================
   DE FAQ
   ============================================================ */
.de-faq {
    background: #111;
    padding: 5rem 0 !important;
}

.de-faq .section-header h2 { color: white !important; }
.de-faq .section-header p { color: rgba(255,255,255,0.45) !important; }

.de-faq .faq-item {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.de-faq .faq-item.active {
    border-color: rgba(204, 0, 0, 0.2);
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.1);
}

.de-faq .faq-question h3 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.de-faq .faq-toggle {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.de-faq .faq-item.active .faq-toggle {
    background: linear-gradient(135deg, #cc0000, #8a0000) !important;
    border-color: transparent !important;
}

.de-faq .faq-answer p {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Dark footer override for DE page */
.de-faq ~ .footer {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .de-offer-card {
        grid-template-columns: 38px 1fr 1fr;
        grid-template-rows: auto;
    }
    .de-offer-tags { flex-direction: row; flex-wrap: wrap; }
    .de-offer-actions { flex-direction: row; }
    .de-btn-claim { width: auto; }
}

@media (max-width: 768px) {
    .de-hero { padding: 4rem 0 3rem; }
    .de-hero h1 { font-size: 1.75rem; }

    .de-offer-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .de-offer-logo { flex-direction: row; justify-content: flex-start; }

    .de-rank {
        position: absolute;
        top: 1rem;
        left: 1rem;
        font-size: 0.68rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        padding: 0.15rem 0.4rem;
    }

    .de-offer-details { display: grid; grid-template-columns: 1fr 1fr; }
    .de-offer-tags { flex-direction: row; flex-wrap: wrap; }
    .de-offer-actions { flex-direction: row; }
    .de-filters { gap: 0.5rem; }
    .de-sort { margin-left: 0; }
    .de-hero-stats { gap: 1rem; padding: 1.25rem; }
    .de-stat-divider { display: none; }
    .de-reg-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .de-reg-grid { grid-template-columns: 1fr; }
    .de-offer-details { grid-template-columns: 1fr; }
}
