:root {
    --card-bg: rgba(10, 10, 15, 0.85);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --kick-green: #00e659;
    --purple-main: #8e55fc;
    --csgoskins-hex: #39b9e7;
    --egopeek-hex: #8e55fc;
    --pirateswap-hex: #F58E3E;
    --warning-red: #ff4d4d;
}

/* --- CUSTOM SCROLLBAR --- */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(142, 85, 252, 0.5) #050509;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050509;
}

::-webkit-scrollbar-thumb {
    background: rgba(142, 85, 252, 0.5);
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--purple-main);
}
/* ------------------------ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: var(--text-main) !important;
}

body {
    background-color: #050509;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(26, 11, 46, 0.95) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(26, 11, 46, 0.95) 0%, transparent 45%),
        linear-gradient(135deg, #050509 45%, #1a0b2e 100%);
    background-size: 200% 200%;
    animation: bgMove 15s ease-in-out infinite alternate;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    overflow-x: hidden;
}

@keyframes bgMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fIn 0.6s ease forwards;
}

@keyframes fIn { to { opacity: 1; transform: translateY(0); } }

.container { width: 100%; max-width: 740px; position: relative; z-index: 2; }

.section-title {
    font-size: 12px;
    color: var(--text-muted) !important;
    margin-bottom: 15px;
    margin-top: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 5px;
}

.profile-section {
    background-color: var(--card-bg);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    padding: 26px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.profile-section:hover {
    transform: translateY(-2px);
    border-color: rgba(142, 85, 252, 0.3);
}

.profile-info { display: flex; align-items: center; gap: 20px; }
.avatar-container { width: 80px; height: 80px; border-radius: 50%; border: 2px solid var(--purple-main); overflow: hidden; }
.avatar { width: 100%; height: 100%; object-fit: cover; }
.profile-text { display: flex; flex-direction: column; gap: 4px; }
.contact-box { font-size: 12px; margin-bottom: 4px; }
.contact-label { color: var(--text-muted) !important; font-weight: 600; }
.contact-email { color: #ffffff !important; font-weight: 700; transition: color 0.3s ease; }
.contact-email:hover { color: var(--purple-main) !important; text-shadow: 0 0 15px var(--purple-main); }
.username { font-size: 26px; font-weight: 800; display: flex; align-items: center; gap: 12px; }

.live-badge-small {
    background-color: rgba(231, 76, 60, 0.2);
    color: var(--warning-red) !important;
    border: 1.5px solid var(--warning-red);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
}

.live-badge-small.offline {
    background-color: rgba(156, 163, 175, 0.1);
    color: var(--text-muted) !important;
    border-color: rgba(156, 163, 175, 0.3);
    cursor: default;
}

.pulse-dot {
    width: 7px; height: 7px;
    background-color: var(--warning-red);
    border-radius: 50%;
    animation: livePulse 1s infinite alternate;
}

@keyframes livePulse {
    0% { opacity: 1; transform: scale(1); box-shadow: 0 0 5px var(--warning-red); }
    100% { opacity: 0.3; transform: scale(0.8); box-shadow: 0 0 0px transparent; }
}

.badge-live-18 {
    background-color: rgba(231, 76, 60, 0.2) !important;
    color: var(--warning-red) !important;
    border: 1.5px solid var(--warning-red);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 800;
    margin-left: 8px;
}

.social-links { display: flex; gap: 14px; flex-wrap: wrap; }
.social-icon {
    display: flex; justify-content: center; align-items: center;
    width: 44px; height: 44px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1.2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.social-icon svg { width: 20px; height: 20px; fill: #ffffff !important; transition: 0.3s; }
.social-icon:hover { transform: translateY(-6px); border-color: transparent; }
.social-icon:hover svg { filter: none; }
.social-icon:nth-child(1):hover { background-color: #9146FF; box-shadow: 0 5px 15px rgba(145, 70, 255, 0.4); } 
.social-icon:nth-child(2):hover { background-color: var(--kick-green); box-shadow: 0 5px 15px rgba(0, 230, 89, 0.4); } 
.social-icon:nth-child(2):hover svg { fill: #000000 !important; } 
.social-icon:nth-child(3):hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4); } 
.social-icon:nth-child(4):hover { background-color: #FF0000; box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4); } 
.social-icon:nth-child(5):hover { background-color: #5865F2; box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4); } 
.social-icon:nth-child(6):hover { background-color: #000000; border-color: #ffffff; box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3); } 

.links-list { display: flex; flex-direction: column; gap: 18px; }

.glass-banner {
    display: flex; flex-direction: column; gap: 16px;
    background-color: rgba(10, 10, 15, 0.6); backdrop-filter: blur(20px);
    border-width: 2px; border-style: solid; border-radius: 24px;
    padding: 24px 30px; margin-bottom: 18px; cursor: pointer; text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background-color 0.3s ease;
}

.card-kick { border-color: var(--kick-green); }
.card-pirateswap { border-color: var(--pirateswap-hex); }
.glass-banner:hover { transform: translateY(-5px) scale(1.02); background-color: rgba(15, 15, 20, 0.7); }
.card-kick:hover { box-shadow: 0 10px 30px rgba(0, 230, 89, 0.25); }
.card-pirateswap:hover { box-shadow: 0 10px 30px rgba(245, 142, 62, 0.25); }

.partner-card {
    background-color: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    border-width: 2px;
    border-style: solid;
    border-radius: 24px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.card-csgo { border-color: var(--csgoskins-hex); }
.card-egopeek { border-color: var(--egopeek-hex); }

.partner-card:hover { transform: translateY(-6px) scale(1.015); }
.card-csgo:hover { box-shadow: 0 10px 30px rgba(57, 185, 231, 0.25); }
.card-egopeek:hover { box-shadow: 0 10px 30px rgba(142, 85, 252, 0.25); }

.partner-header {
    display: flex; flex-direction: column; gap: 16px;
    padding: 24px 30px; text-decoration: none;
    border-top-left-radius: 22px; border-top-right-radius: 22px;
    transition: background-color 0.3s ease;
}

.card-csgo .partner-header { border-bottom: 1px solid rgba(57, 185, 231, 0.4); }
.card-egopeek .partner-header { border-bottom: 1px solid rgba(142, 85, 252, 0.4); }
.partner-header:hover { background-color: rgba(255, 255, 255, 0.02); }

.partner-content {
    padding: 24px 30px;
    background-color: rgba(0, 0, 0, 0.15);
    border-bottom-left-radius: 22px; border-bottom-right-radius: 22px;
}

.glass-banner-top { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.glass-brand { display: flex; align-items: center; gap: 15px; }
.glass-logo {
    width: 60px; height: 60px; background-color: rgba(0,0,0,0.5); border-radius: 14px;
    display: flex; justify-content: center; align-items: center; overflow: hidden;
    flex-shrink: 0; border: 1px solid rgba(255, 255, 255, 0.05);
}
.glass-logo img { width: 100%; height: 100%; object-fit: contain; }
.glass-brand h3 { font-size: 18px; font-weight: 800; margin-bottom: 0; display: flex; align-items: center; gap: 8px; }

.glass-arrow {
    width: 36px; height: 36px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.08);
    display: flex; justify-content: center; align-items: center; transition: background-color 0.3s ease;
}
.partner-header:hover .glass-arrow, .glass-banner:hover .glass-arrow { background-color: rgba(255, 255, 255, 0.2); }

.glass-banner-bottom { display: flex; justify-content: space-between; align-items: flex-end; width: 100%; }
.glass-benefits { display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px; align-items: center; }
.glass-benefits span {
    color: #ffffff !important; font-size: 10.5px; font-weight: 700; padding: 4px 12px;
    border-radius: 20px; letter-spacing: 0.3px; text-transform: uppercase;
}

.card-csgo .glass-benefits span { border: 1px solid rgba(57, 185, 231, 0.4); background: rgba(57, 185, 231, 0.08); }
.card-egopeek .glass-benefits span { border: 1px solid rgba(142, 85, 252, 0.4); background: rgba(142, 85, 252, 0.08); }
.card-pirateswap .glass-benefits span { border: 1px solid rgba(245, 142, 62, 0.4); background: rgba(245, 142, 62, 0.08); }
.card-kick .glass-benefits span { border: 1px solid rgba(0, 230, 89, 0.4); background: rgba(0, 230, 89, 0.08); }

.glass-code-wrap { display: flex; align-items: center; gap: 8px; }
.glass-label { font-size: 11px; font-weight: 700; color: var(--text-muted) !important; text-transform: uppercase; }
.glass-code-box {
    background: rgba(255, 255, 255, 0.05); border: 1px dashed rgba(255, 255, 255, 0.3);
    padding: 6px 12px; border-radius: 24px; display: flex; align-items: center;
}
.glass-code-text { font-size: 12px; font-weight: 800; color: #ffffff !important; letter-spacing: 0.5px; }

.giveaway-list { display: flex; flex-direction: column; gap: 8px; }
.giveaway-grid { display: grid; grid-template-columns: 3.5fr 1fr 1.2fr 1.5fr; align-items: center; gap: 15px; width: 100%; }
.giveaway-table-header { padding: 0 15px 10px 15px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 10px; }
.col-header { font-size: 11px; color: var(--text-muted) !important; font-weight: 600; }

.text-center { display: flex; justify-content: center; text-align: center; }

.giveaway-item {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(57, 185, 231, 0.2);
    border-radius: 12px; padding: 10px 15px; transition: all 0.3s ease;
}
.giveaway-item:hover { background: rgba(57, 185, 231, 0.08); border-color: rgba(57, 185, 231, 0.5); transform: scale(1.01); }

.giveaway-weapon { display: flex; align-items: center; gap: 15px; }
.combo-images { display: flex; gap: 8px; align-items: center; }

.thumb-square {
    width: 44px; height: 44px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(57, 185, 231, 0.4);
    border-radius: 8px; display: flex; justify-content: center; align-items: center;
}

.giveaway-img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 0 4px rgba(255,255,255,0.2)); }

.giveaway-name-box { display: flex; flex-direction: column; gap: 2px; }
.giveaway-name { font-size: 12.5px; font-weight: 700; color: #ffffff !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: flex; align-items: center; }
.giveaway-wear { font-size: 11px; color: var(--text-muted) !important; display: flex; align-items: center; gap: 6px; }

.gratis-badge {
    background-color: rgba(0, 230, 89, 0.15);
    color: var(--kick-green) !important;
    border: 1px solid rgba(0, 230, 89, 0.4);
    font-size: 8.5px;
    padding: 2px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.stat-badge { font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: 6px; white-space: nowrap; }
.stat-value { background: rgba(0, 230, 89, 0.1); color: #00e659 !important; border: 1px solid rgba(0, 230, 89, 0.3); }
.stat-depo { background: rgba(57, 185, 231, 0.1); color: #39b9e7 !important; border: 1px solid rgba(57, 185, 231, 0.3); }
.stat-date { font-size: 11px; color: #ffffff !important; font-weight: 600; white-space: nowrap;}

.egopeek-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.egopeek-item {
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(142, 85, 252, 0.2); border-radius: 12px;
    padding: 10px; display: flex; flex-direction: column; align-items: center; transition: all 0.3s ease; text-decoration: none;
}
.egopeek-item:hover { transform: translateY(-3px) scale(1.02); border-color: rgba(142, 85, 252, 0.6); background: rgba(142, 85, 252, 0.05); }
.egopeek-item img { width: 100%; height: 80px; object-fit: contain; margin-bottom: 10px; }
.egopeek-btn {
    width: 100%; background: #390d8a; color: #ffffff !important; font-size: 9px;
    font-weight: 700; padding: 6px 4px; border-radius: 4px; text-align: center;
    text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid #5a1bcc;
}

.card-soon {
    padding: 24px; display: flex; justify-content: center; align-items: center;
    background-color: rgba(255, 255, 255, 0.02) !important; border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px; margin-top: 10px; cursor: default;
}
.soon-text { font-size: 13px; font-weight: 600; color: var(--text-muted) !important; letter-spacing: 1px; text-transform: uppercase; }

.footer { margin-top: 50px; text-align: center; opacity: 0.7; padding-bottom: 20px; }
.footer p { font-size: 11px; color: var(--text-muted) !important; line-height: 1.6; }
.creator-link { color: #ffffff !important; font-weight: 800; transition: all 0.3s ease; }
.creator-link:hover { color: var(--purple-main) !important; text-shadow: 0 0 10px var(--purple-main); }

@media (max-width: 720px) {
    .giveaway-grid { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
    .giveaway-table-header { display: none; }
    .text-center { justify-content: flex-start; text-align: left; }
    .stat-date::before { content: "Dostępny od: "; color: var(--text-muted); font-weight: 400;}
}

@media (max-width: 650px) {
    .profile-section { flex-direction: column; text-align: center; padding: 26px 20px; gap: 15px;}
    .profile-info { flex-direction: column; gap: 12px; }
    .social-links { justify-content: center; margin-top: 5px; }
    .partner-header, .partner-content, .glass-banner { padding: 24px 20px; gap: 20px; }
    .glass-banner-top, .glass-banner-bottom { flex-direction: column; gap: 15px; align-items: center; text-align: center; }
    .glass-benefits { justify-content: center; }
    .glass-brand h3 { justify-content: center; }
    .egopeek-grid { grid-template-columns: repeat(2, 1fr); }
}