a:link  {
	color : WhiteSmoke;
	font-weight : bold;
	font-family : arial;
	font-size : 12pt;
}

a:visited  {
	color : Ivory;
	font-weight : bold;
	font-family : arial;
	font-size : 11pt;
}

a:hover  {
	color : Snow;
	font-weight : bold;
	font-family : arial;
	font-size : 11pt;
}


a:active  {
	color : #ffff66;
	font-weight : bold;
	font-family : arial;
	font-size : 12pt;
}

td  {
	color : #E6E6E6;
	font-family : verdana;
	font-weight : normal;
	font-size : 10pt;
}
th  {
	color : #E6E6E6;
	font-family : verdana;
	font-weight : bold;
	font-size : 16pt;
}


body  {
    background-color : #000000;
    color : #E6E6E6;
    font-family : verdana;
    font-weight : normal;
    font-size : 10pt;
}   
/* MASCHINENMUSIK Homepage Layout & Components */

/* Logo */
.logo-container {
    text-align: center;
    margin-top: 32px;
}
.logobig {
    max-width: 1200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Navigation Bar */
.nav-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 24px 0 0 0;
    margin: 0;
}
.nav-bar li a {
    color: #E6E6E6;
    text-decoration: none;
    font-family: arial, sans-serif;
    font-size: 1.1rem;
    padding: 6px 18px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.nav-bar li a.active,
.nav-bar li a:focus {
    background: #222;
    color: #ffff66;
}
.nav-bar li a:hover {
    background: #333;
    color: #fff;
}

/* Main Content Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    max-width: 1200px;
    margin: 40px auto 60px auto;
    background: rgba(0,0,0,0.6);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.text-and-image {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.text-and-image > div {
    flex: 1;
    min-width: 300px; /* Ensure text content doesn't get too narrow */
}

.right-image {
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.centered-image {
    display: block;
    margin: 20px auto;
    max-width: 60%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .text-and-image {
        flex-direction: column;
        align-items: center;
    }

    .right-image {
        max-width: 80%;
        margin-top: 20px;
    }

    .centered-image {
        max-width: 90%;
    }
}
/* Artist Section */
.artist-section {
    width: 100%;
    margin: 20px 0;
    background: #181818;
    border-radius: 12px;
    box-shadow: 0 2px 16px #000a;
    color: #f3f3f3;
    padding: 24px;
    box-sizing: border-box;
    display: block;
}
.artist-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
    letter-spacing: 0.06em;
    text-align: center;
}
.artist-section p {
    font-size: 1.08rem;
    margin: 0.3em 0;
    text-align: center;
}
.container h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5em;
    letter-spacing: 0.08em;
}
.container p {
    font-size: 1.1rem;
    margin: 0.3em 0;
    text-align: center;
}

/* Video Page Specific Styles */
.youtube-channel-section {
    width: 100%;
    max-width: 100%; /* Ensure it doesn't overflow its parent */
    box-sizing: border-box; /* Include padding in width calculation */
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.youtube-channel-section h2 {
    font-size: 1.8rem;
    color: #E6E6E6; /* Changed from yellow to match body text color */
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.youtube-channel-section p {
    margin-bottom: 20px;
}

.youtube-channel-section p a {
    font-size: 1.2rem;
    color: #E6E6E6;
    text-decoration: underline;
}

.youtube-channel-section p a:hover {
    color: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 10px;
}

.video-grid iframe {
    width: 100%;
    height: 200px; /* Adjust height as needed */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 700px) {
    .youtube-channel-section {
        padding: 15px;
        margin-bottom: 30px;
    }

    .youtube-channel-section h2 {
        font-size: 1.5rem;
    }

    .youtube-channel-section p a {
        font-size: 1rem;
    }

    .video-grid {
        grid-template-columns: 1fr; /* Stack videos on small screens */
        gap: 15px;
    }

    .video-grid iframe {
        height: 180px; /* Adjust height for smaller screens */
    }
}

/* Footer */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.logosmall {
    height: 100px;
    width: auto;
    align-self: flex-start; /* Align the logo to the start of the cross axis */
}
.footer-left {
    text-align: left;
    color: #ccc;
    padding: 16px 24px;
    font-size: 0.85em;
    line-height: 1.4;
    display: flex; /* Use flexbox for footer-left content */
    flex-direction: column; /* Stack content vertically */
    justify-content: flex-start; /* Align content to the top */
    align-self: flex-start; /* Align to the start of the cross axis */
}
.footer-right {
    text-align: right;
    color: #ccc;
    padding: 16px 24px;
    font-size: 0.85em;
    line-height: 1.4;
    display: flex; /* Use flexbox for footer-right content */
    flex-direction: column; /* Stack content vertically */
    justify-content: flex-start; /* Align content to the top */
}

.footer-center {
    text-align: center;
    color: #ccc;
    padding: 16px 24px;
    font-size: 0.85em;
    line-height: 1.4;
}


/* Responsive Design */
@media (max-width: 700px) {
    .container {
        max-width: 98vw;
        margin: 20px 1vw 40px 1vw;
        padding: 6vw 2vw;
    }
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 8vw;
    }
    .footer-right {
        text-align: left;
        font-size: 0.98em;
    }
    .logobig {
        max-width: 90vw;
        width: 100%;
    }
    .nav-bar {
        gap: 1rem;
        padding-top: 12px;
    }
}
/* Synchronized width for logo, content, and footer */
.logo-container,
.logobig,
.container,
footer {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Marquee CSS */
.mm-marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}
.mm-track-title {
    display: inline-block;
    padding-left: 100%;
    animation: mm-marquee-scroll 10s linear infinite;
}
/* Add a class to pause/restart animation if needed */
.mm-track-title.paused {
    animation-play-state: paused;
}
.mm-track-title.running {
    animation: mm-marquee-scroll 10s linear infinite;
}
@keyframes mm-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
/* --- Album Releases Page Styles --- */

.mm-album-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.mm-album-card {
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease-in-out;
    background-size: cover;
    background-position: center;
    min-height: 350px; /* Ensure cards have a minimum height */
    position: relative;
}

.mm-album-card:hover {
    transform: translateY(-5px);
}

.mm-album-info {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    color: #f3f3f3;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push content to the bottom */
}

.mm-album-info h1 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: #ffff66; /* Highlight artist name */
}

.mm-album-info h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #e6e6e6;
}

.mm-release-date {
    font-size: 0.9rem;
    color: #aaa;
}

.mm-player {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #333;
}

.mm-player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.mm-btn {
    background-color: #333;
    color: #ffff66;
    border: 1px solid #555;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s, color 0.2s;
}

.mm-btn:hover {
    background-color: #555;
    color: #fff;
}

.mm-volume {
    width: 80px;
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    background: #555;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    border-radius: 2.5px;
}

.mm-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ffff66;
    cursor: pointer;
}

.mm-volume::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ffff66;
    cursor: pointer;
}

.mm-track-title-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
}

/* In maschinenmusik.css hinzufügen */
.mm-album-card.active-card {
    box-shadow: 0 0 15px 5px rgba(255, 255, 0, 0.7);
    border: 2px solid yellow;
    transform: scale(1.10); /* Optional: Leichte Vergrößerung */
    transition: all 0.3s ease-in-out;
}

.mm-album-card.active-card .mm-album-info h1,
.mm-album-card.active-card .mm-album-info h2,
.mm-album-card.active-card .mm-release-date {
    color: #00ff00; /* Green font for active card */
}