#giveawaySection { display: none; margin: 30px 0 50px; }

.gw-banner {
    position: relative;
    background: linear-gradient(105deg, #0d0d18 0%, #140a1e 40%, #1a0a1a 70%, #0d0d18 100%);
    border: 1px solid rgba(255,20,147,0.2);
    border-bottom: none;
    border-radius: 14px 14px 0 0;
    padding: 26px 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.gw-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg, transparent, transparent 12px,
        rgba(255,20,147,0.018) 12px, rgba(255,20,147,0.018) 13px
    );
    pointer-events: none;
}

.gw-banner::after {
    content: '';
    position: absolute;
    top: -40px; left: -40px;
    width: 260px; height: 200px;
    background: radial-gradient(ellipse, rgba(255,20,147,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.gw-banner-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.gw-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,20,147,0.12);
    border: 1px solid rgba(255,20,147,0.4);
    color: #ff1493;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
}

.gw-live-dot {
    width: 6px; height: 6px;
    background: #ff1493;
    border-radius: 50%;
    animation: gwPulse 1.4s infinite ease-in-out;
    flex-shrink: 0;
}

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

.gw-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.1rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.5px;
    margin: 0;
}

.gw-main-title span { color: #ff1493; }

.gw-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.3px;
    line-height: 1.6;
    margin-top: 4px;
}

.gw-subtitle .hl {
    font-weight: 800;
    color: #ff1493;
    background: rgba(255,20,147,0.1);
    border: 1px solid rgba(255,20,147,0.25);
    padding: 1px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.gw-banner-right {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

/* +18 badge   pelna tresc, poprawna pisownia */
.gw-age-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0d0d18;
    border: 2px solid #ff4444;
    color: #ff4444;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.gw-stage {
    background: rgba(8,8,16,0.97);
    border: 1px solid rgba(255,20,147,0.15);
    border-top: none;
    border-radius: 0 0 14px 14px;
    padding: 24px 24px 28px;
    position: relative;
}

.gw-stage::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent, rgba(255,20,147,0.5) 30%,
        rgba(255,20,147,0.5) 70%, transparent);
}

.gw-carousel-wrap     { position: relative; }
.gw-carousel-viewport { overflow: hidden; }

.gw-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.35s ease;
}

.gw-card {
    flex-shrink: 0;
    background: #0d0d1a;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
    animation: gwFadeUp 0.42s ease both;
}

@keyframes gwFadeUp {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.gw-card:hover {
    border-color: rgba(255,20,147,0.4);
    box-shadow: 0 6px 22px rgba(0,0,0,0.5);
}

/* Tr jkat z numerem */
.gw-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 36px; height: 36px;
    background: var(--rarity, #ff1493);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.85;
    z-index: 3;
}

.gw-card:hover::before { opacity: 1; }

.gw-card-num {
    position: absolute;
    top: 4px; left: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 900;
    color: #000;
    z-index: 4;
}

.gw-card-watermark {
    position: absolute;
    bottom: -10px; right: -6px;
    font-family: 'Inter', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

/* -- G RNY PASEK: NOWOSC po lewej, cena po prawej -- */
.gw-card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    /* padding-left 40px = nie przykrywa tr jkata z numerem */
    padding: 9px 12px 0 40px;
    position: relative;
    z-index: 2;
    min-height: 34px;
}

/* NOWOSC   zielono-turkusowy, wyraznie inny niz tr jkat */
.gw-new-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(90deg, #00c896, #00e5b0);
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.gw-price-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px solid;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Obszar obrazka */
.gw-card-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px 6px;
    min-height: 148px;
    overflow: hidden;
    background: linear-gradient(175deg, rgba(18,14,30,0.6) 0%, rgba(8,8,16,0.8) 100%);
    z-index: 1;
}

.gw-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.gw-card-img img {
    width: 100%;
    max-width: 230px;
    height: 118px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.7));
    position: relative;
    z-index: 1;
}

.gw-img-placeholder {
    height: 118px; width: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #1e1e33; font-size: 2rem;
    position: relative; z-index: 1;
}

.gw-st-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: linear-gradient(90deg, #cf6a32, #e8813d);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem; font-weight: 800;
    padding: 2px 7px; border-radius: 3px;
    z-index: 4;
}

.gw-rarity-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px; opacity: 0.7; z-index: 2;
}

/* Nazwa skina   wiecej przestrzeni miedzy pattern a weapon */
.gw-card-info {
    padding: 13px 14px 8px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px; /* zwiekszono z 2px   wyrazna przestrzen miedzy nazwami */
}

/* Gl wna nazwa (np. Dragon Lore)   kolor = kolor rzadkosci (ustawiony inline z JS) */
.gw-pattern-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    word-break: break-word;
}

/* Nazwa broni (np. AWP)   zawsze biala */
.gw-weapon-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.gw-info-sep {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 2px 14px 0;
}

.gw-card-footer {
    margin-top: auto;
    padding: 10px 14px 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 7px;
    position: relative;
    z-index: 2;
}

.gw-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.gw-meta-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.gw-meta-val {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-align: right;
}

.gw-wear-chip {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.gw-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    gap: 16px;
}

.gw-controls.hidden { display: none; }

.gw-trackbar {
    flex: 1; height: 3px;
    background: rgba(255,255,255,0.07);
    border-radius: 2px; overflow: hidden;
}

.gw-trackbar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff1493, #ff6ec7);
    border-radius: 2px;
    transition: width 0.35s ease;
}

.gw-counter {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    color: rgba(255,255,255,0.25);
    flex-shrink: 0; letter-spacing: 1px; white-space: nowrap;
}

.gw-counter em { color: #ff1493; font-style: normal; }

.gw-arrows { display: flex; gap: 8px; }

.gw-arrow {
    width: 38px; height: 38px;
    background: rgba(255,20,147,0.08);
    border: 1px solid rgba(255,20,147,0.3);
    border-radius: 8px;
    color: #ff1493;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.gw-arrow:hover { background: #ff1493; color: #fff; border-color: #ff1493; }
.gw-arrow.disabled { opacity: 0.2; pointer-events: none; }

.gw-join-wrap {
    margin-top: 24px;
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
}

#gwJoinBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 44px;
    background: #ff1493;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem; font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 8px;
    transition: background 0.22s;
    box-shadow: 0 4px 18px rgba(255,20,147,0.3);
}

#gwJoinBtn:hover { background: #e0107f; }

.gw-join-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.22);
}

/* Ekran zakonczenia */
.gw-ended-overlay {
    position: relative; min-height: 260px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; border-radius: 8px;
}

.gw-ended-content {
    position: relative; z-index: 2;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; padding: 40px 20px;
    animation: gwEndedIn 0.55s ease both;
}

@keyframes gwEndedIn { from { opacity: 0; } to { opacity: 1; } }

.gw-ended-icon {
    width: 72px; height: 72px;
    background: rgba(255,20,147,0.12);
    border: 2px solid rgba(255,20,147,0.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: #ff1493;
    animation: gwTrophyRing 2s infinite ease-in-out;
}

@keyframes gwTrophyRing {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,20,147,0.25); }
    50%       { box-shadow: 0 0 0 10px rgba(255,20,147,0); }
}

.gw-ended-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem; font-weight: 900;
    color: #fff; letter-spacing: 1px; text-transform: uppercase;
}

.gw-ended-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.6;
}

.gw-ended-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 28px; background: #5865F2; color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    text-decoration: none; border-radius: 7px; margin-top: 4px;
    transition: background 0.2s;
}

.gw-ended-btn:hover { background: #4752c4; }

.gw-ended-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.gw-particle {
    position: absolute; top: 50%; left: 50%;
    width: 6px; height: 6px; border-radius: 50%;
    background: #ff1493; opacity: 0;
    animation: gwParticleFly 2.4s ease-out infinite;
    animation-delay: calc(var(--s, 0) * 0.12s);
}

.gw-particle:nth-child(even)  { background: #ff6ec7; width: 4px; height: 4px; }
.gw-particle:nth-child(3n)    { background: #f0ba35; }
.gw-particle:nth-child(4n)    { background: #fff; width: 3px; height: 3px; }

@keyframes gwParticleFly {
    0%   { opacity: 0; transform: translate(-50%,-50%) rotate(var(--r,0deg)) translate(0,0); }
    15%  { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%,-50%) rotate(var(--r,0deg)) translate(0,-110px); }
}

@media (max-width: 768px) {
    .gw-banner { padding: 20px 18px; border-radius: 10px 10px 0 0; }
    .gw-main-title { font-size: 1.5rem; }
    .gw-stage { padding: 16px 12px 22px; border-radius: 0 0 10px 10px; }
    #gwJoinBtn { padding: 13px 28px; font-size: 0.82rem; letter-spacing: 2px; }
    .gw-join-note { display: none; }
    .gw-age-pill { font-size: 0.62rem; padding: 5px 10px; }
}

@media (max-width: 480px) {
    .gw-card-img img { max-width: 190px; height: 100px; }
    .gw-main-title { font-size: 1.3rem; }
}
/* === PROMO BANNER (similar to csgo-skins deposit info) === */
.gw-promo-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 18px 0 0;
    padding: 18px 24px;
    background: linear-gradient(105deg, #0a1a3a 0%, #0d2250 40%, #0a1a3a 100%);
    border: 1px solid rgba(6,182,212,0.3);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.22s, box-shadow 0.22s;
}

.gw-promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg, transparent, transparent 14px,
        rgba(6,182,212,0.025) 14px, rgba(6,182,212,0.025) 15px
    );
    pointer-events: none;
}

.gw-promo-banner::after {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 200px; height: 160px;
    background: radial-gradient(ellipse, rgba(6,182,212,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.gw-promo-banner:hover {
    border-color: rgba(6,182,212,0.6);
    box-shadow: 0 4px 20px rgba(6,182,212,0.15);
}

.gw-promo-coins {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.gw-coin-icon {
    font-size: 1.4rem;
    color: #f0b429;
    text-shadow: 0 0 10px rgba(240,180,41,0.5);
    animation: gwCoinSpin 3s ease-in-out infinite;
}

.gw-coin-icon:nth-child(2) { animation-delay: 0.4s; font-size: 1.1rem; opacity: 0.75; }
.gw-coin-icon:nth-child(3) { animation-delay: 0.8s; font-size: 0.9rem; opacity: 0.5; }

@keyframes gwCoinSpin {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-4px) scale(1.08); }
}

.gw-promo-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.gw-promo-main {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #e2f4ff;
    margin: 0 0 5px;
    line-height: 1.4;
}

.gw-promo-hl {
    color: #06b6d4;
    background: rgba(6,182,212,0.12);
    border: 1px solid rgba(6,182,212,0.3);
    padding: 1px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.gw-promo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.42);
    margin: 0;
    line-height: 1.5;
}

.gw-promo-arrow {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: rgba(6,182,212,0.1);
    border: 1px solid rgba(6,182,212,0.3);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #06b6d4;
    font-size: 0.85rem;
    position: relative; z-index: 1;
    transition: background 0.2s, color 0.2s;
}

.gw-promo-banner:hover .gw-promo-arrow {
    background: #06b6d4;
    color: #fff;
}

@media (max-width: 560px) {
    .gw-promo-banner { padding: 14px 16px; gap: 12px; }
    .gw-promo-coins { flex-direction: row; }
    .gw-promo-main { font-size: 0.82rem; }
    .gw-promo-sub { display: none; }
}