/* Apple-ähnliches minimalistisches Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    line-height: 1.47059;
    color: #1d1d1f;
    background: #ffffff;
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 44px 22px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 64px;
}

header h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.003em;
    color: #1d1d1f;
    line-height: 1.08349;
}

.subtitle {
    font-size: 21px;
    font-weight: 400;
    color: #86868b;
    margin-bottom: 12px;
    line-height: 1.19048;
}

.description {
    font-size: 15px;
    font-weight: 400;
    color: #86868b;
    margin-bottom: 0;
    line-height: 1.33341;
    letter-spacing: -0.01em;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content */
main {
    margin-bottom: 64px;
}

.links-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 44px;
    text-align: center;
    color: #1d1d1f;
    line-height: 1.10722;
    letter-spacing: 0.004em;
}

/* Links Grid */
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: #fbfbfd;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e5e5e7;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    min-height: 76px;
}

.link-card:hover {
    background: #f5f5f7;
    border-color: #d2d2d7;
    transform: none;
}

.link-card:active {
    background: #f0f0f2;
    transform: scale(0.98);
}

.link-icon {
    font-size: 24px;
    margin-right: 16px;
    width: 32px;
    text-align: center;
    opacity: 0.8;
    flex-shrink: 0;
}

.link-content {
    flex: 1;
    min-width: 0;
}

.link-content h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 2px;
    color: #1d1d1f;
    line-height: 1.23536;
    letter-spacing: -0.022em;
}

.link-content p {
    font-size: 14px;
    color: #86868b;
    font-weight: 400;
    margin: 0;
    line-height: 1.28571;
    letter-spacing: -0.016em;
}

.link-arrow {
    font-size: 17px;
    color: #86868b;
    font-weight: 300;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
    margin-left: 8px;
}

.link-card:hover .link-arrow {
    transform: translateX(3px);
    color: #007aff;
}

/* Footer */
footer {
    text-align: center;
    padding: 44px 0 22px;
    border-top: 1px solid #e5e5e7;
}

.qr-text {
    font-size: 14px;
    color: #86868b;
    font-weight: 400;
    line-height: 1.28571;
    letter-spacing: -0.016em;
    margin-bottom: 16px;
}

.quote {
    font-size: 15px;
    color: #1d1d1f;
    font-weight: 400;
    line-height: 1.33341;
    letter-spacing: -0.01em;
    font-style: italic;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 32px 16px;
    }
    
    header {
        margin-bottom: 48px;
    }
    
    header h1 {
        font-size: 40px;
    }
    
    .subtitle {
        font-size: 19px;
    }
    
    .description {
        font-size: 14px;
        max-width: 450px;
    }
    
    main {
        margin-bottom: 48px;
    }
    
    .links-section h2 {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .link-card {
        padding: 16px 16px;
        min-height: 68px;
    }
    
    footer {
        padding: 32px 0 16px;
    }
    
    .quote {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 24px 12px;
    }
    
    header h1 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 17px;
    }
    
    .description {
        font-size: 13px;
        max-width: 350px;
    }
    
    .links-section h2 {
        font-size: 21px;
    }
    
    .link-card {
        min-height: 60px;
    }
    
    .quote {
        font-size: 13px;
    }
}

/* Focus States für Accessibility */
.link-card:focus {
    outline: 2px solid #007aff;
    outline-offset: 2px;
}

/* Entferne alle Animationen für noch mehr Minimalismus */
.link-card {
    animation: none;
}

/* Subtile Hover-Effekte nur für Desktop */
@media (hover: hover) {
    .link-card:hover {
        background: #f5f5f7;
        border-color: #d2d2d7;
    }
}

/* Touch-Geräte: Keine Hover-Effekte */
@media (hover: none) {
    .link-card:hover {
        background: #fbfbfd;
        border-color: #e5e5e7;
    }
}

/* Apple-typische Selection */
::selection {
    background: #007aff;
    color: #ffffff;
}

/* Apple-typische Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
} 