/* Grundlegendes Styling */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    color: #222;
    line-height: 1.6;
    scroll-behavior: smooth;
    min-height: 100vh;
    position: relative;
    padding-top: 0;
}

/* Fiker Hintergrund mit 50% Transparenz */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Logo_Gesamt.png') center/contain no-repeat;
    opacity: 0.5;
    z-index: -2;
    pointer-events: none;
}

/* Entferne den weißen Overlay für vollständige Transparenz */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    pointer-events: none;
}

/* Floating Logo - Oben links FIXED (schwebt immer) */
.floating-logo {
  position: fixed;
  top: 10%;
  left: 10%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 3px solid #bf0000;
  display: flex;
  align-items: center;      /* vertikal zentriert */
  justify-content: center;  /* horizontal zentriert */
  transition: all 0.3s ease;
  text-align: center;
}

.floating-logo img {
  display: block;
  max-width: 72%;   /* etwas größer, bleibt aber innerhalb des Kreises */
  max-height: 75%;  /* begrenzt die Höhe, damit es nicht anschlägt */
  height: auto;
  margin: 0 auto;   /* Sicherung der Horizontal-Zentrierung */
}



a {
    color: #bf0000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#banner {
    position: fixed;
    top: 9%;
    left: -100vw; /* Start links außerhalb des Bildschirms */
    width: 100vh;/* Volle Bildschirmbreite */
    height: 85px; 
    padding: 1rem;
    background-color: #c00;
    color: white;
    font-size: 1.5rem;
    border-radius: 40px;
    

    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.8s ease-in-out, width 0.8s ease-in-out;
    z-index: 9999;
    overflow: hidden;
    white-space: nowrap;
}

/* Header - NICHT fixiert, scrollbar ist normal */
header {
    position: relative;
    background-color: rgba(191, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
   align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Header Logo Section - ENTFERNT */
.header-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;

}

.header-logo {
    display: none;
}

.logo-text {
    font-weight: 700;
    font-size: 2rem;
    color: white;
  
}

/* Desktop Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-item {
    position: relative;
    margin-left: 1rem;
}

.nav-item > a, .dropbtn {
    color: white !important;
    font-weight: 600;
    padding: 0.8rem 1rem;
    display: block;
    transition: all 0.3s ease;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
}

.nav-item > a:hover, .dropbtn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white !important;
    text-decoration: none;
}

/* Dropdown Menu */
.dropdown {
    position: relative;

}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border-radius: 8px;
    z-index: 1001;
    overflow: hidden;
    margin-top: 5px;
}

.dropdown-content a {
    color: #333 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgba(255, 230, 230, 0.8);
    color: #bf0000 !important;
    text-decoration: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: rgba(191, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1002;
    overflow-y: auto;
    transition: right 0.3s ease;
    padding-top: 20px;
}

.mobile-nav.active {
    right: 0;
}

/* Mobile Navigation Header */
.mobile-nav-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.mobile-nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.mobile-nav-title {
    color: white;
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-item > a, .mobile-dropdown-btn {
    display: block;
    color: white !important;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
}

.mobile-nav-item > a:hover, .mobile-dropdown-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white !important;
}

.mobile-dropdown-content {
    display: none;
    background-color: rgba(0, 0, 0, 0.2);
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-content a {
    padding: 0.8rem 2rem;
    font-weight: normal;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white !important;
}

.mobile-dropdown-content a:hover {
    color: white !important;
}

/* Hauptbereich */
main {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
    background-color: transparent;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

section {
    margin-bottom: 4rem;
    padding: 2rem 1rem;
    background-color: transparent;
}

section h2 {
    color: #bf0000;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #bf0000;
    padding-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 8px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

section h3 {
    color: #a00000;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    border-radius: 6px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

/* Player Cards für Mannschaftsseite */
.player-card {
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid #bf0000;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.player-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 20px rgba(191, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 1);
}

.player-photo {
    width: 180px;
    height: 200px;
    object-fit: cover;
    border-radius: 10%;
    margin: 0 auto 1rem;
    border: 1px solid #bf0000;
    transition: all 0.3s ease;
}

.player-card:hover .player-photo {
    width: 400px;
    height: 400px;
}

.player-info {
    text-align: center;
}

.player-name {
    font-weight: 700;
    color: #bf0000;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.player-position {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.player-number {
    font-size: 0.9rem;
    color: #888;
}

.player-birth {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

/* Team Section Grid */
.team-section {
    margin-bottom: 3rem;
}

.team-section h3 {
    color: #bf0000;
    border-bottom: 2px solid #bf0000;
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Mannschaft Info */
.team-info {
    margin-bottom: 2rem;
}

.player-list, .coaching-staff {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
}

.player-list li, .coaching-staff li {
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.player-list li:hover, .coaching-staff li:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.news-articles h3, .instagram-section h3 {
    background: none;
    text-shadow: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-header h3 {
    background: none;
    text-shadow: none;
    padding: 0;
    margin: 0;
}

/* Standard News Articles */
.news-articles article {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #bf0000;
    border-radius: 0 8px 8px 0;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.news-articles article:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.news-articles article h4 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #bf0000;
    font-size: 1.1rem;
}

.news-articles article time {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}
.news-container {
    text-align: center;
    margin: 2rem 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #bf0000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Mannschaftsfoto Container */
.team-photo-container {
    text-align: center;
    margin: 2rem 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #bf0000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-photo-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    max-height: 400px;
}

/* Schedule Section */
.schedule-info {
    margin-bottom: 1.5rem;
    text-align: center;
}

.schedule-info h3 {
    color: #bf0000;
    margin-bottom: 0.5rem;
}

.handball-widget-container {
    background-color: rgba(255, 255, 255, 0.98);
    border: 2px solid #bf0000;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    min-height: 400px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.handball-widget-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 6px;
}

/* Fallback Schedule */
.fallback-schedule {
    margin-top: 1rem;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.schedule-table th, .schedule-table td {
    border: 1px solid #ddd;
    padding: 0.6rem;
    text-align: center;
    font-size: 0.9rem;
}

.schedule-table th {
    background-color: #bf0000;
    color: white;
    font-weight: 600;
}

.schedule-table tbody tr:nth-child(even) {
    background-color: rgba(249, 249, 249, 0.8);
}

.schedule-table tbody tr:hover {
    background-color: rgba(255, 230, 230, 0.9);
}

.schedule-table .home-game {
    background-color: rgba(255, 243, 205, 0.9);
}

.schedule-table .home-game:hover {
    background-color: rgba(255, 234, 167, 0.9);
}

/* Table Section */
.table-info {
    margin-bottom: 1.5rem;
    text-align: center;
}

.table-info h3 {
    color: #bf0000;
    margin-bottom: 0.5rem;
}

/* Fallback Table */
.fallback-table {
    margin-top: 1rem;
}

.league-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.league-table th, .league-table td {
    border: 1px solid #ddd;
    padding: 0.6rem;
    text-align: center;
    font-size: 0.9rem;
}

.league-table th {
    background-color: #bf0000;
    color: white;
    font-weight: 600;
}

.league-table tbody tr:nth-child(even) {
    background-color: rgba(249, 249, 249, 0.8);
}

.league-table tbody tr:hover {
    background-color: rgba(255, 230, 230, 0.9);
}

.league-table .own-team {
    background-color: rgba(255, 243, 205, 0.9);
    font-weight: 600;
}

.league-table .own-team:hover {
    background-color: rgba(255, 234, 167, 0.9);
}

/* Sponsors Section */
.sponsors-info {
    text-align: center;
    margin-bottom: 3rem;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 8px;
}

.sponsor-category {
    margin-bottom: 3rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sponsor-category h3 {
    color: #bf0000;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #bf0000;
    padding-bottom: 0.5rem;
    background: none;
    text-shadow: none;
}

/* Hauptsponsor */
.main-sponsor {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

.sponsor-logo-main {
    height: 80px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.sponsor-description h4 {
    color: #bf0000;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.sponsor-description p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

/* Premium Sponsoren */
.premium-sponsors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.sponsor-item.premium {
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid #bf0000;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

.sponsor-item.premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(191, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 1);
}

.sponsor-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.sponsor-item h4 {
    color: #bf0000;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.sponsor-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Ausrüstungspartner */
.equipment-sponsor {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

.sponsor-logo-equipment {
    height: 200px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Call to Action */
.sponsor-cta {
    background: linear-gradient(135deg, rgba(191, 0, 0, 0.95), rgba(160, 0, 0, 0.95));
    color: white;
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.sponsor-cta h3 {
    color: white;
    margin-bottom: 1rem;
    background: none;
    text-shadow: none;
    padding: 0;
}

.sponsor-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.95);
    color: #bf0000;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.cta-button:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form, .contact-info {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Kontaktformular */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 1rem;
    font-weight: 600;
    color: #bf0000;
}

input, textarea, select {
    margin-top: 0.5rem;
    padding: 0.8rem;
    border: 2px solid #bf0000;
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    font-family: inherit;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #a00000;
    box-shadow: 0 0 5px rgba(191, 0, 0, 0.3);
    background-color: white;
}

button[type="submit"] {
    margin-top: 1.5rem;
    background-color: #bf0000;
    border: none;
    color: white;
    font-weight: 700;
    padding: 1rem 0;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Kontaktinformationen */
.contact-info h3 {
    margin-top: 0;
    background: none;
    text-shadow: none;
    padding: 0;
}

address {
    font-style: normal;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.training-times {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    backdrop-filter: blur(5px);
}

.training-times h4 {
    color: #bf0000;
    margin-bottom: 0.8rem;
}

.training-times p {
    margin: 0.3rem 0;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: rgba(191, 0, 0, 0.95);
    
    color: white;
    padding: 1.5rem 2rem;
    font-size: 0.9rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

footer p {
    margin: 0;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    background-color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transform: translateY(-2px);
}

footer button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

footer button:hover {
    background-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* Responsive Design */

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    nav {
        display: none;
    }

    header {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    section {
        padding: 1rem 0.5rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
    }

    

   
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .player-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .main-sponsor, .equipment-sponsor {
        flex-direction: column;
        text-align: center;
    }

    .premium-sponsors {
        grid-template-columns: 1fr;
    }

    .schedule-table, .league-table {
        font-size: 0.8rem;
    }

    .schedule-table th, .schedule-table td,
    .league-table th, .league-table td {
        padding: 0.5rem;
    }

    .handball-widget-container {
        padding: 0.5rem;
        min-height: 300px;
    }

    body::before {
        background-size: 200px auto;
    }
}

@media (max-width: 480px) {
    main {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .floating-logo {
        width: 60px;
        height: 60px;
        top: 10px;
        left: 10px;
    }

    .contact-form, .contact-info {
        padding: 1rem;
    }

    .player-grid {
        grid-template-columns: 1fr;
    }

    .login-container {
        padding: 2rem;
        border-radius: 12px;
    }

    .login-header h2 {
        font-size: 1.5rem;
    }

    .form-group input {
        padding: 0.8rem;
        font-size: 16px;
    }

    .login-buttons {
        flex-direction: column;
    }
}
