/* Reset i podstawy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0D0D11;
    color: #E5E5E5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Nawigacja */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #16161D;
    border-bottom: 2px solid #22252A;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #FFF;
}

nav a {
    color: #A0A0A5;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: #00F2FE;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0D0D11 40%, #1A1A24 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    border-bottom: 3px solid #FF007F;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cyan-text {
    color: #00F2FE;
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.6);
}

.hero-content p {
    max-width: 600px;
    color: #A0A0A5;
    margin-bottom: 30px;
}

/* Przyciski i elementy uniwersalne */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FF007F;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
    transition: transform 0.2s, background-color 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    background-color: #e0006c;
}

.container {
    padding: 60px 5%;
}

h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

/* Grid i Karty */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: #16161D;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #22252A;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.02);
}

.card-pink { border-left: 5px solid #FF007F; }
.card-cyan { border-left: 5px solid #00F2FE; }

.card h3 { margin-bottom: 15px; font-size: 1.5rem; }
.card p { color: #A0A0A5; margin-bottom: 20px; }
.btn-link { color: #FFF; text-decoration: none; font-weight: bold; }
.card-pink .btn-link:hover { color: #FF007F; }
.card-cyan .btn-link:hover { color: #00F2FE; }

/* Podstrony szczegółowe */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
}

.subtitle { color: #707075; font-style: italic; margin-bottom: 30px; }

.badge {
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 3px;
    margin-bottom: 15px;
}
.badge-pink { background-color: #FF007F; color: #FFF; }
.badge-cyan { background-color: #00F2FE; color: #111; }

.player-box {
    background-color: #16161D;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    text-align: center;
}
.border-pink { border: 1px solid #FF007F; box-shadow: 0 0 10px rgba(255, 0, 127, 0.2); }
.border-cyan { border: 1px solid #00F2FE; box-shadow: 0 0 10px rgba(0, 242, 254, 0.2); }

audio {
    width: 100%;
    margin-top: 15px;
}

.lyrics-box {
    background-color: #111116;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #22252A;
}

pre {
    font-family: inherit;
    white-space: pre-wrap;
    color: #C0C0C5;
}

/* Stopka */
footer {
    text-align: center;
    padding: 40px;
    background-color: #09090D;
    color: #505055;
    font-size: 0.9rem;
    margin-top: 60px;
    border-top: 1px solid #22252A;
}

/* Style dla wielu utworów na jednej stronie */
.track-block {
    margin-bottom: 50px;
    background-color: #13131A;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #1E1E26;
}

.track-block h2 {
    text-align: left;
    margin-bottom: 5px;
    color: #FFF;
}

.track-meta {
    color: #707075;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.separator-pink {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #FF007F, transparent);
    margin: 40px 0;
}

.separator-cyan {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #00F2FE, transparent);
    margin: 40px 0;
}

/* Styl dla projektu Nocturna (Gothic) */
.card-purple { border-left: 5px solid #9D00FF; }

.badge-purple { 
    background-color: #9D00FF; 
    color: #FFF; 
    box-shadow: 0 0 10px rgba(157, 0, 255, 0.4);
}

.border-purple { 
    border: 1px solid #9D00FF; 
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.2); 
}

.separator-purple {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #9D00FF, transparent);
    margin: 40px 0;
}

/* Link w menu dla nowej podstrony
nav a:hover, nav a.active {
    /* Gdy jesteś na podstronie gotyckiej, podświetli się na fioletowo */
    color: #9D00FF;
} */