* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    background: #121212;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Subtelne poĹ›wiaty w tle (bez widocznych kĂłĹ‚) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 30% 40%, rgba(33,169,255,0.03) 0%, transparent 70%),
            radial-gradient(circle at 70% 80%, rgba(33,169,255,0.02) 0%, transparent 80%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

main, header, footer {
    position: relative;
    z-index: 1;
}

/* Header */
header {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(33, 169, 255, 0.2);
    backdrop-filter: blur(10px);
    background: rgba(18, 18, 18, 0.8);
}

.logo {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(33, 169, 255, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.profile-pic {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #21a9ff, #1a7acc);
    padding: 4px;
    box-shadow: 0 20px 60px rgba(33, 169, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-pic:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(33, 169, 255, 0.4);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.bio {
    flex: 1;
}

.bio h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #21a9ff, #1a7acc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 2px;
}

.bio p {
    font-size: 16px;
    line-height: 1.8;
    color: #b0b0b0;
}

/* Video Section */
.video-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

#videoLink {
    display: block;
    text-decoration: none;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
    box-shadow: 0 20px 60px rgba(33, 169, 255, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(33, 169, 255, 0.3);
    margin: 20px auto;
}

.video-container:hover {
    box-shadow: 0 30px 80px rgba(33, 169, 255, 0.3);
    transform: translateY(-8px);
    border-color: #21a9ff;
}

#thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    margin-top: 20px;
}

.video-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}

/* Social Links */
.social {
    padding: 40px 20px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

@media screen and (max-width: 768px) {
    .social-links {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 350px;
        margin: 25px auto 0;
    }
}

@media screen and (max-width: 480px) {
    .social-links {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        max-width: 290px;
        margin: 25px auto 0;
    }
}

.social-icon, .sociale-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #2a2a2a;
    border-radius: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #3a3a3a;
    text-decoration: none;
}

.social-icon:hover, .sociale-icon:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(33, 169, 255, 0.3);
    border-color: #21a9ff;
    background: #21a9ff;
}

.social-icon img, .sociale-icon img {
    height: 28px;
    width: 28px;
    filter: brightness(0) invert(1);
}

/* Releases Section */
.releases {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.albums {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.album {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.album.show {
    opacity: 1;
    transform: translateY(0);
}

.album a {
    text-decoration: none;
    display: block;
}

.album img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    object-fit: cover;
}

.album img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(33, 169, 255, 0.3);
    border: 2px solid #21a9ff;
}

/* Footer */
footer {
    background: rgba(18, 18, 18, 0.8);
    padding: 30px 20px;
    border-top: 1px solid rgba(33, 169, 255, 0.2);
    text-align: center;
    margin-top: 80px;
    backdrop-filter: blur(10px);
}

footer p {
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
}

/* Styl linku w stopce */
footer .footer-link {
    color: #21a9ff;
    text-decoration: none;
    font-weight: 600;
}

footer .footer-link:hover {
    color: #1a7acc;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInOnScroll {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about, .releases, .video-section {
    animation: fadeInOnScroll 0.8s ease-out forwards;
}

/* Selection */
::selection {
    background: #21a9ff;
    color: #121212;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .profile-pic {
        width: 220px;
        height: 220px;
    }

    .bio h1 {
        font-size: 2.5rem;
    }

    .albums {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .about {
        padding: 40px 20px;
    }

    .bio h1 {
        font-size: 2rem;
    }

    .bio p {
        font-size: 14px;
    }

    .albums {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }

    .social-icon, .sociale-icon {
        width: 45px;
        height: 45px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 20px 10px;
    }

    .logo {
        height: 40px;
    }

    .about {
        padding: 30px 15px;
    }

    .profile-pic {
        width: 180px;
        height: 180px;
    }

    .bio h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .bio p {
        font-size: 16px;
        line-height: 1.7;
    }

    .albums {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .social-links {
        gap: 12px;
    }

    .releases {
        padding: 40px 15px;
    }
}

/* Prevent text selection */
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* MOBILE FIRST tweaks */
@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }

    header {
        padding: 20px 10px;
    }

    .logo {
        height: 40px;
    }

    .about {
        flex-direction: column;
        padding: 30px 15px;
    }

    .profile-pic {
        width: 180px;
        height: 180px;
    }

    .bio h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .bio p {
        font-size: 16px;
        line-height: 1.7;
    }

    .albums {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .social-links {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        max-width: 290px;
        margin: 25px auto 0;
    }

    .social-icon, .sociale-icon {
        width: 70px;
        height: 70px;
    }

    .social-icon img, .sociale-icon img {
        height: 28px;
        width: 28px;
    }

    .releases {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .video-container {
        max-width: 100%;
    }
}