:root {
    --bg-color: #121212;
    --text-color: #ffffff;
    --accent-color: #e65100; /* darker orange for accent */
    --accent-orange-dark: #7c3600; /* even darker orange for header gradient */
    --spotify-link-color: #ff9800; /* slightly darker orange for spotify email link */
    --secondary-bg: #282828;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(to bottom, var(--accent-orange-dark), var(--bg-color));
}

.logo {
    margin-top: 2rem;
}

.logo img {
    max-width: 90vw;
    max-height: 180px;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto;
}

.avatar img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
}

.spotify-section {
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.spotify-banner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.spotify-banner:hover {
    transform: scale(1.02);
}

.spotify-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-section {
    margin: 4rem auto;
    max-width: 800px;
    padding: 0 1rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.discography {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.upcoming-release {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.release-card {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-orange-dark), #1a1a1a);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.release-info {
    color: white;
    text-align: center;
}

.release-date {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.release-title {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.release-artist {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.release-label {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0.5rem 0 1.5rem;
}

.pre-save-btn {
    display: inline-block;
    background-color: #000;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.pre-save-btn:hover {
    background-color: white;
    color: #000;
    transform: scale(1.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: var(--secondary-bg);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #363636;
}

th {
    background-color: #363636;
    font-weight: bold;
}

tr:hover {
    background: linear-gradient(90deg, rgba(230,81,0,0.18) 0%, rgba(124,54,0,0.18) 100%);
}

.spotify-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

.spotify-link:hover {
    opacity: 0.7;
}

footer {
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid #363636;
}

footer a {
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.7;
}

.separator {
    margin: 0 1rem;
    color: #363636;
}

.collapsible-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--secondary-bg);
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.collapsible-section.hidden {
    display: none;
}

.content-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* Remove all modal-related styles */
.modal, .modal-content, .close {
    display: none;
}

.imprint-content {
    max-width: 600px;
    line-height: 1.6;
}

.imprint-content h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #363636;
}

.notice {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-style: italic;
}

.imprint-section {
    margin-bottom: 2rem;
}

.imprint-section:last-child {
    margin-bottom: 0;
}

.imprint-section h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.imprint-section p {
    margin: 0.5rem 0;
}

.imprint-section a {
    color: var(--accent-color);
    text-decoration: none;
}

.imprint-section a:hover {
    text-decoration: underline;
}

.notice-info {
    background-color: rgba(29, 185, 84, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.notice-info ul {
    list-style-type: none;
    padding-left: 1rem;
    margin: 1rem 0;
}

.notice-info li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.notice-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.contact-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--secondary-bg);
    border-radius: 8px;
    text-align: center;
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-info p {
    margin: 1rem 0;
}

/* Default contact links */
.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

/* Spotify-related email link: brighter orange */
.contact-info a[href^="mailto:spotify-admin@dj-matty-gee.com"] {
    color: var(--spotify-link-color);
    font-weight: bold;
}

.contact-info a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .logo img {
        max-width: 98vw;
        max-height: 90px;
        width: auto;
        height: auto;
    }
    table {
        display: block;
        overflow-x: auto;
    }
}
