  body {
            margin: 0;
            font-family: 'Montserrat', sans-serif;
            background-color: #111111;
            color: #e0e0e0;
        }
        /* Top Navigation bar */
        nav {
            display: flex;
            justify-content: center;
            background-color: #0a0a0a;
            padding: 18px;
            border-bottom: 2px solid #d4af37;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        nav a {
            color: #bbbbbb;
            text-decoration: none;
            margin: 0 25px;
            text-transform: uppercase;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            transition: color 0.3s;
        }
        nav a:hover, nav a.active {
            color: #d4af37;
        }
        header {
            background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), url('https://unsplash.com') no-repeat center center/cover;
            height: 55vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }
        h1 {
            font-family: 'Cinzel', serif;
            font-weight: 800;
            font-size: 4rem;
            text-transform: uppercase;
            letter-spacing: 8px;
            margin: 0 0 10px 0;
            color: #d4af37;
            text-shadow: 3px 3px 10px rgba(0,0,0,0.9);
        }
        .tagline {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 1.4rem;
            color: #cccccc;
            margin-bottom: 25px;
        }
        .player-container {
            background-color: #0a0a0a;
            border: 1px solid #d4af37;
            padding: 20px 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            max-width: 600px;
            margin: -40px auto 0 auto;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
            position: relative;
            z-index: 10;
        }
        .player-title {
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            letter-spacing: 1px;
            color: #ffffff;
        }
        audio { height: 32px; }
        section {
            padding: 80px 20px;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        footer {
            background-color: #0a0a0a;
            text-align: center;
            padding: 50px 20px;
            font-size: 0.85rem;
            color: #ffffff;
            border-top: 1px solid #222222;
            letter-spacing: 1px;
        }
        .social-icons { margin-bottom: 20px; }
        .social-icons a {
            color: #fff;
            font-size: 1.3rem;
            margin: 0 15px;
            transition: color 0.3s;
        }
        .social-icons a:hover { color: #d4af37; }