/* =============================================
   FC SPENGE - PREMIUM SPORTLICH DESIGN 2025
   Modern & Clean mit Montserrat + Inter
   Kombiniert: Original + Enhanced Komponenten
   ============================================= */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Premium Color Palette */
:root {
    --fc-primary: #d60000;
    --fc-primary-dark: #a00000;
    --fc-primary-light: #ff3333;
    --fc-secondary: #ffffff;
    --fc-dark: #0f0f0f;
    --fc-dark-soft: #1a1a1a;
    --fc-gray-light: #f8f9fa;
    --fc-gray: #6c757d;
    --fc-gray-medium: #4a4a4a;
    --fc-gradient: linear-gradient(135deg, #d60000 0%, #ff4444 100%);
    --fc-gradient-dark: linear-gradient(135deg, #0f0f0f 0%, #2d2d2d 100%);
    --fc-shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --fc-shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --fc-shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --fc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--fc-dark);
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    color: var(--fc-dark);
    margin-bottom: 1rem;
}

h1 { 
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    letter-spacing: -2px;
}

h2 { 
    font-size: clamp(2rem, 5vw, 3.5rem); 
    letter-spacing: -1.5px;
}

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

h4 { 
    font-size: clamp(1.25rem, 3vw, 1.8rem); 
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--fc-gray-medium);
    font-weight: 400;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--fc-gray);
}

/* Premium Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    transition: var(--fc-transition);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--fc-shadow-md);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--fc-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--fc-transition);
    letter-spacing: -0.5px;
}

.navbar-brand:hover {
    transform: scale(1.03);
    color: var(--fc-primary-dark);
}

.navbar-logo {
    height: 45px;
    width: auto;
}

.navbar-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--fc-primary);
}

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--fc-dark);
    margin: 0 18px;
    padding: 8px 0;
    position: relative;
    transition: var(--fc-transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--fc-gradient);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--fc-primary);
}

/* Premium Hero Section */
.hero-section,
.page-hero {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #d60000 0%, #8b0000 100%);
}

.hero-section::before,
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

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

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -3px;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: rgba(255,255,255,0.95);
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Cards */
.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: var(--fc-shadow-md);
    transition: var(--fc-transition);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--fc-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--fc-shadow-lg);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.08);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--fc-dark);
}

.card-text {
    font-family: 'Inter', sans-serif;
    color: var(--fc-gray);
    line-height: 1.7;
}

/* Premium Buttons */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 14px 32px;
    transition: var(--fc-transition);
    border: none;
    font-size: 0.95rem;
}

.btn-danger,
.btn-fc {
    background: var(--fc-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(214,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.btn-danger::before,
.btn-fc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-danger:hover::before,
.btn-fc:hover::before {
    width: 300px;
    height: 300px;
}

.btn-danger:hover,
.btn-fc:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214,0,0,0.4);
    color: white;
}

.btn-outline-dark {
    border: 2px solid var(--fc-dark);
    color: var(--fc-dark);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--fc-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--fc-gray-light);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--fc-dark);
    margin-bottom: 1rem;
}

/* ============================================================
   ENHANCED KOMPONENTEN - STATISTIKEN, TIMELINE, ETC.
   ============================================================ */

/* Statistik-Showcase */
.stats-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-showcase::before {
    content: '⚽';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    right: -50px;
    bottom: -50px;
    transform: rotate(-20deg);
    animation: float 20s ease-in-out infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--fc-shadow-md);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--fc-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--fc-shadow-lg);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--fc-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(214,0,0,0.3);
    transition: transform 0.3s ease;
}

.stat-box:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--fc-primary);
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--fc-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* Timeline */
.timeline-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--fc-gradient);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    padding-right: 50px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    padding-left: 50px;
    text-align: left;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--fc-shadow-md);
    width: calc(50% - 40px);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--fc-shadow-lg);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--fc-primary);
    border: 5px solid white;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 0 4px rgba(214,0,0,0.2);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 900;
    color: var(--fc-primary);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--fc-dark);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.timeline-description {
    color: var(--fc-gray);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* Testimonials */
.testimonials-section {
    background: var(--fc-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30 L50 30' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='2'/%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
    animation: slide 30s linear infinite;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--fc-shadow-lg);
    position: relative;
    margin: 20px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 120px;
    color: rgba(214,0,0,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--fc-dark);
    font-style: italic;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--fc-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-author-info h5 {
    margin: 0;
    font-weight: 700;
    color: var(--fc-dark);
    font-family: 'Montserrat', sans-serif;
}

.testimonial-author-info p {
    margin: 0;
    color: var(--fc-primary);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--fc-shadow-md);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--fc-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--fc-shadow-lg);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(214,0,0,0.1), rgba(255,68,68,0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--fc-primary);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--fc-gradient);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fc-dark);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.feature-description {
    color: var(--fc-gray);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

/* Badges */
.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.badge-red {
    background: var(--fc-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(214,0,0,0.3);
}

.badge-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214,0,0,0.4);
}

.badge-outline {
    background: transparent;
    border: 2px solid var(--fc-primary);
    color: var(--fc-primary);
}

.badge-outline:hover {
    background: var(--fc-primary);
    color: white;
}

/* Premium CTA */
.cta-premium {
    background: var(--fc-gradient-dark);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214,0,0,0.2) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-premium-content {
    position: relative;
    z-index: 1;
}

.cta-premium h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.cta-premium p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    color: white;
}

.btn-cta-primary {
    background: var(--fc-gradient);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 40px rgba(214,0,0,0.4);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(214,0,0,0.6);
    color: white;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-left: 15px;
    font-family: 'Montserrat', sans-serif;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--fc-dark);
}

/* Hintergrund-Pattern */
.bg-hexagon-pattern {
    background-image: 
        linear-gradient(30deg, rgba(214,0,0,0.03) 12%, transparent 12.5%, transparent 87%, rgba(214,0,0,0.03) 87.5%, rgba(214,0,0,0.03)),
        linear-gradient(150deg, rgba(214,0,0,0.03) 12%, transparent 12.5%, transparent 87%, rgba(214,0,0,0.03) 87.5%, rgba(214,0,0,0.03)),
        linear-gradient(30deg, rgba(214,0,0,0.03) 12%, transparent 12.5%, transparent 87%, rgba(214,0,0,0.03) 87.5%, rgba(214,0,0,0.03)),
        linear-gradient(150deg, rgba(214,0,0,0.03) 12%, transparent 12.5%, transparent 87%, rgba(214,0,0,0.03) 87.5%, rgba(214,0,0,0.03));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

.bg-diagonal-stripes {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(214,0,0,0.03) 35px,
        rgba(214,0,0,0.03) 70px
    );
}

.bg-field-stripes {
    background-image: repeating-linear-gradient(
        90deg,
        rgba(76,175,80,0.03),
        rgba(76,175,80,0.03) 10%,
        rgba(102,187,106,0.03) 10%,
        rgba(102,187,106,0.03) 20%
    );
}

/* Hover-Effekte */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        transparent 40%,
        rgba(255,255,255,0.3) 50%,
        transparent 60%,
        transparent
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.shine-effect:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.tilt-effect {
    transition: transform 0.3s ease;
}

.tilt-effect:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) scale(1.02);
}

.glow-effect {
    transition: all 0.3s ease;
}

.glow-effect:hover {
    box-shadow: 0 0 30px rgba(214,0,0,0.6), 0 0 60px rgba(214,0,0,0.4);
}

.float-animation {
    animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   ORIGINAL PREMIUM KOMPONENTEN
   ============================================================ */

/* Player Cards - Premium */
.player-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    background: white;
    box-shadow: var(--fc-shadow-md);
    transition: var(--fc-transition);
    cursor: pointer;
}

.player-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--fc-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.player-card:hover::after {
    opacity: 0.85;
}

.player-card .player-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.player-card:hover .player-image {
    transform: scale(1.12);
}

.player-card .player-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    color: white;
    transform: translateY(65%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.player-card:hover .player-info {
    transform: translateY(0);
}

.player-card .player-info h4 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.player-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: white;
    opacity: 0.15;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 2;
}

/* Sponsor Logos */
.sponsor-logo {
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--fc-transition);
    cursor: pointer;
}

.sponsor-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* News Cards */
.news-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--fc-shadow-md);
    transition: var(--fc-transition);
    margin-bottom: 30px;
}

.news-item:hover {
    transform: translateX(8px);
    box-shadow: var(--fc-shadow-lg);
}

.news-date {
    display: inline-block;
    background: var(--fc-gradient);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: var(--fc-shadow-md);
    transition: var(--fc-transition);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    transition: transform 0.3s ease;
    z-index: 2;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(0.6);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--fc-shadow-lg);
}

/* Premium Footer */
footer {
    background: var(--fc-gradient-dark);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fc-gradient);
}

footer h5 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--fc-gradient);
    border-radius: 3px;
}

footer a {
    font-family: 'Inter', sans-serif;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--fc-transition);
    display: inline-block;
    font-size: 0.95rem;
}

footer a:hover {
    color: white;
    transform: translateX(5px);
}

/* Social Icons */
.social-footer a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 12px;
    transition: var(--fc-transition);
    font-size: 1.2rem;
}

.social-footer a:hover {
    background: var(--fc-gradient);
    transform: translateY(-4px);
}

/* Forms */
.form-control, .form-select {
    font-family: 'Inter', sans-serif;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 1rem;
    transition: var(--fc-transition);
    background: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--fc-primary);
    box-shadow: 0 0 0 0.2rem rgba(214, 0, 0, 0.1);
    outline: none;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--fc-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

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

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--fc-primary-dark);
}

/* Badge */
.badge {
    font-family: 'Montserrat', sans-serif;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.badge-fc {
    background: var(--fc-gradient);
    color: white;
}

/* Tables */
.table {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--fc-shadow-md);
}

.table thead {
    background: var(--fc-gradient);
    color: white;
}

.table thead th {
    font-family: 'Montserrat', sans-serif;
    border: none;
    padding: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.table tbody tr {
    transition: var(--fc-transition);
}

.table tbody tr:hover {
    background: rgba(214, 0, 0, 0.04);
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        margin: 10px 0;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-content {
        width: calc(100% - 60px) !important;
        margin-left: 60px !important;
        margin-right: 0 !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 20px;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-section,
    .page-hero {
        min-height: 70vh;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .cta-premium {
        padding: 50px 30px;
    }
    
    .cta-premium h2 {
        font-size: 2rem;
    }
    
    .btn-cta-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
    
    footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--fc-gray-light);
    border-top-color: var(--fc-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .navbar,
    footer,
    .btn {
        display: none;
    }
}
