* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0b0b0b;
    color: white;
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);

    z-index: 1000;
}

/* LOGO BAL OLDALT */
.logo {
    position: absolute;
    left: 40px;
    font-weight: bold;
}

/* MENU */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 30px;
    position: relative;
    transition: 0.3s;
    font-family: 'Courier New', Courier, monospace;
}

/* HOVER UNDERLINE */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0%;
    height: 2px;

    background: #d4af37;
    transition: 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* ACTIVE LINK */
nav ul li a.active {
    color: #d4af37;
}
/* HERO */
header {
    height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)),
        url('Images/bg.jpg')
}

.hero-content {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-content h1 {
    font-size: 200px;
    letter-spacing: 20px;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.hero-content p {
    color: #d4af37;
    font-size: 50px;
}

/* SECTIONS */
section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: auto;
}

h2 {
    color: #d4af37;
    margin-bottom: 60px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* TRACK */
.track {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.track:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(212,175,55,0.2);
}

/* THUMB */
.thumb {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-size: cover;
    background-position: center;
}

.thumb::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    z-index: 2;
}

/* VIDEO */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ANIM�CI� */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* PLAYER SECTION */
#player {
    width: 100%;
    padding: 120px 20px;

    display: flex;
    justify-content: center;
}

/* PLAYER BOX */
.player {
    width: 100%;
    max-width: 1100px;

    display: flex;
    gap: 40px;

    padding: 40px;

    background: rgba(255,255,255,0.04);
    border-radius: 20px;

    backdrop-filter: blur(15px);
    box-shadow: 0 0 60px rgba(212,175,55,0.1);
}

/* LEFT SIDE (cover) */
.cover {
    width: 300px;
    height: 300px;
    border-radius: 15px;

    background-size: cover;
    background-position: center;

    flex-shrink: 0;
}

/* RIGHT SIDE */
.player-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TITLE */
#track-title {
    font-size: 28px;
    margin-bottom: 20px;
}

/* CONTROLS */
.controls {
    display: flex;
    align-items: center;
}

.controls button {
    background: none;
    border: 2px solid #d4af37;
    color: #d4af37;

    font-size: 22px;
    margin-right: 15px;
    padding: 12px 18px;

    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.controls button:hover {
    background: #d4af37;
    color: black;
}

/* PROGRESS */
.progress-container {
    width: 100%;
    height: 8px;
    margin-top: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.progress {
    height: 100%;
    width: 0%;
    background: #d4af37;
}

/* TIME */
.time {
    margin-top: 8px;
}

/* PLAYLIST */
.playlist {
    margin-top: 25px;
}

.playlist li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
}

.playlist li.active {
    color: #d4af37;
}