body {
    margin: 0;
    font-family: Arial;
    color: white;
    padding-top: 70px;
    background: black;
}

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    z-index: 999;
}

#navbar ul { 
    display: flex;
    list-style: none;
}

#navbar li {
    margin: 15px;
}

#navbar a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

#navbar a:hover {
    color: #00e0ff;
}

#navbar a.active {
    color: #00bfff;
}

.section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 50px;
}

/* ciemna warstwa na tle */
.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#home {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
}

#music {
    background-image: url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?auto=format&fit=crop&w=1920&q=80');
}

#videos {
    background-image: url('https://images.unsplash.com/photo-1517602302552-471fe67acf66?auto=format&fit=crop&w=1920&q=80');
}

#projects {
    background-image: url('https://images.unsplash.com/photo-1492724441997-5dc865305da7?auto=format&fit=crop&w=1920&q=80');
}

#releases {
    background-image: url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?auto=format&fit=crop&w=1920&q=80');
}

#contact {
    background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1920&q=80');
}

#colabs {
    background-image: url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?auto=format&fit=crop&w=1920&q=80');
}

#buy {
    background-image: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?auto=format&fit=crop&w=1920&q=80');
}

#inspirations {
    background-image: url('https://images.unsplash.com/photo-1507874457470-272b3c8d8ee2?auto=format&fit=crop&w=1920&q=80');
}

#cube {
    background-image: url('https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=1920&q=80');
}

#home .content {
    max-width: 380px;
    padding: 25px;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;

    background: rgba(0,0,0,0.5);
    padding: 30px 25px;
    border-radius: 20px;

    max-width: 400px;
    width: 90%;
}

.logo {
    width: 180px;
    display: block;
    margin: 0 auto 20px;
}

h1 { 
    color: #00bfff; 
    text-shadow: 0 0 10px #00e0ff; 
}

h2 { 
    color: #00e0ff; 
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.platforms a {
    margin: 5px;
    padding: 10px 20px;
    background: #00e0ff;
    color: black;
    border-radius: 6px;
    text-decoration: none;
}

.card {
    background: rgba(255,255,255,0.8);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.btn {
    background: #00bfff;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input, form select { 
    margin: 10px; 
    padding: 10px; 
    width: 250px; 
}

button { 
    padding: 10px; 
    background: #00bfff; 
    border: none; 
    color: white; 
}

form button {
    background-color: #00bfff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

form button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

footer {
    background: rgba(0,0,0,0.8);
    padding: 20px;
    text-align: center;
    color: white;
}

.footer-content { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.footer-content p { 
    margin: 0 0 15px 0; 
}

.social-icons { 
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap; 
}

.social-icons a img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.2);
}

#intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

#intro-logo {
    width: 200px;
    transition: transform 0.3s;
}

#intro-logo:hover {
    transform: scale(1.1);
}

#cube .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#cube img {
    width: 220px;
    display: block;
    margin: 0 auto 25px;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(0, 224, 255, 0.6);
}

#cube p {
    max-width: 500px;
    font-size: 18px;
}