/* ===========================
   CSS Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --gray-dark: #1a1a1a;
    --gray-medium: #333333;
    --gray-light: #f5f5f5;
    --gray-border: #e0e0e0;
    --text-dark: #212121;
    --text-light: #757575;
    --accent-hover: #2d2d2d;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(0, 0, 0, 0.02) 30px,
        rgba(0, 0, 0, 0.02) 60px
    );
    pointer-events: none;
    z-index: 0;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.3s ease-out 0.7s forwards;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loading-logo {
    width: 120px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-bar-container {
    width: 200px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar {
    height: 100%;
    background-color: #ffffff;
    width: 0%;
    animation: loadBar 1s ease-out forwards;
}

@keyframes loadBar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

/* ===========================
   Header Styles
   =========================== */
.header {
    background-color: var(--primary-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.official-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: var(--primary-white);
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #cccccc;
    transform: scale(1.1);
}

.quick-links a {
    color: var(--primary-white);
    margin: 0 10px;
    font-size: 14px;
}

.quick-links a:hover {
    color: #cccccc;
}

.main-header {
    background-color: var(--primary-white);
    padding: 15px 0;
    border-bottom: 3px solid var(--primary-black);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 70px;
    width: auto;
}

.club-name h1 {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-black);
    line-height: 1.2;
}

.club-name span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
    position: relative;
    pointer-events: auto;
}

.mobile-menu-toggle:hover {
    opacity: 0.8;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-black);
    margin: 4px 0;
    transition: 0.3s;
    pointer-events: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

/* Prevent menu links from covering mobile toggle button */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        pointer-events: auto !important;
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    border: 3px solid var(--primary-black);
    min-width: 240px;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-speed) ease;
    z-index: 100;
    list-style: none;
    padding: 0;
    display: flex !important;
    flex-direction: column !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 2px solid var(--primary-black);
    display: block;
    width: 100%;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 14px 24px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.dropdown-menu a:hover {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

/* Sub-Sub-Menu (Flyout) Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu-arrow {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-submenu-list {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: var(--primary-white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--primary-black);
    min-width: 220px;
    margin-left: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all var(--transition-speed) ease;
    z-index: 101;
    list-style: none;
    padding: 0;
    display: flex !important;
    flex-direction: column !important;
}

.dropdown-submenu:hover .dropdown-submenu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu-list li {
    border-bottom: 2px solid var(--primary-black);
    display: block;
    width: 100%;
}

.dropdown-submenu-list li:last-child {
    border-bottom: none;
}

.dropdown-submenu-list a {
    padding: 14px 24px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
}

.dropdown-submenu-list a:hover {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.dropdown-arrow {
    display: none;
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* ===========================
   Hero Multi-Slider
   =========================== */
.hero-multi-slider {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 160px);
    background-color: var(--primary-black);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    padding: 20px;
}

.main-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    border: 8px solid var(--primary-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.main-slider-container:hover {
    transform: rotate(0deg) scale(1.01);
}

.main-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.main-slide.active {
    opacity: 1;
}

.main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.2);
}

.main-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    color: var(--primary-white);
    padding: 80px 40px 50px;
    z-index: 10;
}

.slide-badge {
    display: inline-block;
    background-color: var(--primary-white);
    color: var(--primary-black);
    padding: 8px 25px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3px;
    transform: skew(-10deg);
    margin-bottom: 20px;
    border: 3px solid var(--primary-black);
    box-shadow: 5px 5px 0 var(--primary-black);
}

.glitch {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 8px;
    position: relative;
    text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.3);
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
}

.typewriter {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    border-right: 3px solid var(--primary-white);
    animation: typing 3.5s steps(40, end), blink-cursor 0.75s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-cursor {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-white) }
}

.hero-slide-btn {
    display: inline-block;
    background-color: var(--primary-white);
    color: var(--primary-black);
    border: 4px solid var(--primary-black);
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 25px;
}

.hero-slide-btn:hover {
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.main-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(1deg);
    background-color: var(--primary-white);
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    font-size: 20px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-weight: 900;
    box-shadow: 3px 3px 0 var(--primary-black);
}

.main-slider-btn:hover {
    transform: translateY(-50%) rotate(-1deg) scale(1.1);
    background-color: var(--primary-black);
    color: var(--primary-white);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.main-slider-btn.prev {
    left: 30px;
}

.main-slider-btn.next {
    right: 30px;
}

.main-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.main-slider-dot {
    width: 15px;
    height: 15px;
    background-color: var(--primary-white);
    border: 3px solid var(--primary-black);
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.main-slider-dot.active,
.main-slider-dot:hover {
    background-color: var(--primary-black);
    border-color: var(--primary-white);
    transform: rotate(45deg) scale(1.3);
}

/* Side Mini Sliders */
.side-sliders {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-slider {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border: 6px solid var(--primary-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mini-slider:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.mini-slider-1 {
    transform: rotate(2deg);
}

.mini-slider-2 {
    transform: rotate(-3deg);
}

.mini-slider-3 {
    transform: rotate(1deg);
}

.mini-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.mini-slide.active {
    opacity: 1;
}

.mini-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) contrast(1.3);
}

.mini-slide-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    border: 3px solid var(--primary-white);
    transform: skew(-5deg);
}

/* ===========================
   Highlights Section
   =========================== */
.highlights-section {
    background-color: var(--primary-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(0, 0, 0, 0.02) 30px,
        rgba(0, 0, 0, 0.02) 60px
    );
    pointer-events: none;
}

.highlights-section .container {
    position: relative;
    z-index: 1;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.highlight-card {
    padding: 35px 25px;
    text-align: center;
    border: 5px solid var(--primary-black);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15);
}

.highlight-black {
    background-color: var(--primary-black);
    color: var(--primary-white);
    transform: rotate(-2deg) rotateX(5deg) rotateY(-5deg);
}

.highlight-white {
    background-color: var(--primary-white);
    color: var(--primary-black);
    transform: rotate(2deg) rotateX(5deg) rotateY(5deg);
}

.highlight-green {
    background-color: #10b981;
    color: var(--primary-white);
    transform: rotate(1deg) rotateX(5deg) rotateY(-3deg);
}

.highlight-card:hover {
    transform: rotate(0deg) rotateX(0deg) rotateY(0deg) scale(1.08) translateY(-15px);
    box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.3), 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.highlight-icon {
    font-size: 72px;
    margin-bottom: 25px;
    display: inline-block;
    font-weight: 900;
    line-height: 1;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    text-rendering: optimizeLegibility;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-rotate {
    animation: rotate 3s linear infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-shake {
    animation: shake 3s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.highlight-card h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight-card p {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.highlight-black p {
    color: rgba(255, 255, 255, 0.85);
}

.highlight-white p {
    color: var(--text-light);
}

.highlight-green p {
    color: rgba(255, 255, 255, 0.9);
}

.btn-link-white,
.btn-link-black {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 0;
    display: inline-block;
    border-bottom: 3px solid;
    transition: all 0.3s ease;
}

.btn-link-white {
    color: var(--primary-white);
    border-color: var(--primary-white);
}

.btn-link-white:hover {
    letter-spacing: 3px;
    padding-left: 10px;
}

.btn-link-black {
    color: var(--primary-black);
    border-color: var(--primary-black);
}

.btn-link-black:hover {
    letter-spacing: 3px;
    padding-left: 10px;
}

/* ===========================
   Diagonal Split Section
   =========================== */
.diagonal-split-section {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    overflow: hidden;
    z-index: 5;
    background-color: var(--primary-white);
}

.diagonal-half {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    transition: all 0.5s ease;
}

.diagonal-half:hover {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.diagonal-half:last-child {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 15% 100%);
    margin-left: -5%;
}

.diagonal-half:last-child:hover {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%);
}

.diagonal-black {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.diagonal-white {
    background-color: var(--primary-white);
    color: var(--primary-black);
    background-image: linear-gradient(to bottom, white, white);
}

.diagonal-content {
    text-align: center;
    padding: 40px;
    max-width: 500px;
}

.diagonal-title {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.diagonal-black .diagonal-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 5px;
    background-color: var(--primary-white);
    transform: skew(-20deg);
}

.diagonal-white .diagonal-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 5px;
    background-color: var(--primary-black);
    transform: skew(20deg);
}

.diagonal-text {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

.diagonal-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===========================
   News Section
   =========================== */
.news-section {
    padding: 100px 0;
    background-color: var(--primary-white);
    position: relative;
}

.news-section::before {
    content: 'NEWS';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    letter-spacing: 20px;
    z-index: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 8px solid var(--primary-black);
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 6px;
    position: relative;
    padding: 15px 30px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    transform: skew(-5deg);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.section-header h2::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 3px solid var(--primary-black);
    transform: skew(0deg);
}

.news-filter {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 15px 30px;
    background-color: var(--primary-white);
    border: 4px solid var(--primary-black);
    color: var(--primary-black);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.news-card {
    background-color: var(--primary-white);
    border: 5px solid var(--primary-black);
    overflow: hidden;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.news-card:nth-child(odd) {
    transform: rotate(-1deg);
}

.news-card:nth-child(even) {
    transform: rotate(1deg);
}

.news-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.03);
    box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.news-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    border-bottom: 5px solid var(--primary-black);
}

.news-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(20%) contrast(1.1);
}

.news-card:hover .news-card-image img {
    transform: scale(1.15) rotate(2deg);
    filter: grayscale(0%) contrast(1.2);
}

.news-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid var(--primary-white);
    transform: skew(-10deg);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.news-card-content {
    padding: 30px;
    background-color: var(--primary-white);
}

.news-card-date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.news-card h3 {
    font-size: 21px;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Weitere News Button */
.news-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.btn-mehr-news {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 4px solid var(--primary-black);
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-mehr-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-white);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-mehr-news:hover::before {
    left: 0;
}

.btn-mehr-news:hover {
    color: var(--primary-black);
    border-color: var(--primary-black);
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.4);
}

.btn-mehr-news:hover .btn-arrow {
    animation: arrow-bounce 0.6s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

.btn-text {
    display: block;
}

.btn-arrow {
    display: inline-block;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.news-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.news-card-link {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.news-card-link:hover {
    color: #666;
}

.load-more-container {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.btn-load-more {
    padding: 20px 60px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    border: 5px solid var(--primary-black);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.btn-load-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--primary-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-load-more:hover::before {
    width: 300%;
    height: 300%;
}

.btn-load-more:hover {
    color: var(--primary-black);
    transform: translateY(-5px);
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.3);
}

.btn-load-more span {
    position: relative;
    z-index: 1;
}

/* ===========================
   Info Section
   =========================== */
.info-section {
    padding: 100px 0;
    background-color: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.03) 50px,
        rgba(255, 255, 255, 0.03) 100px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.info-card-link {
    text-decoration: none;
    display: block;
}

.info-card {
    background-color: var(--primary-white);
    border: 6px solid var(--primary-white);
    overflow: hidden;
    box-shadow: 15px 15px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.info-card-link:nth-child(1) .info-card {
    transform: rotate(-2deg);
}

.info-card-link:nth-child(2) .info-card {
    transform: rotate(1deg);
}

.info-card-link:nth-child(3) .info-card {
    transform: rotate(-1deg);
}

.info-card-link:hover .info-card {
    transform: rotate(0deg) scale(1.05) translateY(-15px);
    box-shadow: 20px 20px 0 rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.info-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-bottom: 6px solid var(--primary-black);
    filter: grayscale(30%) contrast(1.2);
    transition: all 0.5s ease;
}

.info-card-link:hover .info-card img {
    filter: grayscale(0%) contrast(1.3);
    transform: scale(1.1);
}

.info-card-content {
    padding: 40px;
    background-color: var(--primary-white);
    position: relative;
}

.info-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background-color: var(--primary-black);
}

.info-icon {
    font-size: 60px;
    text-align: center;
    margin: 40px 0 30px;
    color: var(--primary-black);
}

.info-card h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 20px;
}

.info-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 20px;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    border: 4px solid var(--primary-black);
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin-left: 20px;
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease;
    font-size: 20px;
}

.btn-secondary:hover {
    padding-right: 50px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover::after {
    right: 15px;
}

/* ===========================
   SV09 TV Section
   =========================== */
.sv09-tv-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.tv-background-wrapper {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    padding: 100px 0;
    position: relative;
}

.tv-background-wrapper::before {
    content: 'TV';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-size: 400px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: 30px;
    pointer-events: none;
}

.tv-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.tv-badge {
    display: inline-block;
    background-color: #FF0000;
    color: var(--primary-white);
    padding: 8px 25px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 20px;
    border: 3px solid var(--primary-white);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.tv-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
}

.tv-logo {
    font-size: 80px;
    animation: tvGlitch 4s infinite;
    font-weight: 900;
    line-height: 1;
}

@keyframes tvGlitch {
    0%, 90%, 100% { transform: scale(1); }
    92% { transform: scale(1.1) rotate(-5deg); }
    94% { transform: scale(0.95) rotate(5deg); }
}

.tv-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 2px;
}

.tv-featured {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.featured-video-container {
    position: relative;
    background-color: var(--primary-black);
    border: 8px solid var(--primary-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transform: rotate(-1deg);
    transition: all 0.4s ease;
}

.featured-video-container:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9);
}

.featured-video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.featured-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.8);
}

.featured-video-container:hover .featured-video-thumbnail img {
    transform: scale(1.1);
    filter: brightness(1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background-color: #FF0000;
    border: 6px solid var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 35px;
    border-color: transparent transparent transparent var(--primary-white);
    margin-left: 8px;
}

.featured-video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: #CC0000;
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.7);
}

.featured-video-info {
    padding: 30px;
    background-color: var(--primary-white);
    border-top: 6px solid #FF0000;
}

.featured-video-category {
    display: inline-block;
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    transform: skew(-8deg);
}

.featured-video-info h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 10px;
    line-height: 1.3;
    text-transform: uppercase;
}

.featured-video-meta {
    display: flex;
    gap: 30px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
}

.tv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.tv-video-card {
    background-color: var(--primary-white);
    border: 5px solid var(--primary-white);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.tv-video-card:nth-child(odd) {
    transform: rotate(-1deg);
}

.tv-video-card:nth-child(even) {
    transform: rotate(1deg);
}

.tv-video-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.03);
    box-shadow: 15px 15px 0 rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.tv-video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: var(--primary-black);
}

.tv-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.85);
}

.tv-video-card:hover .tv-video-thumbnail img {
    transform: scale(1.15);
    filter: brightness(1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--primary-white);
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid var(--primary-white);
}

.mini-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 0, 0, 0.9);
    border: 4px solid var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.mini-play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--primary-white);
    margin-left: 5px;
}

.tv-video-card:hover .mini-play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.tv-video-info {
    padding: 20px;
    background-color: var(--primary-white);
}

.tv-video-category {
    display: inline-block;
    background-color: #FF0000;
    color: var(--primary-white);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.tv-video-info h4 {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 8px;
    line-height: 1.3;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tv-video-meta {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.tv-cta {
    background-color: var(--primary-white);
    border: 8px solid var(--primary-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: rotate(1deg);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.tv-cta:hover {
    transform: rotate(0deg) scale(1.02);
}

.tv-cta-content {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-white) 0%, #f5f5f5 100%);
}

.tv-cta h3 {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.tv-cta p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    font-weight: 500;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 50px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    border: 5px solid var(--primary-black);
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
}

.yt-icon {
    font-size: 24px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    transition: all 0.3s ease;
}

.btn-youtube:hover {
    background-color: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.3);
}

.btn-youtube:hover .yt-icon {
    transform: scale(1.2) rotate(360deg);
}

/* ===========================
   Instagram Section
   =========================== */
.instagram-section {
    padding: 100px 0;
    background-color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(0, 0, 0, 0.02) 30px,
        rgba(0, 0, 0, 0.02) 60px
    );
    pointer-events: none;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.instagram-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.instagram-icon {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
}

.instagram-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    position: relative;
}

.instagram-handle {
    font-size: 24px;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    padding: 8px 20px;
    border: 3px solid var(--primary-black);
    background-color: var(--primary-white);
    transform: skew(-5deg);
}

.btn-instagram {
    padding: 18px 40px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    border: 4px solid var(--primary-black);
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

.btn-instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-instagram:hover::before {
    left: 0;
}

.btn-instagram:hover {
    border-color: #dc2743;
    transform: translateY(-4px);
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.2);
}

.btn-instagram span {
    position: relative;
    z-index: 1;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 5px solid var(--primary-black);
    cursor: pointer;
    transition: all 0.4s ease;
    background-color: var(--gray-light);
    display: block;
    text-decoration: none;
}

.instagram-post:nth-child(1) {
    transform: rotate(-3deg);
}

.instagram-post:nth-child(2) {
    transform: rotate(2deg);
}

.instagram-post:nth-child(3) {
    transform: rotate(-1deg);
}

.instagram-post:nth-child(4) {
    transform: rotate(3deg);
}

.instagram-post:nth-child(5) {
    transform: rotate(-2deg);
}

.instagram-post:nth-child(6) {
    transform: rotate(1deg);
}

.instagram-post:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: grayscale(20%);
}

.instagram-post:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-white);
    font-weight: 700;
    font-size: 18px;
}

.instagram-stat-icon {
    font-size: 24px;
}

.instagram-cta {
    text-align: center;
    padding: 50px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    border: 6px solid var(--primary-black);
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.15);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.instagram-cta:hover {
    transform: rotate(0deg);
}

.instagram-cta p {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-follow {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    border: 5px solid var(--primary-white);
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-follow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-follow:hover::before {
    width: 400%;
    height: 400%;
}

.btn-follow span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-follow:hover span {
    color: var(--primary-white);
}

/* Responsive Instagram */
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .instagram-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .instagram-header h2 {
        font-size: 32px;
    }
    
    .instagram-handle {
        font-size: 18px;
    }
    
    .instagram-cta p {
        font-size: 20px;
    }
}

/* ===========================
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-follow {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    border: 5px solid var(--primary-white);
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-follow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-follow:hover::before {
    width: 400%;
    height: 400%;
}

.btn-follow span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-follow:hover span {
    color: var(--primary-white);
}

.btn-follow:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-white);
    z-index: 10;
}

/* Footer Partners */
.footer-partners {
    margin-bottom: 70px;
    padding-bottom: 60px;
    padding-top: 80px;
    border-bottom: 4px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.footer-partners-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--primary-white);
    text-align: center;
    margin-bottom: 45px;
    text-transform: uppercase;
    letter-spacing: 6px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
}

.footer-partners-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 10%;
    right: 10%;
    height: 4px;
    background-color: var(--primary-white);
    transform: skew(-10deg);
}

/* Partner Laufleiste (Ticker) */
.partner-ticker-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.partner-ticker {
    display: flex;
    gap: 40px;
    animation: scroll-partners 40s linear infinite;
    will-change: transform;
}

.partner-ticker:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-ticker-item {
    background-color: var(--primary-white);
    padding: 1px;
    text-align: center;
    border: 4px solid var(--primary-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    min-width: 200px;
    flex-shrink: 0;
    transform: rotate(-1deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.partner-ticker-item:nth-child(even) {
    transform: rotate(1deg);
}

.partner-ticker-item img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.partner-ticker-item span {
    position: relative;
    z-index: 1;
    color: var(--primary-black);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partner-ticker-item:hover {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-white);
    transform: rotate(0deg) translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.partner-ticker-item:hover img {
    filter: grayscale(0%) brightness(1.1);
}

.partner-ticker-item:hover span {
    color: var(--primary-black);
}

/* Alte Partner-Grid Styles entfernen/auskommentieren */
.footer-partner-logos {
    display: none;
}

.footer-partner-item {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: none;
    position: relative;
}

.footer-content::before {
    content: 'SV 1909';
    position: absolute;
    top: 50%;
    right: -5%;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 10px;
    transform: translateY(-50%) rotate(-5deg);
    z-index: 0;
}

.footer-content::after {
    content: 'OTZENRATH';
    position: absolute;
    top: 50%;
    right: -5%;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 10px;
    transform: translateY(calc(-50% + 120px)) rotate(-5deg);
    z-index: 0;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 15px;
    z-index: 1;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-white);
    transform: skew(-20deg);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-column ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.footer-column ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.footer-column ul li::before {
    content: '►';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
    transition: left 0.3s ease;
}

.footer-column ul li:hover::before {
    left: 5px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-white);
    letter-spacing: 1px;
}

.footer-social a {
    display: inline-block;
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social a:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
    border-color: var(--primary-white);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    position: relative;
    z-index: 1;
}

.footer-watermark {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    justify-content: space-between;
}

.footer-logo-watermark {
    width: 80px;
    height: 80px;
    opacity: 0.15;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo-watermark:hover {
    opacity: 0.3;
    transform: scale(1.05);
}

.footer-text-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-white);
    transform: translateX(3px);
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-white);
    transform: translateX(3px);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-multi-slider {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: 800px;
    }
    
    .main-slider-container {
        grid-row: 1;
    }
    
    .side-sliders {
        grid-row: 2;
        flex-direction: row;
        gap: 15px;
    }
    
    .mini-slider {
        height: 150px;
    }
    
    .match-center-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .live-ticker-box,
    .matches-scroll,
    .table-box {
        transform: rotate(0deg) !important;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-partner-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .main-header {
        padding: 10px 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    .club-name h1 {
        font-size: 18px;
    }
    
    .club-name span {
        font-size: 12px;
    }
    
    .main-nav {
        position: fixed;
        top: 130px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary-white);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        overflow-y: auto;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid var(--gray-border);
    }
    
    .main-nav a {
        padding: 15px 10px;
        border-radius: 0;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .dropdown-arrow {
        display: inline-block !important;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background-color: var(--gray-light) !important;
        display: none !important;
        border: none !important;
        margin-top: 0 !important;
        top: auto !important;
        left: auto !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: flex !important;
    }
    
    .dropdown-menu a {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1000;
        position: relative;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content::before,
    .footer-content::after {
        font-size: 100px;
        right: 0;
    }
    
    .footer-content::after {
        transform: translateY(calc(-50% + 70px)) rotate(-5deg);
    }
    
    .footer-partner-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .match-center-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 5px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .social-links,
    .quick-links {
        display: flex;
        gap: 10px;
    }
    
    .main-header {
        padding: 8px 0;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .club-name {
        margin-left: 0;
    }
    
    .club-name h1 {
        font-size: 16px;
    }
    
    .club-name span {
        font-size: 11px;
    }
    
    .glitch {
        font-size: 42px;
        letter-spacing: 3px;
    }
    
    .typewriter {
        font-size: 16px;
    }
    
    .hero-multi-slider {
        padding: 10px;
        min-height: 900px;
    }
    
    .main-slider-container {
        height: 500px;
    }
    
    .side-sliders {
        flex-direction: column;
    }
    
    .mini-slider {
        height: 120px;
    }
    
    .match-center-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 10px;
    }
    
    .live-ticker-header,
    .matches-scroll-header,
    .table-box-header {
        padding: 15px 20px;
    }
    
    .live-ticker-content,
    .matches-scroll-content,
    .table-box-content {
        padding: 20px;
    }
    
    .highlight-icon {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .highlight-card h3 {
        font-size: 18px;
    }
    
    .diagonal-split-section {
        flex-direction: column;
        height: auto;
    }
    
    .diagonal-half {
        clip-path: none !important;
        padding: 60px 20px;
        width: 100% !important;
        display: block !important;
    }
    
    .diagonal-half:last-child {
        margin-left: 0;
        clip-path: none !important;
        display: block !important;
    }
    
    .diagonal-half:hover {
        clip-path: none !important;
    }
    
    .diagonal-half:last-child:hover {
        clip-path: none !important;
    }
    
    .diagonal-title {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .diagonal-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .info-card img {
        height: 250px !important;
        display: block !important;
    }
    
    .info-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
        letter-spacing: 3px;
    }
    
    .news-filter {
        width: 100%;
    }
    
    .news-section::before {
        font-size: 100px;
        letter-spacing: 10px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content::before {
        font-size: 80px;
        right: 5%;
    }
    
    .footer-content::after {
        font-size: 40px;
        transform: translateY(calc(-50% + 50px)) rotate(-5deg);
        right: 5%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-header {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .instagram-title-wrapper {
        flex-direction: column;
    }
    
    .instagram-header h2 {
        font-size: 32px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tv-title {
        font-size: 42px;
        flex-direction: column;
        gap: 15px;
    }
    
    .tv-grid {
        grid-template-columns: 1fr;
    }
    
    .tv-cta h3 {
        font-size: 28px;
    }
    
    .featured-video {
        height: 300px;
    }
    
    .tv-card {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 11px;
        padding: 4px 0;
    }
    
    .social-links a,
    .quick-links a {
        font-size: 11px;
        margin: 0 5px;
    }
    
    .main-header {
        padding: 6px 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .club-name h1 {
        font-size: 14px;
    }
    
    .club-name span {
        font-size: 10px;
    }
    
    .glitch {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .typewriter {
        font-size: 7px;
    }
    
    .slide-badge {
        padding: 4px 12px;
        font-size: 7px;
        letter-spacing: 1px;
        border: 2px solid var(--primary-black);
        box-shadow: 3px 3px 0 var(--primary-black);
    }
    
    .main-slider-container {
        height: 350px;
    }
    
    .mini-slider {
        height: 100px;
    }
    
    .match-center-header h2 {
        font-size: 28px;
    }
    
    .live-ticker-header,
    .matches-scroll-header,
    .table-box-header {
        padding: 12px 15px;
    }
    
    .live-ticker-title,
    .matches-scroll-title,
    .table-box-title {
        font-size: 16px;
    }
    
    .live-ticker-content,
    .matches-scroll-content,
    .table-box-content {
        padding: 15px;
    }
    
    .ticker-refresh-btn {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .live-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .current-match {
        padding: 12px;
    }
    
    .match-score {
        font-size: 20px;
    }
    
    .event-minute {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .event-text {
        font-size: 12px;
    }
    
    .match-card {
        padding: 12px;
    }
    
    .liga-logo {
        width: 30px;
        height: 30px;
    }
    
    .match-teams img {
        width: 35px;
        height: 35px;
    }
    
    .league-table th {
        font-size: 10px;
        padding: 8px 6px;
    }
    
    .league-table td {
        font-size: 11px;
        padding: 10px 6px;
    }
    
    .slider-btn,
    .main-slider-btn {
        font-size: 10px;
        padding: 5px 6px;
        border: 1px solid var(--primary-black);
        box-shadow: 2px 2px 0 var(--primary-black);
    }
    
    .hero-slide-btn {
        font-size: 8px;
        padding: 6px 12px;
        border: 2px solid var(--primary-black);
        box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
    }
    
    .hero-slide-btn:hover {
        box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
    }
    
    .main-slider-dot {
        width: 8px;
        height: 8px;
        border: 2px solid var(--primary-black);
    }
    
    .main-slider-dot.active,
    .main-slider-dot:hover {
        transform: rotate(45deg) scale(1.2);
    }
    
    .main-slider-dots {
        gap: 8px;
        bottom: 15px;
    }
    
    .diagonal-white {
        display: none;
    }
    
    .highlight-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .highlight-card h3 {
        font-size: 16px;
    }
    
    .highlight-card p {
        font-size: 13px;
    }
    
    .diagonal-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .diagonal-text {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .news-section::before {
        font-size: 60px;
        letter-spacing: 5px;
    }
    
    .news-card h3 {
        font-size: 16px;
    }
    
    .instagram-header h2 {
        font-size: 28px;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .tv-title {
        font-size: 32px;
    }
    
    .featured-video {
        height: 250px;
    }
    
    .tv-card {
        height: 200px;
    }
    
    .footer-content::before {
        font-size: 60px;
    }
    
    .footer-content::after {
        font-size: 30px;
        transform: translateY(calc(-50% + 40px)) rotate(-5deg);
    }
    
    .footer-partner-logos {
        grid-template-columns: 1fr;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
}

/* ===========================
   Match Center Section
   =========================== */
.match-center-header {
    margin-bottom: 40px;
    text-align: center;
}

.match-center-header h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    transform: skew(-5deg);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.match-center-header h2::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid var(--primary-black);
    transform: skew(0deg);
}

.match-center {
    padding: 60px 0;
    background-color: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.match-center::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.03) 50px,
        rgba(255, 255, 255, 0.03) 100px
    );
    animation: slide 20s linear infinite;
}

.match-center-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Left: Live Ticker Box */
.live-ticker-box {
    background: #1a1a1a;
    border: 2px solid #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: rotate(-0.5deg);
}

.live-ticker-box:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.live-ticker-header {
    background: #ffffff;
    padding: 20px 30px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #f0f0f0;
}

.ticker-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ticker-refresh-btn {
    background: transparent;
    border: 2px solid #000000;
    color: #000000;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-weight: 900;
}

.ticker-refresh-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: rotate(180deg);
}

.live-ticker-title {
    font-size: 16px;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-ticker-content {
    padding: 30px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: none;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.live-dot {
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.live-current-match {
    background: #0a0a0a;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    transition: all 0.3s;
}

.live-current-match:hover {
    background: #1a1a1a;
    border-color: #ffffff;
    box-shadow: 0 2px 8px rgba(255,255,255,0.2);
}

.live-match-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.live-logo {
    width: 32px;
    height: 32px;
}

.live-score-display {
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-score-num {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
}

.live-score-sep {
    font-size: 14px;
    font-weight: 700;
    color: #666666;
}

.live-time {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: #888888;
}

.live-events {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 260px;
    overflow-y: auto;
    padding-right: 8px;
}

.live-events::-webkit-scrollbar {
    width: 5px;
}

.live-events::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 10px;
}

.live-events::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 10px;
}

.live-events::-webkit-scrollbar-thumb:hover {
    background: #e5e5e5;
}

.live-event {
    background: #0a0a0a;
    border-left: 3px solid #ffffff;
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.3s;
    margin-bottom: 8px;
}

.live-event:hover {
    background: #1a1a1a;
    border-left-width: 4px;
    box-shadow: 0 2px 8px rgba(255,255,255,0.15);
    transform: translateX(3px);
}

.event-minute {
    font-size: 11px;
    font-weight: 900;
    color: #ffffff;
    margin-right: 8px;
    background: #1a1a1a;
    padding: 4px 8px;
    border-radius: 4px;
}

.event-text {
    font-size: 11px;
    color: #cccccc;
    font-weight: 400;
}

/* Center: Scrollable Matches */
.matches-scroll {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #1a1a1a;
    border: 2px solid #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: rotate(0.5deg);
}

.matches-scroll:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.matches-scroll-header {
    background: #ffffff;
    padding: 20px 30px;
    border-bottom: 2px solid #f0f0f0;
}

.matches-scroll-title {
    font-size: 16px;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.matches-scroll-content {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scroll-nav {
    display: none;
}

.scroll-btn {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    color: #cccccc;
    font-size: 12px;
    padding: 10px 0;
    width: 100%;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
    text-align: center;
}

.scroll-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.matches-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 420px;
    overflow-y: auto;
    padding: 0 8px;
}

.matches-list::-webkit-scrollbar {
    width: 5px;
}

.matches-list::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 10px;
}

.matches-list::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 10px;
}

.matches-list::-webkit-scrollbar-thumb:hover {
    background: #e5e5e5;
}

.match-card {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.match-card:hover {
    background: #1a1a1a;
    border-color: #ffffff;
    box-shadow: 0 4px 12px rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.match-card.live {
    border: 2px solid #ffffff;
    background: #1a0a0a;
}

.match-card.featured {
    background: #1a1a1a;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.match-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.match-logo {
    width: 40px;
    height: 40px;
}

.match-score {
    display: flex;
    align-items: center;
    gap: 6px;
}

.score-left,
.score-right {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
}

.score-sep {
    font-size: 20px;
    font-weight: 700;
    color: #666666;
}

.match-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
}

.liga-logo {
    width: 16px;
    height: 16px;
}

.match-info-text {
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-date-large {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.match-date-small {
    font-size: 10px;
    color: #ffffff;
    margin-bottom: 12px;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.vs-text {
    font-size: 14px;
    font-weight: 900;
    color: #999999;
}

.tickets-button {
    background: #dc2626;
    color: #ffffff;
    border: 2px solid #dc2626;
    padding: 12px 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    margin-top: 15px;
}

.tickets-button:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

/* Right: Table Box */
.table-box {
    background: #1a1a1a;
    border: 2px solid #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: rotate(-0.5deg);
}

.table-box:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.table-box-header {
    background: #ffffff;
    padding: 20px 30px;
    border-bottom: 2px solid #f0f0f0;
}

.table-box-title {
    font-size: 16px;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-box-content {
    padding: 30px;
}

.table-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.table-up-btn {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 11px;
    padding: 8px 16px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: none;
}

.table-up-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: none;
    box-shadow: none;
}

.table-link-top {
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.table-link-top:hover {
    color: #cccccc;
}

.league-table {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    border-collapse: collapse;
}

.league-table thead tr {
    border-bottom: 2px solid #2a2a2a;
}

.league-table th {
    color: #888888;
    font-size: 11px;
    font-weight: 700;
    text-align: left;
    padding: 10px 8px;
    text-transform: uppercase;
}

.league-table tbody tr {
    border-bottom: 1px solid #222222;
    transition: all 0.2s;
}

.league-table tbody tr:hover {
    background: #0a0a0a;
}

.league-table tbody tr.own-row {
    background: #1a0a0a;
    border-left: 3px solid #ffffff;
}

.league-table td {
    color: #cccccc;
    font-size: 13px;
    padding: 12px 8px;
}

.club-column {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trend {
    font-size: 7px;
}

.trend.green { color: #4ade80; }
.trend.red { color: #f87171; }
.trend.gray { color: #666666; }

.club-badge {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.club-name {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===========================
   SV09 TV Section
   ========================== */
.sv09-tv-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.tv-background-wrapper {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    padding: 100px 0;
    position: relative;
}

.tv-background-wrapper::before {
    content: 'TV';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-size: 400px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: 30px;
    pointer-events: none;
}

.tv-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.tv-badge {
    display: inline-block;
    background-color: #FF0000;
    color: var(--primary-white);
    padding: 8px 25px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 20px;
    border: 3px solid var(--primary-white);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.tv-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
}

.tv-logo {
    font-size: 80px;
    animation: tvGlitch 4s infinite;
    font-weight: 900;
    line-height: 1;
}

@keyframes tvGlitch {
    0%, 90%, 100% { transform: scale(1); }
    92% { transform: scale(1.1) rotate(-5deg); }
    94% { transform: scale(0.95) rotate(5deg); }
}

.tv-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 2px;
}

.tv-featured {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.featured-video-container {
    position: relative;
    background-color: var(--primary-black);
    border: 8px solid var(--primary-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transform: rotate(-1deg);
    transition: all 0.4s ease;
}

.featured-video-container:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9);
}

.featured-video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.featured-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.8);
}

.featured-video-container:hover .featured-video-thumbnail img {
    transform: scale(1.1);
    filter: brightness(1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background-color: #FF0000;
    border: 6px solid var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 35px;
    border-color: transparent transparent transparent var(--primary-white);
    margin-left: 8px;
}

.featured-video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: #CC0000;
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.7);
}

.featured-video-info {
    padding: 30px;
    background-color: var(--primary-white);
    border-top: 6px solid #FF0000;
}

.featured-video-category {
    display: inline-block;
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    transform: skew(-8deg);
}

.featured-video-info h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 10px;
    line-height: 1.3;
    text-transform: uppercase;
}

.featured-video-meta {
    display: flex;
    gap: 30px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
}

.tv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.tv-video-card {
    background-color: var(--primary-white);
    border: 5px solid var(--primary-white);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.tv-video-card:nth-child(odd) {
    transform: rotate(-1deg);
}

.tv-video-card:nth-child(even) {
    transform: rotate(1deg);
}

.tv-video-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.03);
    box-shadow: 15px 15px 0 rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.tv-video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: var(--primary-black);
}

.tv-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.85);
}

.tv-video-card:hover .tv-video-thumbnail img {
    transform: scale(1.15);
    filter: brightness(1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--primary-white);
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid var(--primary-white);
}

.mini-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 0, 0, 0.9);
    border: 4px solid var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.mini-play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--primary-white);
    margin-left: 5px;
}

.tv-video-card:hover .mini-play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.tv-video-info {
    padding: 20px;
    background-color: var(--primary-white);
}

.tv-video-category {
    display: inline-block;
    background-color: #FF0000;
    color: var(--primary-white);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.tv-video-info h4 {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 8px;
    line-height: 1.3;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tv-video-meta {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.tv-cta {
    background-color: var(--primary-white);
    border: 8px solid var(--primary-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: rotate(1deg);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.tv-cta:hover {
    transform: rotate(0deg) scale(1.02);
}

.tv-cta-content {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-white) 0%, #f5f5f5 100%);
}

.tv-cta h3 {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.tv-cta p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    font-weight: 500;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 50px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    border: 5px solid var(--primary-black);
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.yt-icon {
    font-size: 24px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    transition: all 0.3s ease;
}

.btn-youtube:hover {
    background-color: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.3);
}

.btn-youtube:hover .yt-icon {
    transform: scale(1.2) rotate(360deg);
}
