:root {
    --bg-color: #05070a;
    --text-color: #f0f0f0;
    --accent-color: #8fa9ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, rgba(5, 7, 10, 0.4) 0%, rgba(5, 7, 10, 0.8) 100%);
}

.profile-img-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, var(--accent-color), transparent);
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 2rem;
    text-align: center;
    z-index: 10;
}

.hero {
    margin-bottom: 3rem;
    animation: fadeIn 1.5s ease-out;
}

.artist-name {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.tagline {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.7;
    letter-spacing: 0.2rem;
}

.release-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

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

.status {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.1rem;
    display: block;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.release-date {
    font-size: 0.9rem;
    opacity: 0.5;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

/* Audio Player Styles */
.audio-player {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-btn {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    width: 30px;
}

.player-btn:hover {
    color: var(--accent-color);
}

.progress-container {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-color);
    width: 0%;
    transition: width 0.1s linear;
}

.time-display {
    font-size: 0.8rem;
    opacity: 0.6;
    min-width: 35px;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    padding: 0.8rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-btn i {
    font-size: 1.1rem;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

/* Support Section */
.support-section {
    margin-top: 3rem;
    animation: fadeIn 1.8s ease-out;
}

.support-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
}

.support-text {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.amount-toggles {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.amount-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 0.8rem;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.amount-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.amount-btn.active {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
    font-weight: 600;
}

.custom-amount {
    position: relative;
    margin-bottom: 1.5rem;
}

.custom-amount input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 1rem;
    padding-left: 2rem;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1.1rem;
}

.custom-amount .currency {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

#final-donate-btn {
    width: 100%;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.anonym-hint {
    font-size: 0.7rem;
    opacity: 0.4;
    text-align: center;
    margin-top: 1rem;
}

.contact-section {
    margin-top: 2.5rem;
    animation: fadeIn 2s ease-out;
}

.section-title {
    font-size: 0.9rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: none;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
}



.footer {
    margin-top: 5rem;
    padding-bottom: 2rem;
    opacity: 0.5; /* Dezent, aber legal erkennbar */
    transition: opacity 0.3s ease;
    text-align: center;
    position: relative;
    pointer-events: auto;
}

.footer:hover {
    opacity: 1; /* Volle Sichtbarkeit bei Hover */
}

.copyright {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.05rem;
    margin-bottom: 0.5rem;
}

.legal-links {
    font-size: 0.65rem;
    pointer-events: auto;
}

.legal-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--accent-color);
}

.legal-links .divider {
    margin: 0 5px;
    opacity: 0.4;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Quick Fix */
@media (max-width: 400px) {
    .artist-name {
        font-size: 2.5rem;
    }
}
