@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&family=Creepster&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    color: #fff;
    margin-top: 70px;
}

/* ============================================
   PAGE
============================================ */

.partner-section {
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px 100px;
}

.partner-container {
    max-width: 1100px;
    margin: 0 auto;
}

.partner-header {
    text-align: center;
    margin-bottom: 25px;
}

.partner-main-title {
    font-family: 'Creepster', cursive;
    font-size: 5rem;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 12px;
    text-shadow:
        4px 4px 8px rgba(0,0,0,0.9),
        0 0 30px rgba(255,0,0,0.8),
        0 0 60px rgba(139,0,0,0.6);
    margin-bottom: 20px;
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { text-shadow: 4px 4px 8px rgba(0,0,0,0.9), 0 0 30px rgba(255,0,0,0.8), 0 0 60px rgba(139,0,0,0.6); }
    50%       { text-shadow: 4px 4px 8px rgba(0,0,0,0.9), 0 0 50px rgba(255,0,0,1),   0 0 90px rgba(139,0,0,0.8); }
}

.header-line {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    margin: 15px auto;
    box-shadow: 0 0 15px rgba(255,0,0,0.6);
}

.partner-subtitle {
    font-family: 'Metal Mania', cursive;
    font-size: 1.3rem;
    color: #ff6b6b;
    letter-spacing: 4px;
    margin-top: 20px;
    text-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.partner-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
    color: #999;
    font-size: 1rem;
    line-height: 1.9;
}

/* ============================================
   SPONSOR CARDS
============================================ */

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 80px;
}

.sponsor-card {
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 50%, #1a0000 100%);
    border: 2px solid #4a0000;
    border-radius: 20px;
    padding: 45px 30px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
}

.sponsor-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(139,0,0,0.03) 40px, rgba(139,0,0,0.03) 80px);
    pointer-events: none;
}

.sponsor-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.sponsor-card:hover {
    border-color: #ff0000;
    box-shadow: 0 15px 50px rgba(255,0,0,0.25), inset 0 0 40px rgba(255,0,0,0.04);
    transform: translateY(-8px);
}

.sponsor-card:hover::after {
    left: 140%;
}

.sponsor-logo-wrap {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.sponsor-logo-wrap img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(0.85) saturate(0.85);
    transition: filter 0.4s ease;
}

.sponsor-card:hover .sponsor-logo-wrap img {
    filter: brightness(1) saturate(1);
}

.sponsor-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    box-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.sponsor-name {
    font-family: 'Creepster', cursive;
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9), 0 0 10px rgba(255,0,0,0.3);
}

.sponsor-desc {
    font-size: 0.88rem;
    color: #888;
    text-align: center;
    line-height: 1.7;
}

.sponsor-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b0000, #4a0000);
    border: 1px solid #ff0000;
    color: #ff9999;
    font-family: 'Metal Mania', cursive;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(255,0,0,0.2);
}

/* ============================================
   BECOME A PARTNER CTA
============================================ */

.partner-cta {
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 50%, #1a0000 100%);
    border: 2px solid #4a0000;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139,0,0,0.3);
}

.partner-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(139,0,0,0.03) 40px, rgba(139,0,0,0.03) 80px);
    pointer-events: none;
}

.cta-title {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9), 0 0 20px rgba(255,0,0,0.5);
    position: relative;
    z-index: 1;
}

.cta-text {
    color: #aaaaaa;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 35px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8b0000, #ff0000);
    color: #fff;
    text-decoration: none;
    padding: 16px 45px;
    border-radius: 10px;
    font-family: 'Metal Mania', cursive;
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(139,0,0,0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff0000, #8b0000);
    box-shadow: 0 8px 30px rgba(255,0,0,0.6);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER SECTION - LOS TRIOS STYLE
   Add this CSS to style.css
   ============================================ */

.site-footer {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 50%, #0a0000 100%);
    border-top: 3px solid #4a0000;
/* Zeile 2027 - weniger Padding oben/unten */
padding: 45px 20px 20px;

/* Zeile 2028 - weniger Abstand nach oben */
    overflow: hidden;
    box-shadow: 
        0 -10px 40px rgba(139, 0, 0, 0.5),
        inset 0 0 60px rgba(0, 0, 0, 0.8);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.site-footer::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    animation: footerPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes footerPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   FOOTER TOP SECTION
   ============================================ */

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Creepster', cursive;
    font-size: 1.3rem;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(255, 0, 0, 0.6);
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.footer-logo-small {
    width: 55px;
    height: 55px;
    opacity: 0.3;
    filter: grayscale(1) brightness(0.5);
    transition: all 0.3s ease;
}

.footer-logo-small:hover {
    opacity: 0.6;
    filter: grayscale(0) brightness(1);
}

.footer-logo-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   FOOTER LINKS
   ============================================ */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 7px;
}

.footer-links a {
    color: #ff9999;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #8b0000;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

/* ============================================
   SOCIAL MEDIA LINKS
   ============================================ */

/* ============================================
   FOOTER SOCIAL MEDIA ICONS
   ============================================ */

.social-link a {
    text-decoration: none;
    color: inherit;
}

.social-link a:hover {
    text-decoration: none;
    color: #ff6b6b;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    text-decoration: none;
}

.social-link > div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 12px;
    border-radius: 8px;
    border: 1px solid #4a0000;
    background: rgba(0, 0, 0, 0.4);
    color: #cccccc;
    font-family: 'Metal Mania', cursive;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.social-link > div img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.social-link:hover > div {
    border-color: #ff0000;
    background: rgba(139, 0, 0, 0.2);
    color: #ff6b6b;
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.social-link:hover > div img {
    filter: brightness(1.2);
}
/* ============================================
   NEWSLETTER FORM
   ============================================ */

.footer-newsletter-text {
    font-size: 0.8rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.newsletter-input {
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #4a0000;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #666666;
}

.newsletter-input:focus {
    outline: none;
    border-color: #ff0000;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.newsletter-button {
    padding: 10px 25px;
    background: linear-gradient(135deg, #4a0000 0%, #8b0000 100%);
    border: 2px solid #8b0000;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Metal Mania', cursive;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/*
.newsletter-button:hover {
    background: linear-gradient(135deg, #8b0000 0%, #ff0000 100%);
    border-color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 
        0 6px 20px rgba(255, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 0, 0, 0.3);
}
*/

/* ============================================
   FOOTER DIVIDER
   ============================================ */

.footer-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b0000, transparent);
    margin: 40px 0;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* ============================================
   FOOTER BOTTOM SECTION
   ============================================ */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 25px;
}

.footer-copyright {
    text-align: left;
}

.footer-copyright p {
    color: #999999;
    font-size: 0.85rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.footer-subtitle {
    font-family: 'Metal Mania', cursive;
    color: #8b0000;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: #999999;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.footer-legal a:hover {
    color: #ff6b6b;
}

.footer-separator {
    color: #4a0000;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Tablets */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-title {
        font-size: 1.6rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 20px 25px;
        margin-top: 80px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-title {
        font-size: 1.5rem;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .footer-description,
    .footer-newsletter-text {
        font-size: 0.95rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-skull {
        font-size: 3rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .site-footer {
        padding: 50px 15px 20px;
        margin-top: 60px;
    }

    .footer-top {
        gap: 30px;
    }

    .footer-title {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .footer-description,
    .footer-newsletter-text,
    .footer-links a {
        font-size: 0.9rem;
    }

    .social-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .social-icon {
        font-size: 1.3rem;
    }

    .newsletter-input,
    .newsletter-button {
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    .footer-copyright p,
    .footer-legal a {
        font-size: 0.85rem;
    }
    
    .footer-subtitle {
        font-size: 0.75rem;
    }

    .footer-skull {
        font-size: 2rem;
        opacity: 0.05;
    }

    .footer-skull-left {
        bottom: 10px;
        left: 15px;
    }

    .footer-skull-right {
        top: 30px;
        right: 15px;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .footer-title {
        font-size: 1.2rem;
    }

    .footer-legal {
        font-size: 0.8rem;
        gap: 10px;
    }
}

/* ============================================
   BOTTOM COPYRIGHT BAR - ULTRA THIN
   ============================================ */

.bottom-copyright {
    position: relative;
    width: 100%;
    background: #000000;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.bottom-copyright-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #4a0000 10%, 
        #8b0000 30%, 
        #ff0000 50%, 
        #8b0000 70%, 
        #4a0000 90%, 
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 10px lab(53.23% 80.11 67.22 / 0.6);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.9);
    }
}

.bottom-copyright-content {
    padding: 12px 20px;
    text-align: center;
    background: linear-gradient(135deg,53.23% 80.11 67.22 / 0.6, #efe6e6 50%, #c29393 100%);
}

.bottom-copyright-content p {
    margin: 0;
    color: white;
    font-size: 0.35rem;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
}

.bottom-copyright-content a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.bottom-copyright-content a:hover {
    color: #5904c1;
    text-shadow: 0 0 8px rgba(51, 11, 111, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .bottom-copyright-content {
        padding: 10px 15px;
    }
    
    .bottom-copyright-content p {
        font-size: 0.4rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .bottom-copyright-content {
        padding: 8px 10px;
    }
    
    .bottom-copyright-content p {
        font-size: 0.1rem;
    }
}


.bottom-copyright-content p {
    font-size: 1.1rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1.5px;
    font-family: Arial, sans-serif;
}

.bottom-copyright-content a {
    color: rgba(251, 70, 70, 0.768);
    font-weight: normal;
    text-decoration: none;
}

.bottom-copyright-content a:hover {
    color: #ff6b6b;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&family=Creepster&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    color: #fff;
    margin-top: 70px;
}

/* ============================================
   PAGE
============================================ */

.partner-section {
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px 100px;
}

.partner-container {
    max-width: 1100px;
    margin: 0 auto;
}

.partner-header {
    text-align: center;
    margin-bottom: 25px;
}

.partner-main-title {
    font-family: 'Creepster', cursive;
    font-size: 5rem;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 12px;
    text-shadow:
        4px 4px 8px rgba(0,0,0,0.9),
        0 0 30px rgba(255,0,0,0.8),
        0 0 60px rgba(139,0,0,0.6);
    margin-bottom: 20px;
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { text-shadow: 4px 4px 8px rgba(0,0,0,0.9), 0 0 30px rgba(255,0,0,0.8), 0 0 60px rgba(139,0,0,0.6); }
    50%       { text-shadow: 4px 4px 8px rgba(0,0,0,0.9), 0 0 50px rgba(255,0,0,1),   0 0 90px rgba(139,0,0,0.8); }
}

.header-line {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    margin: 15px auto;
    box-shadow: 0 0 15px rgba(255,0,0,0.6);
}

.partner-subtitle {
    font-family: 'Metal Mania', cursive;
    font-size: 1.3rem;
    color: #ff6b6b;
    letter-spacing: 4px;
    margin-top: 20px;
    text-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.partner-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
    color: #999;
    font-size: 1rem;
    line-height: 1.9;
}

/* ============================================
   SPONSOR CARDS
============================================ */

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 80px;
}

.sponsor-card {
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 50%, #1a0000 100%);
    border: 2px solid #4a0000;
    border-radius: 20px;
    padding: 45px 30px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
}

.sponsor-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(139,0,0,0.03) 40px, rgba(139,0,0,0.03) 80px);
    pointer-events: none;
}

.sponsor-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.sponsor-card:hover {
    border-color: #ff0000;
    box-shadow: 0 15px 50px rgba(255,0,0,0.25), inset 0 0 40px rgba(255,0,0,0.04);
    transform: translateY(-8px);
}

.sponsor-card:hover::after {
    left: 140%;
}

.sponsor-logo-wrap {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.sponsor-logo-wrap img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(0.85) saturate(0.85);
    transition: filter 0.4s ease;
}

.sponsor-card:hover .sponsor-logo-wrap img {
    filter: brightness(1) saturate(1);
}

.sponsor-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    box-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.sponsor-name {
    font-family: 'Creepster', cursive;
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9), 0 0 10px rgba(255,0,0,0.3);
}

.sponsor-desc {
    font-size: 0.88rem;
    color: #888;
    text-align: center;
    line-height: 1.7;
}

.sponsor-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b0000, #4a0000);
    border: 1px solid #ff0000;
    color: #ff9999;
    font-family: 'Metal Mania', cursive;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(255,0,0,0.2);
}

/* ============================================
   BECOME A PARTNER CTA
============================================ */

.partner-cta {
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 50%, #1a0000 100%);
    border: 2px solid #4a0000;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139,0,0,0.3);
}

.partner-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(139,0,0,0.03) 40px, rgba(139,0,0,0.03) 80px);
    pointer-events: none;
}

.cta-title {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9), 0 0 20px rgba(255,0,0,0.5);
    position: relative;
    z-index: 1;
}

.cta-text {
    color: #aaaaaa;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 35px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8b0000, #ff0000);
    color: #fff;
    text-decoration: none;
    padding: 16px 45px;
    border-radius: 10px;
    font-family: 'Metal Mania', cursive;
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(139,0,0,0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff0000, #8b0000);
    box-shadow: 0 8px 30px rgba(255,0,0,0.6);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
============================================ */

.site-footer {
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 50%, #0a0000 100%);
    border-top: 2px solid #4a0000;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.footer-top { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-bottom: 50px; }

.footer-title { font-family: 'Metal Mania', cursive; font-size: 1.3rem; color: #ff6b6b; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; text-shadow: 0 0 10px rgba(255,0,0,0.5); }

.footer-description { color: #888; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.footer-logo-small img { width: 60px; opacity: 0.6; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #888; text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; letter-spacing: 1px; }
.footer-links a:hover { color: #ff6b6b; }
.social-links { display: flex; flex-direction: column; gap: 12px; }
.social-link > div { display: flex; align-items: center; gap: 12px; padding: 10px 15px; border-radius: 8px; border: 1px solid #4a0000; background: rgba(0,0,0,0.4); color: #cccccc; font-family: 'Metal Mania', cursive; font-size: 0.95rem; letter-spacing: 2px; transition: all 0.3s ease; }
.social-link > div img { width: 24px; height: 24px; object-fit: contain; filter: brightness(0.8); }
.social-link:hover > div { border-color: #ff0000; background: rgba(139,0,0,0.2); transform: translateX(5px); box-shadow: 0 0 15px rgba(255,0,0,0.3); }
.social-link a { color: #cccccc; text-decoration: none; }
.social-link a:hover { color: #ff6b6b; }
.footer-newsletter-text { color: #888; font-size: 0.9rem; line-height: 1.6; margin-bottom: 15px; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-input { background: rgba(0,0,0,0.6); border: 1px solid #4a0000; color: #fff; padding: 12px 15px; border-radius: 6px; font-size: 0.9rem; outline: none; transition: border-color 0.3s ease; }
.newsletter-input:focus { border-color: #ff0000; box-shadow: 0 0 10px rgba(255,0,0,0.3); }
.newsletter-button { background: linear-gradient(135deg, #8b0000, #ff0000); border: none; color: #fff; padding: 12px; border-radius: 6px; font-family: 'Metal Mania', cursive; font-size: 1rem; letter-spacing: 2px; cursor: pointer; transition: all 0.3s ease; }
.newsletter-button:hover { background: linear-gradient(135deg, #ff0000, #8b0000); box-shadow: 0 0 20px rgba(255,0,0,0.5); }
.footer-divider { height: 1px; background: linear-gradient(90deg, transparent, #8b0000, transparent); }
.bottom-copyright-content { padding: 18px 20px; text-align: center; }
.bottom-copyright-content p { margin: 0; font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; }
.bottom-copyright-content a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.bottom-copyright-content a:hover { color: #ff6b6b; }
.footer-skull { position: absolute; font-size: 3rem; opacity: 0.06; top: 30px; }
.footer-skull-left  { left: 20px; }
.footer-skull-right { right: 20px; }

/* ============================================
   RESPONSIVE
============================================ */

/* ── 1024px: 3 Cards → 2 Spalten ── */
@media (max-width: 1024px) {
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Letzte Card zentriert, wenn ungerade Anzahl */
    .sponsor-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
    }

    .partner-cta { padding: 50px 30px; }
}

/* ── 900px: Footer 2-spaltig ── */
@media (max-width: 900px) {
    .footer-top { grid-template-columns: repeat(2, 1fr); }
}

/* ── 768px: Navbar Mobile, Titel kleiner ── */
@media (max-width: 768px) {
    .partner-main-title  { font-size: 3rem;  letter-spacing: 5px; }
    .partner-subtitle    { font-size: 1.1rem; letter-spacing: 2px; }
    .partner-intro       { margin-bottom: 45px; }

    .cta-title  { font-size: 1.8rem; letter-spacing: 4px; }
    .cta-text   { font-size: 0.95rem; }
    .partner-cta { padding: 40px 25px; }

    /* Sponsors → 1 Spalte */
    .sponsors-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
    }

    .sponsor-card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
    }

    /* Navbar Mobile */
    .navbar-content      { padding: 12px 20px; }
    .mobile-menu-toggle  { display: flex; }
    .navbar-menu {
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(26,0,0,0.98), rgba(45,0,0,0.98));
        border-top: 1px solid #4a0000;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }
    .navbar.menu-active .navbar-menu { max-height: 500px; }
    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(74,0,0,0.5);
        text-align: center;
    }

    /* Footer 1-spaltig */
    .footer-top          { grid-template-columns: 1fr; gap: 30px; }
    .footer-container    { padding: 0 20px; }
}

/* ── 480px: Alles kompakter ── */
@media (max-width: 480px) {
    .partner-section     { padding: 50px 15px 70px; }

    .partner-main-title  { font-size: 2.3rem; letter-spacing: 3px; }
    .partner-subtitle    { font-size: 1rem; letter-spacing: 1px; }
    .partner-intro       { font-size: 0.9rem; margin-bottom: 35px; }

    .sponsors-grid       { max-width: 100%; gap: 15px; }

    .sponsor-card        { padding: 35px 20px 28px; gap: 16px; border-radius: 14px; }
    .sponsor-logo-wrap   { height: 90px; }
    .sponsor-logo-wrap img { max-height: 75px; }
    .sponsor-name        { font-size: 1.3rem; letter-spacing: 2px; }
    .sponsor-desc        { font-size: 0.85rem; }

    .partner-cta         { padding: 35px 18px; border-radius: 14px; }
    .cta-title           { font-size: 1.5rem; letter-spacing: 3px; }
    .cta-text            { font-size: 0.88rem; }
    .cta-button          { padding: 14px 30px; font-size: 1rem; letter-spacing: 2px; }

    a.logo-text          { font-size: 1.5rem; letter-spacing: 2px; }
}