/* ═══════════════════════════════════════════════════════════════════════
   m1n3minek.pl — Oficjalne Nowoczesne Portfolio Minecraft & Gaming
   Motyw: Emerald / Green Dark Glassmorphism, Ambient Glow, Ultra-Clean UI
   ═══════════════════════════════════════════════════════════════════════ */

:root {
    /* Kolorystyka bazy (Głęboki ciemny z akcentem morsko-błękitno-szmaragdowym) */
    --bg-dark: #060e14;
    --bg-surface: linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.01) 100%), rgba(8, 20, 30, 0.65);
    --bg-surface-hover: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(56, 189, 248, 0.04) 50%, rgba(16, 185, 129, 0.02) 100%), rgba(12, 28, 42, 0.82);
    --bg-surface-solid: #0c1d2b;
    --border: rgba(255, 255, 255, 0.09);
    --border-hover: rgba(56, 189, 248, 0.45);
    --border-glow: rgba(6, 182, 212, 0.25);

    /* Efekt Liquid Glass (Lustrzany blask, refrakcja, rozmycie) */
    --glass-blur: blur(22px) saturate(190%);
    --glass-inset-sheen: inset 0 1px 1px 0 rgba(255, 255, 255, 0.16), inset 0 -1px 1px 0 rgba(0, 0, 0, 0.35);
    --glass-inset-sheen-hover: inset 0 1px 2px 0 rgba(255, 255, 255, 0.32), inset 0 -1px 1px 0 rgba(0, 0, 0, 0.45);

    /* Główne akcenty: Połączenie Szmaragdu / Zieleni i Błękitu / Cyjanu */
    --primary: #06b6d4;
    --primary-light: #38bdf8;
    --primary-dark: #0284c7;
    --primary-glow: rgba(6, 182, 212, 0.3);

    --emerald: #10b981;
    --emerald-light: #4ade80;
    --emerald-dark: #059669;
    --emerald-glow: rgba(16, 185, 129, 0.3);

    --cyan: #06b6d4;
    --cyan-glow: rgba(6, 182, 212, 0.3);

    --blue: #3b82f6;
    --blue-glow: rgba(59, 130, 246, 0.3);

    --amber: #f59e0b;
    --amber-glow: rgba(245, 158, 11, 0.28);

    --rose: #f43f5e;
    --rose-glow: rgba(244, 63, 94, 0.28);

    --purple: #a855f7;
    --purple-glow: rgba(168, 85, 247, 0.28);

    /* Kolory tekstu */
    --text-white: #f8fafc;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Typografia */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Przejścia & Zaokrąglenia */
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ════════ RESET & BAZA ════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.65;
    position: relative;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #0f2738;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--emerald), var(--primary));
}

::selection {
    background: rgba(6, 182, 212, 0.35);
    color: #fff;
}

/* ════════ EFEKTY TŁA ════════ */
.bg-glow-top {
    position: fixed;
    top: -240px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 540px;
    background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.22) 0%, rgba(16, 185, 129, 0.12) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(95px);
}

.bg-glow-middle {
    position: fixed;
    top: 45%;
    left: -120px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, rgba(16, 185, 129, 0.08) 50%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
}

.bg-glow-bottom {
    position: fixed;
    bottom: -220px;
    right: -100px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(6, 182, 212, 0.12) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(110px);
}



/* ════════ NAWIGACJA (NAVBAR) ════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.008) 100%), rgba(6, 14, 20, 0.76);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 -1px 0 rgba(56, 189, 248, 0.12);
    transition: var(--transition);
}

.navbar.scrolled {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.015) 100%), rgba(6, 14, 20, 0.92);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), inset 0 -1px 0 rgba(6, 182, 212, 0.25);
    border-bottom-color: rgba(6, 182, 212, 0.3);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(56, 189, 248, 0.5);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.35);
}

.nav-logo-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.nav-logo-text {
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.nav-logo-tld {
    color: var(--primary-light);
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a i {
    font-size: 0.85rem;
    color: var(--text-dim);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a:hover i,
.nav-links a.active i {
    color: var(--primary-light);
}

.nav-discord-btn {
    background: linear-gradient(135deg, #5865F2, #4752C4) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(88, 101, 242, 0.35);
}

.nav-discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5) !important;
}

.nav-discord-btn i {
    color: #fff !important;
}

/* Przycisk menu mobilnego */
.nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-white);
    font-size: 1.2rem;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

/* ════════ GŁÓWNY WRAPPER ════════ */
.wrapper {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

/* ════════ HERO SECTION ════════ */
.hero-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 44px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), var(--glass-inset-sheen);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emerald), var(--primary), var(--blue), transparent);
    opacity: 0.85;
}

.hero-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.hero-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), rgba(6, 182, 212, 0.3), var(--border), transparent);
    width: 100%;
}

.hero-spotify-bottom {
    width: 100%;
}

.spotify-mini-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    max-width: 580px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.08) 0%, rgba(6, 182, 212, 0.04) 100%), rgba(8, 20, 30, 0.7);
    border: 1px solid rgba(30, 215, 96, 0.28);
    border-radius: var(--radius-md);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), var(--glass-inset-sheen);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.spotify-mini-card:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.14) 0%, rgba(6, 182, 212, 0.08) 100%), rgba(12, 28, 42, 0.85);
    border-color: rgba(30, 215, 96, 0.55);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(30, 215, 96, 0.22), var(--glass-inset-sheen-hover);
}

.spotify-mini-art-wrap {
    position: relative;
    flex-shrink: 0;
}

.spotify-mini-art {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.spotify-mini-badge-icon {
    position: absolute;
    bottom: -3px;
    right: -3px;
    font-size: 0.95rem;
    color: #1ed760;
    background: #060e14;
    border-radius: 50%;
    padding: 1px;
}

.spotify-mini-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    text-align: left;
}

.spotify-mini-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.spotify-mini-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1ed760;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.spotify-mini-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.spotify-mini-artist {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.spotify-mini-progress-box {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 2px;
}

.spotify-mini-times {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-dim);
    line-height: 1;
}

.spotify-mini-open {
    font-size: 0.9rem;
    color: var(--text-dim);
    flex-shrink: 0;
    transition: var(--transition);
}

.spotify-mini-card:hover .spotify-mini-open {
    color: #1ed760;
    transform: translate(2px, -2px);
}

.avatar-box {
    position: relative;
    flex-shrink: 0;
}

.avatar-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    background: #091722;
    border: 3px solid rgba(56, 189, 248, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 185, 129, 0.25), 0 0 18px rgba(6, 182, 212, 0.3);
    display: block;
    transition: var(--transition);
}

.avatar-photo:hover {
    transform: scale(1.04) rotate(-1deg);
    border-color: #38bdf8;
    box-shadow: 0 20px 45px rgba(6, 182, 212, 0.45), 0 0 30px rgba(16, 185, 129, 0.4);
}

.online-pulse {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    background-color: #22c55e;
    border-radius: 50%;
    border: 3.5px solid #060e14;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
    animation: pulseGlow 2s infinite ease-in-out;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.online-pulse.online {
    background-color: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

.online-pulse.idle {
    background-color: #f59e0b;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.8);
}

.online-pulse.dnd {
    background-color: #f43f5e;
    box-shadow: 0 0 12px rgba(244, 63, 94, 0.8);
}

.online-pulse.offline {
    background-color: #64748b;
    box-shadow: none;
    animation: none;
}

.discord-activity-tag {
    background: rgba(6, 182, 212, 0.1) !important;
    border-color: rgba(6, 182, 212, 0.35) !important;
    color: var(--text-light) !important;
}

.discord-activity-tag i {
    color: var(--primary-light) !important;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 18px rgba(34, 197, 94, 1);
        transform: scale(1.08);
    }
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.15));
    color: var(--primary-light);
    border: 1px solid rgba(56, 189, 248, 0.35);
    box-shadow: 0 2px 10px rgba(6, 182, 212, 0.2);
}

.hero-badge-discord {
    background: rgba(88, 101, 242, 0.15);
    color: #818cf8;
    border-color: rgba(88, 101, 242, 0.35);
    box-shadow: 0 2px 10px rgba(88, 101, 242, 0.2);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
    text-align: center;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #4ade80 0%, #38bdf8 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-bio {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 22px;
    max-width: 760px;
    line-height: 1.7;
    text-align: center;
}

.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%), rgba(8, 20, 30, 0.5);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-inset-sheen);
}

.meta-tag i {
    color: var(--primary-light);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 55%, #0284c7 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(6, 182, 212, 0.5);
    background: linear-gradient(135deg, #34d399 0%, #38bdf8 55%, #3b82f6 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%), rgba(10, 24, 36, 0.6);
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 1px solid var(--border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-inset-sheen);
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(56, 189, 248, 0.08) 100%), rgba(14, 32, 48, 0.8);
    border-color: rgba(56, 189, 248, 0.35);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), var(--glass-inset-sheen-hover);
}

/* ════════ NAGŁÓWKI SEKCJI ════════ */
.section {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.section-title-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.section-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ════════ SIATKA 6 SERWERÓW ════════ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), var(--glass-inset-sheen);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-6px);
    background: var(--bg-surface-hover);
    border-color: var(--border-hover);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.55), 0 0 25px var(--border-glow), var(--glass-inset-sheen-hover);
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover::after {
    opacity: 1;
}

.project-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.project-logo-wrap {
    position: relative;
}

.project-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: #0d2015;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    display: block;
    transition: var(--transition);
}

.project-card:hover .project-img {
    transform: scale(1.06);
    border-color: var(--primary-light);
}

.project-img-placeholder {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #0f2c1c, #091a11);
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-light);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Odznaki ról (Role Pills) */
.role-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border: 1px solid transparent;
}

/* Warianty ról */
.role-pill.owner {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 0 12px var(--amber-glow);
}

.role-pill.headadmin {
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
    border-color: rgba(244, 63, 94, 0.35);
    box-shadow: 0 0 12px var(--rose-glow);
}

.role-pill.admin {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.35);
}

.role-pill.developer {
    background: rgba(6, 182, 212, 0.15);
    color: #38bdf8;
    border-color: rgba(6, 182, 212, 0.35);
    box-shadow: 0 0 12px var(--cyan-glow);
}

.role-pill.designer {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 0 12px var(--purple-glow);
}

.role-pill.moderator {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 0 12px var(--primary-glow);
}

.role-pill.support {
    background: rgba(45, 212, 191, 0.15);
    color: #5eead4;
    border-color: rgba(45, 212, 191, 0.35);
}

.role-pill.partner {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.35);
}

.role-pill.soon {
    background: rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    border-color: rgba(255, 255, 255, 0.15);
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    min-height: 42px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.project-tag-item {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-dim);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.project-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.project-btn:hover {
    background: linear-gradient(135deg, var(--emerald), var(--primary));
    border-color: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(6, 182, 212, 0.35);
}

.project-btn i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.project-btn:hover i {
    transform: translateX(3px);
}

.project-btn-copy-ip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: var(--text-dim);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-family: inherit;
}

.project-btn-copy-ip:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--primary-light);
    color: var(--primary-light);
}

/* ════════ KAFELKI TAJEMNICZE (DUŻY ZNAK ZAPYTANIA) ════════ */
.project-card.mystery-card {
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 260px;
    padding: 24px;
    background: rgba(9, 23, 33, 0.45);
    border: 1px dashed rgba(56, 189, 248, 0.25);
    transition: var(--transition);
}

.project-card.mystery-card:hover {
    transform: translateY(-6px);
    background: rgba(14, 35, 50, 0.75);
    border-color: rgba(56, 189, 248, 0.55);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 25px rgba(6, 182, 212, 0.25);
}

.mystery-top {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.mystery-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: auto 0;
}

.mystery-icon-wrap {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.08);
    border: 2px dashed rgba(56, 189, 248, 0.35);
    display: grid;
    place-items: center;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
    transition: var(--transition);
}

.project-card.mystery-card:hover .mystery-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: rgba(6, 182, 212, 0.15);
    border-color: #38bdf8;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.35);
}

.mystery-symbol {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #4ade80, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}

.mystery-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.3px;
}

.mystery-sub {
    font-size: 0.84rem;
    color: var(--text-dim);
}

/* ════════ SEKCJA ARCHIWUM PROJEKTÓW ════════ */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.archive-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35), var(--glass-inset-sheen);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.archive-card:hover {
    transform: translateY(-4px);
    background: var(--bg-surface-hover);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(6, 182, 212, 0.2), var(--glass-inset-sheen-hover);
}

.archive-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.archive-emoji-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    font-size: 1.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    user-select: none;
}

.archive-card:hover .archive-emoji-wrap {
    transform: scale(1.08) rotate(3deg);
    border-color: var(--primary-light);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 6px 18px rgba(6, 182, 212, 0.3);
}

.role-pill.archive {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    border-color: rgba(255, 255, 255, 0.1);
}

.archive-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.archive-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.3px;
}

.archive-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.archive-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

/* ════════ SEKCJA CENNIK MONTAŻU WIDEO ════════ */
.pricing-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 920px;
    margin: 0 auto;
    width: 100%;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35), var(--glass-inset-sheen);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    background: var(--bg-surface-hover);
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(6, 182, 212, 0.22), var(--glass-inset-sheen-hover);
}

.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pricing-icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-emoji {
    font-size: 1.6rem;
    line-height: 1;
    user-select: none;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.3px;
}

.pricing-price-tag {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #38bdf8;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 6px 16px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(6, 182, 212, 0.15), var(--glass-inset-sheen);
}

.pricing-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-left: 38px;
}

.pricing-subsection {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 4px;
}

.pricing-subheading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
}

.accent-bar {
    display: inline-block;
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--emerald), var(--cyan));
    border-radius: 2px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.process-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-inset-sheen);
    transition: var(--transition);
}

.process-card:hover {
    border-color: rgba(56, 189, 248, 0.4);
    background: var(--bg-surface-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), var(--glass-inset-sheen-hover);
}

.process-num {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #38bdf8;
}

.process-text {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.45;
}

.pricing-rules-box {
    background: var(--bg-surface);
    border: 1px dashed rgba(56, 189, 248, 0.3);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-inset-sheen);
}

.pricing-rules-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.rule-dot {
    color: #38bdf8;
    font-weight: bold;
    margin-right: 6px;
}

.pricing-contact-box {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.14) 0%, rgba(16, 185, 129, 0.08) 100%), rgba(8, 20, 30, 0.7);
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 25px rgba(6, 182, 212, 0.18), var(--glass-inset-sheen);
}

.pricing-contact-header {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-contact-channels {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #38bdf8;
}

.pricing-link-tag {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.pricing-link-tag:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

.pricing-sep {
    color: var(--text-dim);
}

.pricing-payment-methods {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.pricing-payment-methods strong {
    color: var(--text-white);
}

.pricing-footer-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.pricing-footer-note strong {
    color: #38bdf8;
}

.pricing-note-sep {
    color: var(--text-dim);
    margin: 0 6px;
}

/* ════════ SEKCJA UMIEJĘTNOŚCI / CO ROBIĘ ════════ */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.skill-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35), var(--glass-inset-sheen);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
}

.skill-card:hover {
    transform: translateY(-4px);
    background: var(--bg-surface-hover);
    border-color: var(--border-hover);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45), var(--glass-inset-sheen-hover);
}

.skill-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.skill-green  { background: rgba(34, 197, 94, 0.15); color: var(--primary-light); border: 1px solid rgba(34, 197, 94, 0.3); }
.skill-cyan   { background: rgba(6, 182, 212, 0.15); color: var(--cyan); border: 1px solid rgba(6, 182, 212, 0.3); }
.skill-amber  { background: rgba(245, 158, 11, 0.15); color: var(--amber); border: 1px solid rgba(245, 158, 11, 0.3); }
.skill-purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }
.skill-indigo { background: rgba(88, 101, 242, 0.15); color: #5865F2; border: 1px solid rgba(88, 101, 242, 0.35); }

.skill-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
}

.skill-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.skill-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-light);
    text-decoration: none;
    margin-top: auto;
    transition: var(--transition);
}

.skill-more-link:hover {
    color: #fff;
    transform: translateX(3px);
}

/* ════════ DWUKOLUMNOWY UKŁAD (SOCIALE + SPOTIFY) ════════ */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.section-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Siatka Social Media */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

/* Lista Social Media */
.social-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), var(--glass-inset-sheen);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-item:hover {
    transform: translateX(6px);
    background: var(--bg-surface-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), var(--glass-inset-sheen-hover);
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: block;
}

.social-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}

.social-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--text-white);
}

.social-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.social-arrow {
    font-size: 0.85rem;
    color: var(--text-dim);
    transition: var(--transition);
}

.social-item:hover .social-arrow {
    color: var(--text-white);
    transform: translateX(3px);
}

/* Kolorystyka konkretnych portali */
.social-item.discord .social-icon { background: rgba(88, 101, 242, 0.15); color: #5865F2; }
.social-item.discord:hover { border-color: rgba(88, 101, 242, 0.5); box-shadow: 0 4px 20px rgba(88, 101, 242, 0.25); }

.social-item.tiktok .social-icon { background: rgba(254, 44, 85, 0.15); color: #fe2c55; }
.social-item.tiktok:hover { border-color: rgba(254, 44, 85, 0.5); box-shadow: 0 4px 20px rgba(254, 44, 85, 0.25); }

.social-item.youtube .social-icon { background: rgba(255, 0, 0, 0.15); color: #ff0000; }
.social-item.youtube:hover { border-color: rgba(255, 0, 0, 0.5); box-shadow: 0 4px 20px rgba(255, 0, 0, 0.25); }

.social-item.instagram .social-icon { background: rgba(225, 48, 108, 0.15); color: #e1306c; }
.social-item.instagram:hover { border-color: rgba(225, 48, 108, 0.5); box-shadow: 0 4px 20px rgba(225, 48, 108, 0.25); }

.social-item.vinted .social-icon { background: rgba(9, 177, 186, 0.15); color: #09b1ba; }
.social-item.vinted:hover { border-color: rgba(9, 177, 186, 0.5); box-shadow: 0 4px 20px rgba(9, 177, 186, 0.25); }

.social-item.gunslol .social-icon { background: rgba(168, 85, 247, 0.15); color: #a855f7; }
.social-item.gunslol:hover { border-color: rgba(168, 85, 247, 0.5); box-shadow: 0 4px 20px rgba(168, 85, 247, 0.25); }

.social-item.steam .social-icon { background: rgba(102, 192, 244, 0.15); color: #66c0f4; }
.social-item.steam:hover { border-color: rgba(102, 192, 244, 0.5); box-shadow: 0 4px 20px rgba(102, 192, 244, 0.25); }

.social-item.github .social-icon { background: rgba(255, 255, 255, 0.12); color: #f8fafc; }
.social-item.github:hover { border-color: rgba(255, 255, 255, 0.4); box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15); }

/* Spotify Box */
.spotify-box {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.spotify-box:hover {
    border-color: rgba(30, 215, 96, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 25px rgba(30, 215, 96, 0.2);
}

.spotify-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spotify-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1ed760;
}

.spotify-bars {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.spotify-bar {
    width: 3px;
    background: #1ed760;
    border-radius: 1px;
    animation: barBounce 1.2s ease-in-out infinite alternate;
}

.spotify-bar:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.spotify-bar:nth-child(2) { height: 14px; animation-delay: 0.3s; }
.spotify-bar:nth-child(3) { height: 9px; animation-delay: 0.2s; }
.spotify-bar:nth-child(4) { height: 12px; animation-delay: 0.4s; }

@keyframes barBounce {
    0% { height: 4px; }
    100% { height: 14px; }
}

.spotify-iframe-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
}

/* Spotify Live Card */
.spotify-live-container {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(30, 215, 96, 0.25);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.spotify-live-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.spotify-live-art {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
    flex-shrink: 0;
}

.spotify-live-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.spotify-live-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotify-live-artist {
    font-size: 0.82rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotify-live-progress-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spotify-progress-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.spotify-progress-bar {
    height: 100%;
    background: #1ed760;
    border-radius: 999px;
    width: 0%;
    transition: width 1s linear;
}

.spotify-live-times {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-dim);
}

.spotify-listen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(30, 215, 96, 0.15);
    color: #1ed760;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(30, 215, 96, 0.3);
    transition: var(--transition);
}

.spotify-listen-btn:hover {
    background: #1ed760;
    color: #000;
    box-shadow: 0 4px 12px rgba(30, 215, 96, 0.35);
}

/* ════════ SEKCJA KONTAKTOWA ════════ */
.contact-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), var(--glass-inset-sheen);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-tile {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), var(--glass-inset-sheen);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.contact-tile:hover {
    background: var(--bg-surface-hover);
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-glow), var(--glass-inset-sheen-hover);
}

.contact-tile-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.15));
    color: var(--primary-light);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.contact-tile-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-white);
}

.contact-tile-value {
    font-size: 0.88rem;
    color: var(--text-muted);
    word-break: break-all;
}

.contact-tile-badge {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
}

/* ════════ STOPKA (FOOTER) ════════ */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.footer-brand span {
    color: var(--primary-light);
}

.footer-copy {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-credit {
    font-size: 0.82rem;
    color: var(--text-dim);
}

.footer-credit strong {
    color: var(--primary-light);
}

/* ════════ TOAST NOTIFICATION ════════ */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(11, 23, 17, 0.95);
    border: 1px solid rgba(34, 197, 94, 0.5);
    padding: 14px 22px;
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px var(--primary-glow);
    backdrop-filter: blur(16px);
    animation: toastSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    pointer-events: auto;
}

.toast i {
    color: #22c55e;
    font-size: 1.1rem;
}

.toast.hide {
    animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
}

/* ════════ FLOATING BACK TO TOP ════════ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-white);
    display: grid;
    place-items: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--emerald), var(--primary));
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(6, 182, 212, 0.4);
}

/* ════════ RESPONSYWNOŚĆ (MEDIA QUERIES) ════════ */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wrapper {
        padding: 24px 16px 60px;
        gap: 50px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(6, 14, 20, 0.98);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 24px;
        gap: 12px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hero-card {
        padding: 28px 20px;
    }

    .hero-top {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .hero-badge-wrap,
    .hero-meta-row,
    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

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

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

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

    .two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-card {
        padding: 28px 20px;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
    }

    .toast-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-desc {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
