/* ====== ANMELDUNG PAGE ====== */

.anmeldung-header {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    text-align: center;
    padding: 80px 20px 60px;
    margin-top: 75px;
}

.anmeldung-header h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

.anmeldung-subtitle {
    font-size: 20px;
    color: white;
    opacity: 0.95;
}

/* Info Banner */
.anmeldung-info-section {
    padding: 40px 20px;
    background: #f9f9f9;
}

.anmeldung-info-container {
    max-width: 900px;
    margin: 0 auto;
}

.info-banner {
    background: white;
    border-left: 5px solid var(--primary);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    gap: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.banner-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.banner-content h3 {
    color: var(--primary-dark);
    font-size: 24px;
    margin-bottom: 15px;
}

.banner-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-content ul li {
    color: var(--paragraph-gray);
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.banner-content ul li:last-child {
    border-bottom: none;
}

/* Anmeldung Form Section */
.anmeldung-form-section {
    padding: 60px 20px;
    background: white;
}

.anmeldung-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.anmeldung-container h2 {
    color: var(--primary);
    font-size: 42px;
    margin-bottom: 15px;
}

.anmeldung-text {
    font-size: 18px;
    color: var(--paragraph-gray);
    margin-bottom: 40px;
}

.anmeldung-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Barlow', Arial, sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-help {
    display: block;
    color: #999;
    font-size: 14px;
    margin-top: 5px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-checkbox label {
    color: var(--paragraph-gray);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.form-checkbox label a {
    color: var(--primary);
    text-decoration: underline;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 6px;
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #cc0000;
}

.btn-icon {
    font-size: 20px;
}

.form-footnote {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: 20px;
}

/* Next Steps Section */
.next-steps-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.next-steps-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.next-steps-container h2 {
    color: var(--primary);
    font-size: 38px;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.step-card {
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    font-family: 'Oswald', sans-serif;
}

.step-card h3 {
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--paragraph-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Help Section */
.contact-help-section {
    padding: 60px 20px;
    background: white;
}

.contact-help-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #f9f9f9;
    padding: 50px 40px;
    border-radius: 12px;
}

.contact-help-box h3 {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-help-box p {
    color: var(--paragraph-gray);
    font-size: 17px;
    margin-bottom: 30px;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* New Registration Options */
.registration-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.registration-option-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.registration-option-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.15);
    transform: translateY(-5px);
}

.option-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.registration-option-card h3 {
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 12px;
}

.registration-option-card p {
    color: var(--paragraph-gray);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.tournament-date {
    background: #fff3f3;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px !important;
    color: var(--primary) !important;
    font-size: 15px;
}

.option-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.option-benefits li {
    color: var(--paragraph-gray);
    font-size: 15px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.option-benefits li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.registration-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 20px;
}

.challonge-btn {
    background: #00a699;
    color: white;
}

.challonge-btn:hover {
    background: #008b7d;
    transform: scale(1.05);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1fb359;
    transform: scale(1.05);
}

.option-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
    font-size: 14px;
    height: 100%;
}

.option-divider:before {
    content: "";
    height: 60%;
    width: 2px;
    background: #ddd;
    margin-right: 15px;
}

.option-divider:after {
    content: "";
    height: 60%;
    width: 2px;
    background: #ddd;
    margin-left: 15px;
}

.registration-note {
    background: #fffacd;
    border-left: 4px solid #ffa500;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.registration-note p {
    color: #333;
    font-size: 16px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .option-divider {
        display: none;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .registration-btn {
        font-size: 14px;
        padding: 12px 15px;
    }

    .option-icon {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    color: var(--primary);
}

.contact-icon {
    font-size: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .info-banner {
        flex-direction: column;
        text-align: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .contact-options {
        flex-direction: column;
    }

    .contact-option {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .anmeldung-header h1 {
        font-size: 32px;
    }
}