:root {
    --primary-color: #4A90E2;
    --secondary-color: #50C878;
    --accent-color: #FFB347;
    --completed-color: #28a745;
    --next-color: #007bff;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 18px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header mit Account Menu */
header {
    position: relative;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
}

.account-menu {
    position: absolute;
    top: 0;
    right: 0;
}

.account-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.account-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.account-icon {
    font-size: 1.5rem;
}

.account-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.account-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 1.05rem;
}

.dropdown-item:hover {
    background: var(--light-bg);
}

.dropdown-icon {
    font-size: 1.4rem;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Floating Chatbot Button */
.chatbot-floating {
    position: fixed;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--secondary-color), #45b067);
    width: 150px;  /* VON 80px AUF 100px */
    height: 150px; /* VON 80px AUF 100px */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(80, 200, 120, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s ease-in-out infinite;
}

.chatbot-floating:hover {
    transform: scale(1.15); /* VON 1.1 AUF 1.15 */
    box-shadow: 0 12px 32px rgba(80, 200, 120, 0.5);
}

.chatbot-icon {
    font-size: 3rem; /* VON 2.5rem AUF 3rem */
}

.chatbot-label {
    color: white;
    font-size: 1rem; /* VON 0.9rem AUF 1rem */
    font-weight: 600;
    margin-top: -5px;
}

/* Main Content */
main {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-left: 5px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-content p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 500;
}

/* Step Sections */
.step-section {
    margin-bottom: 3rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), #3d7bc7);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.step-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0;
}

/* App Cards */
.app-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.priority-card {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
}

.priority-card.completed {
    border-color: var(--completed-color);
    background: linear-gradient(135deg, #fff 0%, #f0fff4 100%);
}

.app-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

/* Status Badge */
.status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
}

.status-completed {
    background: var(--completed-color);
    color: white;
}

.status-next {
    background: var(--next-color);
    color: white;
}

.status-icon {
    font-size: 1.2rem;
}

/* Card Content */
.card-header {
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 4rem;
    display: block;
}

.app-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-description {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Podcast Highlight */
.podcast-highlight {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-left: 4px solid #ffc107;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.highlight-icon {
    font-size: 1.4rem;
}

.highlight-text {
    color: #856404;
    font-weight: 600;
}

/* Features List */
.features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features li {
    padding: 0.7rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
}

/* Buttons */
.btn {
    width: 100%;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #45b067);
    color: white;
    box-shadow: 0 6px 16px rgba(80, 200, 120, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(80, 200, 120, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-color), #3d7bc7);
    color: white;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

.btn-completed {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    cursor: default;
}

.btn-completed:hover {
    transform: none;
}

.btn-repeat {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
    box-shadow: 0 6px 16px rgba(108, 117, 125, 0.3);
    margin-top: 10px !important;
}

.btn-repeat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.4);
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.btn:hover .arrow {
    transform: translateX(5px);
}

.duration {
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Links wie Buttons: keine Unterstreichung */
a.btn,
a.btn-secondary {
    text-decoration: none;
}


/* Section Divider */
.section-divider {
    text-align: center;
    margin: 4rem 0;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 2px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
}

.section-divider::before {
    left: 0;
}

.section-divider::after {
    right: 0;
}

.divider-text {
    background: white;
    padding: 0 20px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Additional Apps */
.additional-apps {
    margin-top: 3rem;
}

.section-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Chatbot Info Box */
.chatbot-info {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;  /* <-- DIESER ABSTAND */
    border-left: 5px solid var(--secondary-color);
}

.chatbot-info-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.chatbot-info-content h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.chatbot-info-content p {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin: 0;
}

/* Coming Soon */
.coming-soon {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.coming-soon h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

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

.coming-soon-item {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.coming-soon-item:hover {
    opacity: 0.8;
}

.icon-placeholder {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 2rem;
    color: white;
    opacity: 0.8;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .account-menu {
        position: static;
        margin-bottom: 20px;
    }

    .account-button {
        width: 100%;
        justify-content: center;
    }

    header h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    main {
        padding: 1.5rem;
    }

    .step-header h2 {
        font-size: 1.4rem;
    }

    .app-card h3 {
        font-size: 1.6rem;
    }

    .chatbot-floating {
        width: 70px;
        height: 70px;
        bottom: 20px;
        right: 20px;
    }

    .chatbot-icon {
        font-size: 2rem;
    }

    .chatbot-label {
        font-size: 0.8rem;
    }

    .info-banner,
    .chatbot-info {
        flex-direction: column;
        text-align: center;
    }
}

/* Accessibility - High Contrast Mode Support */
@media (prefers-contrast: high) {
    .app-card {
        border-width: 4px;
    }

    .btn {
        border: 3px solid transparent;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
