@font-face {
        font-family: 'CustomFont';
        src: url('fonts/custom-font.woff2') format('woff2'),  
             url('fonts/custom-font.woff') format('woff');
        font-weight: normal;
        font-style: normal;
        }
	a:link {
		color: #ff9900;
		background-color: transparent;
		text-decoration: none;
		}
    body {
        background-color: #222;
        color: #fff;
        font-family: 'CustomFont', sans-serif;
        text-align: center;
        margin: 0;
        padding: 10px;
    }
    .song-container {
        background: #333;
        padding: 15px;
        border-radius: 15px;
        max-width: 800px;
        margin: 20px auto;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
        text-align: left;
    }
    h1 {
        text-align: center;
        font-size: 2.0em;
        color: #ff9900;
        margin-bottom: 20px;
        text-shadow: 1px 1px 4px #000;
    }
    .song-info {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    img.thumbnail {
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        flex-shrink: 0;
    }
    .details {
        flex: 1;
    }
    .details h2 {
        margin: 0;
        font-size: 1.5em;
    }
    .details h3 {
        margin: 5px 0;
        font-weight: normal;
        color: #ccc;
    }
    .details p {
        margin-top: 10px;
        font-style: italic;
    }
    .video-container {
        text-align: center;
        margin-top: 25px;
    }
    iframe {
    width: 800px;
    height: 388px; /* Keeps correct 16:9 ratio */
    max-width: 100%;
    border: none;
    border-radius: 10px;
}
    button {
        background-color: #f80;
        border: none;
        color: #fff;
        padding: 10px 20px;
        border-radius: 8px;
        margin-top: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: background 0.2s;
    }
    button:hover {
        background-color: #fb3;
    }