:root {
            --trau-red: #D22630;
            --trau-blue: #0055A4;
            --trau-white: #FFFFFF;
            --trau-dark: #1A1A1A;
            --trau-gold: #FFD700;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand img { height: 50px; }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 10rem 0;
            position: relative;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            text-align: center;
            font-weight: 700;
            color: var(--trau-dark);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--trau-red);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .btn-trau {
            background-color: var(--trau-red);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            border: 2px solid var(--trau-red);
            transition: all 0.3s ease;
        }
        .btn-trau:hover {
            background-color: transparent;
            color: var(--trau-red);
            border-color: var(--trau-red);
        }
        .btn-trau-outline {
            background-color: transparent;
            color: var(--trau-red);
            border: 2px solid var(--trau-red);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-trau-outline:hover {
            background-color: var(--trau-red);
            color: white;
        }
        .stadium-bg {
            background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80');
            background-size: cover;
            background-attachment: fixed;
            color: white;
            padding: 5rem 0;
        }
        .footer {
            background-color: var(--trau-dark);
            color: #ccc;
            padding-top: 3rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--trau-white);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background: var(--trau-red);
            transform: translateY(-3px);
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            border-left: 3px solid var(--trau-red);
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(5px);
        }
        .news-card {
            border-left: 5px solid var(--trau-red);
        }
        .player-card .card-img-top {
            height: 300px;
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .sponsor-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        @media (max-width: 768px) {
            .hero-section { padding: 6rem 0; }
            .section-title { font-size: 1.8rem; }
        }
        .schedule-table tbody tr {
            transition: background-color 0.3s ease;
        }
        .schedule-table tbody tr:hover {
            background-color: rgba(210, 38, 48, 0.05);
        }
        .badge-trau {
            background-color: var(--trau-red);
        }
