/* SchalkesOpa Dark Glassmorphism Theme - Homepage */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff006e;
    --secondary: #00ff88;
    --accent: #3b82f6;
    --dark: #0a0a0a;
    --light: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --glass: rgba(255, 255, 255, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--dark);
    color: var(--light);
    margin: 0;
    padding: 0;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    background: rgba(255, 0, 110, 0.3);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.1s ease;
    z-index: 10000;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.5);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999;
}

/* Loading State */
.loading-container {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-container.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-wave {
    display: flex;
    gap: 5px;
}

.loading-wave div {
    width: 10px;
    height: 60px;
    background: var(--gradient);
    border-radius: 5px;
    animation: wave 1.2s ease-in-out infinite;
}

.loading-wave div:nth-child(2) { animation-delay: 0.1s; }
.loading-wave div:nth-child(3) { animation-delay: 0.2s; }
.loading-wave div:nth-child(4) { animation-delay: 0.3s; }
.loading-wave div:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

/* Particles */
.particle {
    position: fixed;
    pointer-events: none;
    opacity: 0;
    animation: particleFloat 4s ease-out forwards;
}

@keyframes particleFloat {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(0);
    }
    100% {
        opacity: 0;
        transform: translate(var(--x), var(--y)) scale(1);
    }
}
header {
    background-color: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header .logo img {
    filter: brightness(1.2);
}

header nav ul li a {
    color: var(--light) !important;
    opacity: 0.9;
    transition: all 0.3s ease;
}

header nav ul li a:hover {
    color: var(--primary) !important;
    opacity: 1;
}

/* Mobile Menu Overrides */
.hamburger span {
    background-color: var(--light) !important;
}

.nav-mobile {
    background-color: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(20px);
}

.nav-mobile ul li a {
    color: var(--light) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile ul li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    background-image: url('/assets/images/Fanclub-HP-Gerobild.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Mobile: Fix für iOS/Android Background-Attachment Bug */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.4) 100%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    background: linear-gradient(135deg, var(--glass) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    animation: fadeIn 1s ease-out forwards;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
                inset 0 0 30px rgba(255, 255, 255, 0.05);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: 30px;
    opacity: 0.5;
    z-index: -1;
    filter: blur(10px);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
    margin-bottom: 1.5rem;
}

@keyframes glow {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 20px var(--primary)); }
    50% { filter: brightness(1.2) drop-shadow(0 0 40px var(--primary)); }
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: var(--light);
}

.hero-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.5);
}

/* Music Links Section */
.music-links {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--dark);
}

.music-links h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.music-links p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.8;
}

.music-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--glass) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 2.5rem;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.icon-link:hover::before {
    width: 150%;
    height: 150%;
}

.icon-link:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 0, 110, 0.3);
}

.icon-link i {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Video Section */
.video-section {
    position: relative;
    background-image: url('/assets/images/sectionsbild2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
}

@media (max-width: 768px) {
    .video-section {
        background-attachment: scroll;
    }
}

.video-section .overlay {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 30px;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* About Fanclub Section */
.about-fanclub {
    background-color: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 100px 20px;
}

.about-fanclub h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-fanclub p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Newsletter Section */
.newsletter-sms {
    position: relative;
    background-image: url('/assets/images/sectionsbild1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
}

@media (max-width: 768px) {
    .newsletter-sms {
        background-attachment: scroll;
    }
}

.newsletter-sms .overlay {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 100%);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 30px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-sms h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-sms p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Newsletter Form */
#mc_embed_signup {
    background: transparent;
}

.mc-field-group {
    margin-bottom: 20px;
}

.mc-field-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--light);
    font-weight: 500;
}

.mc-field-group input[type="email"],
.mc-field-group input[type="text"] {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mc-field-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

#mc-embedded-subscribe {
    background: var(--gradient);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    display: block;
}

#mc-embedded-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.5);
}

/* Blog Section */
.latest-blog {
    background-color: var(--dark);
    padding: 100px 20px;
    text-align: center;
}

.blog-header {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    font-weight: 900;
    text-transform: uppercase;
    animation: glow 3s ease-in-out infinite;
}

.blog-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--glass) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.blog-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    animation: slideGradient 3s ease-in-out infinite;
}

@keyframes slideGradient {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.blog-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-container:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 40px;
    text-align: left;
}

.blog-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--light);
}

.blog-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light);
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Comments */
.blog-comments {
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-comments h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--light);
    text-align: left;
}

#commentList {
    margin-bottom: 30px;
    max-height: 400px;
    overflow-y: auto;
}

.comment {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    text-align: left;
}

.comment p {
    color: var(--light);
    margin-bottom: 8px;
}

.comment strong {
    color: var(--secondary);
}

.comment small {
    color: var(--light);
    opacity: 0.6;
}

#commentForm textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px;
    color: var(--light);
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

#commentForm textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

#commentForm button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#commentForm button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.no-comments {
    color: var(--primary) !important;
    opacity: 0.8;
    text-align: center;
}

/* Social Media Section */
.social-media-section {
    position: relative;
    background-image: url('/assets/images/social-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
}

@media (max-width: 768px) {
    .social-media-section {
        background-attachment: scroll;
    }
}

.social-media-section .overlay {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 100%);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 30px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px;
    background: linear-gradient(135deg, var(--glass) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.social-link:hover::after {
    transform: translateX(0);
}

.social-link:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 0, 110, 0.3);
}

/* Floating animation for icons */
.music-icons .icon-link:nth-child(odd) {
    animation: floatOdd 4s ease-in-out infinite;
}

.music-icons .icon-link:nth-child(even) {
    animation: floatEven 4s ease-in-out infinite;
}

@keyframes floatOdd {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatEven {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.music-icons .icon-link:nth-child(even) {
    animation-delay: 2s;
}

.social-link i {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-link span {
    font-size: 1rem;
    color: var(--light);
}

/* Footer Styles */
footer {
    background-color: #1a1a1a !important;
    color: var(--light) !important;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

footer nav ul li {
    display: inline;
}

footer nav ul li a {
    color: var(--light) !important;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

footer nav ul li a:hover {
    color: var(--primary) !important;
    opacity: 1;
}

footer p {
    text-align: center;
    color: var(--light) !important;
    opacity: 0.7;
    margin: 0;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: none;
    z-index: 3000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner p,
.cookie-banner label {
    color: var(--light) !important;
    margin-bottom: 10px;
}

.cookie-banner a {
    color: var(--secondary) !important;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-controls {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-controls button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

#accept-cookies {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.3);
}

#accept-cookies:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 110, 0.5);
}

#reject-cookies {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#reject-cookies:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}

/* Magical Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -20px) rotate(120deg); }
    66% { transform: translate(20px, -10px) rotate(240deg); }
}

/* Section Animations */
section {
    transition: all 0.8s ease-out;
}

section.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Enhanced Animation for new comments */
.comment.animate-new {
    animation: commentPop 0.5s ease-out;
}

@keyframes commentPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile: Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Sections */
    .music-links,
    .video-section,
    .about-fanclub,
    .newsletter-sms,
    .latest-blog,
    .social-media-section {
        padding: 60px 15px;
    }
    
    .music-links h2,
    .video-section h2,
    .about-fanclub h2,
    .newsletter-sms h2,
    .blog-header,
    .social-media-section h2 {
        font-size: 2rem;
    }
    
    .music-icons {
        gap: 20px;
    }
    
    .icon-link {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .video-container iframe {
        height: 300px;
    }
    
    .video-section .overlay,
    .newsletter-sms .overlay,
    .social-media-section .overlay {
        padding: 30px 20px;
    }
    
    .blog-container {
        margin: 0 10px;
    }
    
    .blog-image {
        height: 250px;
    }
    
    .blog-content,
    .blog-comments {
        padding: 25px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-link {
        padding: 20px;
        min-width: 100px;
    }
    
    footer nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-controls {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-controls button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .music-icons {
        flex-direction: column;
    }
    
    .icon-link {
        width: 80px;
        height: 80px;
    }
    
    .video-container iframe {
        height: 200px;
    }
    
    #mc-embedded-subscribe {
        max-width: 100%;
    }
}