/* HUD Theme CSS - Kompiliert aus SCSS */
/* Generiert von SCSS Compiler */

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.01) 2px,
        rgba(255, 255, 255, 0.01) 4px
    ),
    repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.01) 2px,
        rgba(255, 255, 255, 0.01) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* HUD Header */
.hud-header {
    text-align: center;
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #e53935 0%, #ff6659 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(229, 57, 53, 0.5);
}

/* HUD Card */
.hud-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #333;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.hud-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e53935, transparent);
    box-shadow: 0 0 10px #e53935;
}

/* Form Section */
.form-section {
    margin-bottom: 30px;
}

/* Section Title */
.section-title {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e53935;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    font-size: 0.9em;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
}

/* Form Label */
.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #e53935;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Controls */
.form-control,
.form-select {
    padding: 12px 16px;
    border: 1px solid #333;
    border-radius: 6px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2), inset 0 2px 4px rgba(0,0,0,0.3);
}

/* Dropdown Options Styling */
.form-select option {
    background: #2d2d2d;
    color: #e0e0e0;
    padding: 10px;
}

.form-select option:hover,
.form-select option:checked {
    background: #e53935;
    color: white;
}

/* Custom Dropdown Styling */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    padding: 12px 16px;
    border: 1px solid #333;
    border-radius: 6px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    font-size: 1em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.dropdown-selected:hover {
    border-color: #e53935;
}

.dropdown-selected.active {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2), inset 0 2px 4px rgba(0,0,0,0.3);
}

.dropdown-selected i {
    transition: transform 0.3s ease;
    color: #a0a0a0;
}

/* Modern Toggle Group */
.modern-toggle-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.modern-toggle {
    padding: 12px 20px;
    border: 1px solid #333;
    border-radius: 6px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #a0a0a0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-toggle:hover {
    border-color: #e53935;
    color: #e0e0e0;
}

.modern-toggle.active {
    background: linear-gradient(135deg, #e53935 0%, #ff6659 100%);
    border-color: #e53935;
    color: white;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

/* League Grid */
.league-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* League Card */
.league-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.league-card:hover {
    border-color: #e53935;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(229, 57, 53, 0.2);
}

.league-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e53935, transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.league-card:hover::before {
    opacity: 1;
}

.league-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.league-icon {
    font-size: 1.5em;
    color: #e53935;
}

.league-title {
    font-size: 1em;
    font-weight: 600;
    color: #e0e0e0;
}

.league-description {
    font-size: 0.8em;
    color: #a0a0a0;
    line-height: 1.4;
    margin-bottom: 8px;
}

.league-badge {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(229, 57, 53, 0.2);
    color: #e53935;
    border-radius: 3px;
    font-size: 0.7em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* HUD Button */
.btn-primary {
    background: linear-gradient(135deg, #e53935 0%, #ff6659 100%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(229, 57, 53, 0.6);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Alerts */
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid;
}

.alert.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.alert.alert-danger {
    background: rgba(229, 57, 53, 0.1);
    border-color: rgba(229, 57, 53, 0.3);
    color: #e53935;
}

/* Form Text */
.form-text {
    font-size: 0.7em;
    color: #a0a0a0;
    margin-top: 4px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    accent-color: #e53935;
    transform: scale(1.2);
}

.checkbox-group label {
    line-height: 1.4;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 12px;
    }
    
    .hud-header {
        font-size: 1.8em;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }
    
    .hud-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 1.1em;
        margin-bottom: 15px;
        gap: 8px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-control,
    .form-select {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .modern-toggle-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .modern-toggle {
        padding: 10px 15px;
        width: 100%;
    }
    
    .league-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .league-card {
        padding: 12px;
    }
    
    .league-header {
        gap: 10px;
    }
    
    .league-icon {
        font-size: 1.2em;
    }
    
    .league-title {
        font-size: 0.9em;
    }
    
    .league-description {
        font-size: 0.7em;
    }
    
    .btn-primary {
        width: 100%;
        padding: 16px 20px;
        font-size: 0.9em;
    }
    
    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 12px;
    }
    
    .hud-header {
        font-size: 1.8em;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }
    
    .hud-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .league-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .league-card {
        padding: 15px;
    }
}
