/* Base Styles */
:root {
    --primary: #00f0ff;
    --primary-dark: #00c6d6;
    --secondary: #ff2e63;
    --dark: #101010;
    --darker: #080808;
    --light: #f1f1f1;
    --gray: #333333;
    --accent: #7b00ff;
    --gradient: linear-gradient(45deg, var(--primary), var(--accent));
    --text: #e0e0e0;
    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 4rem);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    letter-spacing: -0.5px;
}

p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

/* Layout */
.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

section {
    padding: clamp(4rem, 10vw, 6rem) 0;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--darker);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--secondary);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    color: white;
    box-shadow: 0 6px 20px rgba(255, 46, 99, 0.4);
}

.btn:hover:before {
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:before {
    background: var(--primary);
}

.btn-outline:hover {
    color: var(--darker);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.8rem, 2vw, 1rem);
    margin-top: 2rem;
}

.button-group .btn {
    flex: 0 1 auto;
    white-space: nowrap;
}

.button-group .btn i {
    margin-right: 0.5rem;
}

/* Utility Classes */
.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 4rem);
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
}

.section-header p {
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(16, 16, 16, 0.2);
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 1rem 0;
    background-color: rgba(8, 8, 8, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    font-size: 1.1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--darker);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/header/berlin.png') center/cover no-repeat;
    filter: brightness(1) contrast(1.2) saturate(1.2);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.7), rgba(8, 8, 8, 0.3), rgba(8, 8, 8, 0.8));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 1.5rem);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(-45deg);
    animation: scrollArrow 2s infinite;
    opacity: 0.7;
}

@keyframes scrollArrow {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0.7;
    }
    50% {
        transform: rotate(-45deg) translate(10px, 10px);
        opacity: 0.3;
    }
    100% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0.7;
    }
}

/* About Section */
.about {
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(0, 240, 255, 0.05) 1%, transparent 5%),
        radial-gradient(circle at 75% 75%, rgba(123, 0, 255, 0.05) 1%, transparent 5%);
    background-size: 60px 60px;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 1/1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 240, 255, 0.2), rgba(123, 0, 255, 0.2));
    opacity: 0.6;
    transition: var(--transition);
}

.about-image:hover::after {
    opacity: 0.3;
}

/* Club Ranking Section */
.club-ranking {
    background: #060606;
    position: relative;
    overflow: hidden;
    padding-top: clamp(5rem, 10vw, 7rem);
    padding-bottom: clamp(5rem, 10vw, 7rem);
}

.club-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%2300f0ff" fill-opacity="0.05"/></svg>');
    background-size: 20px 20px;
    z-index: 0;
}

.club-container {
    position: relative;
    z-index: 1;
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.club-card {
    background: rgba(24, 24, 24, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.club-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 240, 255, 0.2);
}

.club-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.club-card:hover .club-image img {
    transform: scale(1.1);
}

.club-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(255, 46, 99, 0.3);
}

.club-content {
    padding: 2rem 2.5rem;
}

.club-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.club-desc {
    color: #aaa;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.rating-container {
    margin-bottom: 2rem;
}

.rating-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.rating-title {
    font-weight: 500;
    font-size: 1rem;
}

.rating-value {
    color: var(--primary);
    font-weight: 600;
}

.rating-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    width: 0;
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.atmosphere-fill {
    background: var(--primary);
}

.sound-fill {
    background: var(--secondary);
}

.lineup-fill {
    background: var(--accent);
}

/* Top Lists Section */
.top-lists {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f1f 100%);
    position: relative;
    padding: 7rem 0;
    overflow: visible;
}

.lists-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(123, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 46, 99, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.lists-container {
    position: relative;
    z-index: 1;
}

.lists-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.list-category {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.list-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.list-category:hover::before {
    transform: translateX(0);
}

.list-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 240, 255, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.category-header i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-header h3 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.top-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.list-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 1rem;
    min-height: 80px;
}

.item-main {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    min-height: 80px;
}

.item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.item-content h4 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
    color: #fff;
    width: 100%;
}

.rating {
    display: flex;
    align-items: center;
}

.list-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.list-item:hover::after {
    transform: translateX(100%);
}

.list-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.list-item:has(.item-details.show) {
    background: rgba(255, 255, 255, 0.08);
}

.list-item[data-rank="1"] {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.list-item[data-rank="2"] {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.08), rgba(192, 192, 192, 0.04));
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.list-item[data-rank="3"] {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.08), rgba(205, 127, 50, 0.04));
    border: 1px solid rgba(205, 127, 50, 0.2);
}

.rank-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 50%;
    position: relative;
}

.list-item[data-rank="1"] .rank-number {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.list-item[data-rank="2"] .rank-number {
    background: linear-gradient(135deg, #C0C0C0, #808080);
    color: #000;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
}

.list-item[data-rank="3"] .rank-number {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    color: #fff;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.5);
}

.list-item[data-rank="4"] .rank-number,
.list-item[data-rank="5"] .rank-number {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.stars {
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 2px;
}

.item-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
    opacity: 0;
}

.item-details.show {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    opacity: 1;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.2s;
}

.item-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.details-info {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.details-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.details-info i {
    color: var(--primary);
}

/* Anime Figures */
.anime-figure-left {
    position: absolute;
    left: 2px;
    bottom: 0;
    width: 400px;
    height: auto;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
    animation: slideInLeft 1s ease-out;
}

.anime-figure-right {
    position: absolute;
    right: -160px;
    bottom: 0;
    width: 400px;
    height: auto;
    z-index: 1;
    opacity: 0.8;
    pointer-events: none;
    animation: slideInRight 1s ease-out;
}

.anime-figure-left:hover,
.anime-figure-right:hover {
    opacity: 1;
    transition: opacity 0.3s ease;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 0.8;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 0.8;
    }
}

/* Gallery Section */
.gallery {
    background-color: var(--dark);
    position: relative;
    padding-top: clamp(5rem, 10vw, 7rem);
    padding-bottom: clamp(5rem, 10vw, 7rem);
}

.gallery-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.gallery-container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: clamp(15px, 3vw, 25px);
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #222;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.2);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.2s ease;
    z-index: 10;
}

.video-play-button:hover {
    background: rgba(0, 240, 255, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(5px);
}

/* Improved Modal */
.improved-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pinch-zoom;
}

.improved-modal.active {
    display: flex;
}

.improved-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.improved-modal-media {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.improved-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    padding: 10px;
    transition: color 0.2s ease;
    background: none;
    border: none;
}

.improved-modal-close:hover {
    color: var(--primary);
}

.improved-modal-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    z-index: 2001;
    backdrop-filter: blur(5px);
}

.improved-modal-navigation:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.improved-modal-prev {
    left: 20px;
}

.improved-modal-next {
    right: 20px;
}

.improved-modal-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.swipe-hint {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-align: center;
    animation: fadeOut 3s ease-in-out;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

@keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

body.improved-modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

/* Footer */
footer {
    background: var(--darker);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--darker);
    transform: translateY(-5px);
}

.copyright {
    margin-top: 3rem;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .anime-figure-left,
    .anime-figure-right {
        width: 250px;
    }
    
    .anime-figure-left {
        left: -100px;
    }
    
    .anime-figure-right {
        right: -100px;
    }
}

@media (max-width: 1400px) {
    .lists-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .anime-figure-left,
    .anime-figure-right {
        width: 200px;
    }
    
    .anime-figure-left {
        left: -80px;
    }
    
    .anime-figure-right {
        right: -80px;
    }
}

@media (max-width: 1200px) {
    .lists-wrapper {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 4rem auto 0;
    }
    
    .anime-figure-left,
    .anime-figure-right {
        display: none;
    }
}

@media (max-width: 1100px) {
    h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        text-align: center;
    }

    header {
        display: none !important;
    }

    /* Verstecke das normale Grid auf Mobile */

    /* Bild/Video in der Karte */
    .gallery h2::after{
        background: white;
    }

    /* Swipe Indikatoren */

    .gallery-grid {
        display: none;
    }

    .gallery {
    background: linear-gradient(135deg, #fd297b 0%, #ff655b 50%, #fdc468 100%);
    padding-top: 50px;
    }

    /* Tinder-Style Container */
    .tinder-gallery-mobile {
        display: block;
        position: relative;
        width: 100%;
        max-width: 400px;
        height: 500px;
        margin: 0 auto;
        perspective: 1000px;
    }

    /* Kartenstapel */
    .tinder-card-stack {
        position: relative;
        width: 100%;
        height: 100%;
    }

    /* Einzelne Karte */
    .tinder-card {
        position: absolute;
        width: 100%;
        height: 100%;
        background: #222;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        cursor: grab;
        transition: transform 0.3s ease, opacity 0.3s ease;
        touch-action: none;
    }

    .tinder-card:active {
        cursor: grabbing;
    }

    /* Karten-Stapel Effekt */
    .tinder-card:nth-child(1) {
        z-index: 100;
        transform: scale(1) translateY(0);
    }

    .tinder-card:nth-child(2) {
        z-index: 90;
        transform: scale(0.95) translateY(10px);
        opacity: 0.9;
    }

    .tinder-card:nth-child(3) {
        z-index: 80;
        transform: scale(0.9) translateY(20px);
        opacity: 0.8;
    }

    .tinder-card:nth-child(n+4) {
        z-index: 70;
        transform: scale(0.85) translateY(30px);
        opacity: 0;
    }

    /* Bild/Video in der Karte */
    .tinder-card img,
    .tinder-card video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
        user-select: none;
    }

    /* Karten-Info Overlay */
    .tinder-card-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        padding: 30px 20px 20px;
        z-index: 10;
    }

    .tinder-card-title {
        color: white;
        font-size: 1.3rem;
        font-weight: 600;
        margin: 0;
    }

    .tinder-card-counter {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        margin-top: 5px;
    }

    /* Swipe Indikatoren */
    .swipe-indicator {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 5rem;
        opacity: 0;
        transition: opacity 0.2s ease;
        pointer-events: none;
        z-index: 200;
    }

    .swipe-indicator.left {
        left: 20px;
        color: #ff2e63;
    }

    .swipe-indicator.right {
        right: 20px;
        color: #00f0ff;
    }

    .swipe-indicator.show {
        opacity: 0.8;
    }

    /* Swipe Actions (Like/Nope) */
    .tinder-actions {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 2rem;
    }

    .tinder-action-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .tinder-action-btn:active {
        transform: scale(0.9);
    }

    .tinder-action-btn.nope {
        background: #ff2e63;
        color: white;
    }

    .tinder-action-btn.like {
        background: #00f0ff;
        color: var(--darker);
    }

    .tinder-action-btn.undo {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Animation für ausgeswiped Karten */
    .tinder-card.swiped-left {
        transform: translateX(-150%) rotate(-30deg) !important;
        opacity: 0 !important;
        transition: transform 0.5s ease, opacity 0.5s ease !important;
    }

    .tinder-card.swiped-right {
        transform: translateX(150%) rotate(30deg) !important;
        opacity: 0 !important;
        transition: transform 0.5s ease, opacity 0.5s ease !important;
    }

    /* End Screen */
    .tinder-end-screen {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 300;
    }

    .tinder-end-screen.show {
        display: block;
    }

    .tinder-end-screen i {
        font-size: 4rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .tinder-end-screen h3 {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .tinder-end-screen .btn {
        margin-top: 1rem;
    }

    /* Video Play Button */
    .tinder-video-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.7);
        border: none;
        color: white;
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 50;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .tinder-video-play:hover {
        background: rgba(0, 240, 255, 0.9);
        transform: translate(-50%, -50%) scale(1.1);
    }

    /* ===== CLUB RANKING MOBILE ===== */
    .club-card {
        background: rgba(24, 24, 24, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        margin-bottom: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: visible;
        transition: all 0.3s ease;
    }

    .club-card:hover {
        transform: none;
    }

    .club-card-header {
        display: grid;
        grid-template-columns: 60px 1fr auto;
        gap: 1rem;
        padding: 1rem;
        align-items: center;
        cursor: pointer;
    }

    .club-card-header:active {
        background: rgba(255, 255, 255, 0.05);
    }

    .club-thumbnail {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }

    .club-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .club-list-info {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        min-width: 0;
    }

    .club-list-info h3 {
        font-size: 1.1rem;
        margin: 0;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .club-quick-rating {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        color: var(--primary);
    }

    .club-quick-rating .stars {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .club-expand-icon {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 240, 255, 0.1);
        border-radius: 50%;
        color: var(--primary);
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .club-card.expanded .club-expand-icon {
        transform: rotate(180deg);
        background: var(--primary);
        color: var(--darker);
    }

    .club-details-mobile {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0 1rem;
        opacity: 0;
    }

    .club-card.expanded .club-details-mobile {
        max-height: 800px;
        padding: 0 1rem 1.5rem 1rem;
        opacity: 1;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s ease 0.1s;
    }

    .club-details-image {
        width: 100%;
        height: 180px;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 1rem;
        position: relative;
    }

    .club-details-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .club-badge-mobile {
        display: none !important;
    }

    .club-desc-mobile {
        color: #aaa;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .club-ratings-mobile {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .rating-item-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .rating-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
    }

    .rating-title-mobile {
        font-weight: 500;
        color: var(--text);
    }

    .rating-value-mobile {
        color: var(--primary);
        font-weight: 600;
        font-size: 0.95rem;
    }

    .rating-bar-mobile {
        width: 100%;
        height: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
        overflow: hidden;
    }

    .rating-fill-mobile {
        height: 100%;
        border-radius: 3px;
        transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Rating Bar Farben - NUR HIER definiert */
    .club-details-mobile .rating-fill-mobile.atmosphere {
        background: #00f0ff !important;
    }

    .club-details-mobile .rating-fill-mobile.sound {
        background: #ff2e63 !important;
    }

    .club-details-mobile .rating-fill-mobile.lineup {
        background: #7b00ff !important;
    }

    .club-card.expanded {
        box-shadow: 0 8px 25px rgba(0, 240, 255, 0.15);
        border-color: rgba(0, 240, 255, 0.3);
    }

    /* ===== ALLGEMEINE MOBILE STYLES ===== */
    section {
        padding: clamp(3rem, 8vw, 4rem) 0;
    }

    .club-ranking {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .ranking-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(8, 8, 8, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .button-group {
        flex-direction: column;
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .improved-modal-navigation {
        display: none;
    }

    .improved-modal-counter {
        bottom: 20px;
        background: rgba(0, 0, 0, 0.8);
        padding: 10px 20px;
    }

    .improved-modal-close {
        top: 20px;
        right: 20px;
        font-size: 1.8rem;
    }

    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.8));
    }

    .video-play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .list-category {
        padding: 2rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .category-header i {
        font-size: 2rem;
    }
    
    .category-header h3 {
        font-size: 1.6rem;
    }
    
    .list-item {
        min-height: 70px;
    }
    
    .item-main {
        grid-template-columns: auto 1fr;
        gap: 1rem;
        padding: 1rem;
        min-height: 70px;
    }
    
    .rank-number {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .item-content h4 {
        font-size: 1.1rem;
    }
    
    .stars {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

    .tinder-gallery-mobile {
        height: 450px;
    }

    .tinder-action-btn {
        width: 55px;
        height: 55px;
    }

    .club-card-header {
        grid-template-columns: 50px 1fr auto;
        gap: 0.8rem;
        padding: 0.8rem;
    }

    .club-thumbnail {
        width: 50px;
        height: 50px;
    }

    .club-list-info h3 {
        font-size: 1rem;
    }

    .club-details-image {
        height: 150px;
    }

    .club-desc-mobile {
        font-size: 0.85rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-item {
        border-radius: 8px;
    }

    .improved-modal {
        padding: 10px;
    }

    .improved-modal-close {
        top: 10px;
        right: 10px;
        font-size: 1.5rem;
    }

    .about-image {
        max-width: 100%;
    }
}
