/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gradient-brand);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.25rem;
}

.logo-link:hover {
    transform: scale(1.05);
    background: rgba(0, 94, 168, 0.1);
    box-shadow: 0 4px 12px rgba(0, 94, 168, 0.2);
}

.logo-link:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #005EA8;
    margin: 0;
}

.tournament-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.tournament-title {
    background: var(--gradient-brand);
    color: var(--bg-white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px var(--shadow-brand);
    transition: all 0.3s ease;
}

/* Turnierkategorie-spezifische Farben */
.tournament-title.kategorie-a {
    background: linear-gradient(135deg, var(--kategorie-a-primary), var(--kategorie-a-secondary));
    color: var(--kategorie-a-text);
    box-shadow: 0 4px 12px var(--kategorie-a-shadow);
}

.tournament-title.kategorie-a-plus {
    background: linear-gradient(135deg, var(--kategorie-a-plus-primary), var(--kategorie-a-plus-secondary));
    color: var(--kategorie-a-plus-text);
    box-shadow: 0 4px 12px var(--kategorie-a-plus-shadow);
}

.tournament-title.kategorie-b {
    background: linear-gradient(135deg, var(--kategorie-b-primary), var(--kategorie-b-secondary));
    color: var(--kategorie-b-text);
    box-shadow: 0 4px 12px var(--kategorie-b-shadow);
}

.tournament-title.kategorie-b-plus {
    background: linear-gradient(135deg, var(--kategorie-b-plus-primary), var(--kategorie-b-plus-secondary));
    color: var(--kategorie-b-plus-text);
    box-shadow: 0 4px 12px var(--kategorie-b-plus-shadow);
}

.tournament-title.kategorie-c {
    background: linear-gradient(135deg, var(--kategorie-c-primary), var(--kategorie-c-secondary));
    color: var(--kategorie-c-text);
    box-shadow: 0 4px 12px var(--kategorie-c-shadow);
}

.tournament-title.kategorie-d {
    background: linear-gradient(135deg, var(--kategorie-d-primary), var(--kategorie-d-secondary));
    color: var(--kategorie-d-text);
    box-shadow: 0 4px 12px var(--kategorie-d-shadow);
}

.tournament-title.kategorie-premium {
    background: linear-gradient(135deg, var(--kategorie-premium-primary), var(--kategorie-premium-secondary));
    color: var(--kategorie-premium-text);
    box-shadow: 0 4px 12px var(--kategorie-premium-shadow);
}

.tournament-title.kategorie-senioren {
    background: linear-gradient(135deg, var(--kategorie-senioren-primary), var(--kategorie-senioren-secondary));
    color: var(--kategorie-senioren-text);
    box-shadow: 0 4px 12px var(--kategorie-senioren-shadow);
}

.tournament-title.kategorie-jugend {
    background: linear-gradient(135deg, var(--kategorie-jugend-primary), var(--kategorie-jugend-secondary));
    color: var(--kategorie-jugend-text);
    box-shadow: 0 4px 12px var(--kategorie-jugend-shadow);
}

/* Main Content */
.main {
    padding: 2rem 0;
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.card-header {
    background: var(--gradient-brand);
    color: var(--bg-white);
    padding: 1.5rem;
}

.card-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-content {
    padding: 2rem;
}

/* Highlight Boxes */
.highlight-box, .warning-box, .tip-box, .info-box, .app-reminder {
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.highlight-box {
    background: var(--gradient-info);
    border-left-color: var(--info-border);
}

.highlight-box h3 {
    color: var(--info-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-box {
    background: var(--gradient-warning);
    border-left-color: var(--warning-border);
}

.warning-box i {
    color: var(--warning-text);
    margin-right: 0.5rem;
}

.tip-box {
    background: var(--gradient-tip);
    border-left-color: var(--tip-border);
}

.tip-box i {
    color: var(--tip-text);
    margin-right: 0.5rem;
}

.info-box {
    background: var(--gradient-info);
    border-left-color: var(--info-border);
}

.info-box i {
    color: var(--info-text);
    margin-right: 0.5rem;
}

.app-reminder {
    background: var(--gradient-app);
    border-left-color: var(--app-border);
}

.app-reminder i {
    color: var(--app-text);
    margin-right: 0.5rem;
}

.turnier-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--app-text);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--app-text);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.turnier-link:hover {
    background: var(--app-text);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--app-shadow);
}

/* Grid Layouts */
.location-grid, .info-grid, .rules-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.location-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.rules-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.location-item, .rule-category {
    background: rgba(247, 250, 252, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.location-item h3, .rule-category h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.location-item i, .rule-category i {
    color: var(--primary-blue);
}

/* Map Link Styling */
.map-link {
    color: var(--link-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.map-link:hover {
    color: var(--link-hover);
    border-bottom: 1px solid var(--link-hover);
    text-decoration: none;
}

/* Weather Link Styling */
.weather-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.weather-link:hover {
    color: var(--primary-blue-dark);
    border-bottom: 1px solid var(--primary-blue-dark);
    text-decoration: none;
}

.weather-link:before {
    content: '🌤️';
    font-size: 1.1em;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.game-slot {
    background: var(--gradient-game-slot);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--game-slot-border);
    transition: all 0.3s ease;
}

.game-slot:hover {
    border-color: var(--game-slot-hover-border);
    transform: translateY(-2px);
}

.game-number {
    font-size: 1.1rem;
    color: var(--game-number-text);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.game-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--game-time-text);
    margin-bottom: 0.5rem;
}

.game-field {
    font-size: 0.9rem;
    color: var(--game-field-text);
    font-weight: 500;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

li i {
    color: #005EA8;
    margin-top: 0.25rem;
    min-width: 16px;
    flex-shrink: 0;
}

li.warning {
    color: var(--warning-border);
    font-weight: 600;
}

/* Verbesserte Lesbarkeit für Regeln */
.rule-category ul {
    margin-top: 1rem;
}

.rule-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

.rule-category li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-method {
    background: var(--bg-contact);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.contact-method i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.contact-method a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

.contact-method span {
    color: var(--primary-blue);
    font-weight: 500;
}

.signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(226, 232, 240, 0.5);
    text-align: center;
    font-style: italic;
}

/* Footer */
.footer {
    background: rgba(45, 55, 72, 0.95);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

/* ================================================
   TURNIER-AUSWAHL STYLES
   ================================================ */

.turnier-selection {
    padding: 3rem 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.selection-header {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.selection-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.selection-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-weight: 400;
    opacity: 0.9;
}

.turniere-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.turnier-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
}

.turnier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.turnier-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 1);
}

.turnier-card:focus {
    outline: 3px solid var(--accent-blue);
    outline-offset: 2px;
}

.turnier-card:active {
    transform: translateY(-8px) scale(1.01);
    transition: all 0.1s ease;
}

/* Bessere Hover-Effekte für einzelne Bereiche */
.turnier-card:hover .turnier-kategorie {
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.turnier-card:hover .turnier-typ {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.turnier-card:hover .turnier-card-body {
    background: rgba(255, 255, 255, 1);
}

/* Click-Feedback */
.turnier-card:hover::after {
    content: '👆 Klicken zum Auswählen';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.3s ease-out 0.5s forwards;
    pointer-events: none;
    white-space: nowrap;
}

.turnier-card-header {
    padding: 2rem 2rem 1.5rem;
    color: white;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    min-height: 120px;
    justify-content: space-between;
}

.turnier-card-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
    pointer-events: none;
    border-radius: 20px 20px 0 0;
}

.turnier-kategorie {
    font-size: 1.8rem;
    font-weight: 800;
    z-index: 3;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.turnier-typ {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
    z-index: 3;
    position: relative;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    align-self: flex-start;
}

.turnier-card-body {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.turnier-datum {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.turnier-datum::before {
    content: '📅';
    font-size: 1.2rem;
}

.turnier-beginn {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.turnier-beginn::before {
    content: '🕐';
    font-size: 1rem;
}

.turnier-modus {
    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, var(--background-soft), rgba(247, 250, 252, 0.8));
    border-radius: 12px;
    margin-top: 1.5rem;
    font-weight: 600;
    border: 1px solid rgba(226, 232, 240, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.turnier-modus::before {
    content: '⚡';
    font-size: 1rem;
}

.selection-footer {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(226, 232, 240, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.selection-footer p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.selection-footer a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-top: 0.5rem;
}

.selection-footer a:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 94, 168, 0.3);
}

/* Error Message Styles */
.error-message {
    padding: 3rem 0;
    text-align: center;
}

.error-message h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    max-width: 600px;
    margin: 0 auto;
}

.error-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.error-suggestion {
    color: var(--text-secondary);
    font-size: 1rem;
}

.error-suggestion a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.error-suggestion a:hover {
    text-decoration: underline;
}

/* Turnierkarte-Header mit Kategoriefarben */
.turnier-card-header.kategorie-a {
    background: linear-gradient(135deg, var(--kategorie-a-primary), var(--kategorie-a-secondary));
}

.turnier-card-header.kategorie-a-plus {
    background: linear-gradient(135deg, var(--kategorie-a-plus-primary), var(--kategorie-a-plus-secondary));
}

.turnier-card-header.kategorie-b {
    background: linear-gradient(135deg, var(--kategorie-b-primary), var(--kategorie-b-secondary));
}

.turnier-card-header.kategorie-b-plus {
    background: linear-gradient(135deg, var(--kategorie-b-plus-primary), var(--kategorie-b-plus-secondary));
}

.turnier-card-header.kategorie-c {
    background: linear-gradient(135deg, var(--kategorie-c-primary), var(--kategorie-c-secondary));
}

.turnier-card-header.kategorie-d {
    background: linear-gradient(135deg, var(--kategorie-d-primary), var(--kategorie-d-secondary));
}

.turnier-card-header.kategorie-premium {
    background: linear-gradient(135deg, var(--kategorie-premium-primary), var(--kategorie-premium-secondary));
}

.turnier-card-header.kategorie-senioren {
    background: linear-gradient(135deg, var(--kategorie-senioren-primary), var(--kategorie-senioren-secondary));
}

.turnier-card-header.kategorie-jugend {
    background: linear-gradient(135deg, var(--kategorie-jugend-primary), var(--kategorie-jugend-secondary));
}

/* Responsive Design */
@media (max-width: 1024px) {
    .turniere-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .turnier-selection {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .selection-header h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .selection-subtitle {
        font-size: 1.1rem;
    }
    
    .selection-header {
        margin-bottom: 2.5rem;
    }
    
    .turniere-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .turnier-card {
        border-radius: 16px;
    }
    
    .turnier-card-header {
        padding: 1.5rem 1.5rem 1rem;
        min-height: 100px;
    }
    
    .turnier-kategorie {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .turnier-typ {
        font-size: 0.9rem;
        padding: 0.2rem 0.6rem;
    }
    
    .turnier-card-body {
        padding: 1.5rem;
    }
    
    .turnier-datum {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .turnier-beginn {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .turnier-modus {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        margin-top: 1rem;
    }
    
    .selection-footer {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .selection-footer p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
    
    .main {
        padding: 1rem 0;
    }
    
    .card-header {
        padding: 1rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .logo {
        height: 35px;
    }
    
    .header h1 {
        font-size: 1.1rem;
    }
    
    .tournament-info {
        margin-top: 0.25rem;
        justify-content: center;
    }
    
    .tournament-title {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ccc;
        background: white;
    }
    
    .card-header {
        background: #f5f5f5;
        color: black;
    }
    
    .highlight-box, .warning-box, .tip-box, .info-box, .app-reminder {
        background: #f9f9f9;
        border-left: 4px solid #333;
    }
}

/* Loading Indicator */
.loading-indicator {
    text-align: center;
    padding: 4rem 1rem;
    animation: fadeInUp 0.6s ease-out;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 94, 168, 0.1);
    border-top: 4px solid var(--accent-blue);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.loading-indicator p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    animation: pulse 2s ease-in-out infinite;
}
