.trader-hero {
    display: block;
    position: relative;
    max-width: 1200px;
    margin: 2.2rem auto 0;
    padding: 0 1.5rem;
    overflow: hidden;
    min-height: auto;
    background: transparent;
    color: var(--text-white);
}

.trader-hero .hero-content {
    max-width: 900px;
    margin: 0;
    padding: 2.15rem 2rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.trader-title {
    margin-bottom: 0.8rem;
    color: var(--text-white);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.98;
    text-shadow:
        0 10px 26px rgba(0, 0, 0, 1),
        0 0 3px rgba(0, 0, 0, 0.98),
        0 0 18px rgba(0, 0, 0, 0.8);
}

body {
    background-color: #000;
    background-image: url('/images/hero-premium.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 78px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

html {
    overflow-y: scroll !important;
    scrollbar-gutter: stable both-edges;
}

body {
    overflow-y: scroll;
}

header {
    background: rgba(15, 20, 25, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

footer {
    background: rgba(24, 24, 24, 0.68);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(6px) saturate(110%);
    -webkit-backdrop-filter: blur(6px) saturate(110%);
    margin-top: auto;
}

.trader-section {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding: 0 1.5rem 2rem;
}

.trader-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
}

.trader-card {
    padding: 1.75rem;
    border-radius: 20px;
    background: rgba(10, 12, 16, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.trader-block + .trader-block {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trader-block h2 {
    margin-bottom: 0.85rem;
    color: #ffffff;
    font-size: 1.25rem;
    text-shadow: 0 7px 18px rgba(0, 0, 0, 0.98);
}

.trader-block p,
.trader-list li,
.trader-item {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
}

.trader-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.trader-item {
    display: grid;
    gap: 0.2rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trader-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trader-item strong {
    color: #ffffff;
    font-weight: 600;
}

.trader-item a,
.trader-list a {
    color: #ff6a74;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-base);
}

.trader-item a:hover,
.trader-list a:hover {
    color: #ffffff;
}

.trader-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
        padding-top: 86px;
    }

    .trader-hero {
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    .trader-hero .hero-content {
        padding: 1.6rem 1.25rem;
        border-radius: 18px;
    }

    .trader-title {
        font-size: clamp(1.95rem, 10vw, 3rem);
    }

    .trader-section {
        margin-top: 1rem;
        padding: 0 1rem 2rem;
    }

    .trader-card {
        padding: 1.35rem;
        border-radius: 16px;
    }

    .trader-grid {
        grid-template-columns: 1fr;
    }
}
