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

:root {
    --primary-color: #36cfff;
    --accent-color: #ff4d4d;
    --dark-bg: #060806;
    --card-bg: #121212;
    --text-light: #f8f9fa;
    --text-muted: #adb5bd;
    --footer-bg: #060806;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    padding-bottom: 3rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Einheitliche Abschnitte */
.section-container {
    padding: 3rem 0;
    margin-top: -2.5rem;
    position: relative;
}

.section-title {
    margin-bottom: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.hero {
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: none;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    text-align: center;
    position: relative;
}

.main-logo {
    max-height: 200px;
    width: auto;
    margin-bottom: -1rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 5;
}

.main-logo:hover {
    transform: scale(1.02);
}

.brand-text {
    font-size: 6rem;
    font-weight: bold;
    color: #ff4d4d;
    letter-spacing: 0.2em;
    margin-top: -1rem;
    text-shadow: 0 0 20px #ff4d4d, 0 0 40px #ff4d4d, 0 0 80px #ff4d4d, 0 0 120px #ff4d4d;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    animation: fadeInDown 0.6s ease-out;
    transition: all 0.1s ease;
    position: relative;
    z-index: 10;
    display: block;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.neon-max {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.1s ease;
}

/* Red Neon Text Effect for version in footer - inverted: normally dark, briefly glows red */
.neon-version {
    color: #000;
    text-shadow: none;
    font-weight: bold;
    transition: all 0.1s ease;
}

/* Glow effect for version - lights up red like DDC */
.neon-version.glow {
    color: #ff4d4d;
    text-shadow: 0 0 20px #ff4d4d, 0 0 40px #ff4d4d, 0 0 80px #ff4d4d, 0 0 120px #ff4d4d;
}

.flicker {
    opacity: 0.8;
    text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color);
}

.flicker-off {
    opacity: 0.1;
    text-shadow: none;
}

.brand-text.flicker {
    color: #000;
    text-shadow: none;
    transition: color 0.05s, text-shadow 0.05s;
}

.brand-text.flicker-off {
    color: #000;
    text-shadow: none;
    transition: color 0.05s, text-shadow 0.05s;
}

h1 {
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    letter-spacing: -0.5px;
}

p.lead {
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.btn {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-github {
    background-color: #2A2D34;
    color: white;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-github:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-discord {
    background-color: #5865f2;
    color: white;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 6px rgba(88, 101, 242, 0.2);
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
    color: white;
    background-color: #4752c4;
}

/* Demo Section */
.demo-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.demo-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.demo-divider::before,
.demo-divider::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.demo-divider span {
    padding: 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.demo-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-demo {
    background-color: #00b894;
    color: white;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 184, 148, 0.2);
}

.btn-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 184, 148, 0.3);
    color: white;
    background-color: #00a381;
}

.btn-outline-light {
    border-radius: 30px;
    border-width: 2px;
}

.feature-card {
    background: #080808;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, rgba(54, 207, 255, 0.05), transparent 60%);
    z-index: 0;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(54, 207, 255, 0.2);
}

.feature-card:hover .feature-overlay {
    opacity: 1;
    visibility: visible;
}

/* Feature Image Container */
.feature-image {
    position: relative;
    margin-bottom: 1.5rem;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.feature-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.feature-screenshot:hover {
    transform: scale(1.05) translateZ(0);
    filter: brightness(1) contrast(1.2);
}

.feature-icon-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(54, 207, 255, 0.1);
    border-radius: 8px;
}

.feature-icon-fallback i {
    font-size: 3rem !important;
    color: var(--primary-color);
    opacity: 0.8;
}

/* Feature Overlay */
.feature-overlay {
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    height: 180px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.feature-overlay i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-overlay span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.show {
    opacity: 1;
}

.image-modal-content {
    background: var(--card-bg);
    border-radius: 12px;
    max-width: 95vw;
    max-height: 95vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.image-modal.show .image-modal-content {
    transform: scale(1);
}

.image-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.image-modal-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.modal-close:hover {
    background: rgba(255, 77, 77, 0.1);
    color: var(--accent-color);
    transform: scale(1.1);
}

.image-modal-body {
    padding: 0;
    text-align: center;
    max-height: 80vh;
    overflow: auto;
    background: #000;
}

.image-modal-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.image-modal-body p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.2);
}

.image-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.image-modal-footer .btn {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.image-modal-footer .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.image-modal-footer .btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(54, 207, 255, 0.3);
}

.image-modal-footer .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.feature-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer {
    margin-top: 0.75rem;
    background: var(--footer-bg);
    color: var(--text-muted);
    padding: 3rem 0 1rem;
    text-align: left;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-section h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(54, 207, 255, 0.3);
}

.footer-section p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.impressum-content {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.impressum-content strong {
    color: var(--text-light);
    font-weight: 600;
}

.impressum-content p {
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .small {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer-bottom .text-muted {
    color: var(--text-light) !important;
    opacity: 0.85;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0.3rem 0.5rem;
    display: inline-block;
    border-radius: 4px;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-link i {
    opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .impressum-content {
        padding: 1rem;
        text-align: left;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .footer-bottom .col-md-4 {
        margin-top: 1rem;
    }
    
    .footer-bottom .small {
        color: var(--text-light);
        opacity: 0.9;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-section h5 {
        font-size: 1.1rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
    
    .impressum-content {
        padding: 0.8rem;
    }
    
    .impressum-content p {
        font-size: 0.8rem;
    }
    
    .disclaimer-footer small {
        font-size: 0.85rem;
    }
}

/* Built by MAX credit */
.fixed-credit {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
}

.fixed-credit:hover {
    pointer-events: none;
}

.credit-content {
    padding: 8px 15px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.neon-max {
    color: #36cfff;
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 
        0 0 5px rgba(54, 207, 255, 0.8),
        0 0 10px rgba(54, 207, 255, 0.6),
        0 0 15px rgba(54, 207, 255, 0.4),
        0 0 20px rgba(54, 207, 255, 0.2);
    animation: neon-flicker-max 3s infinite alternate;
    transition: all 0.3s ease;
}

.neon-max:hover {
    text-shadow: 
        0 0 8px rgba(54, 207, 255, 1),
        0 0 16px rgba(54, 207, 255, 0.8),
        0 0 24px rgba(54, 207, 255, 0.6),
        0 0 32px rgba(54, 207, 255, 0.4);
    transform: scale(1.05);
}

@keyframes neon-flicker-max {
    0%, 100% {
        text-shadow: 
            0 0 5px rgba(54, 207, 255, 0.8),
            0 0 10px rgba(54, 207, 255, 0.6),
            0 0 15px rgba(54, 207, 255, 0.4),
            0 0 20px rgba(54, 207, 255, 0.2);
    }
    5% {
        text-shadow: 
            0 0 2px rgba(54, 207, 255, 0.4),
            0 0 5px rgba(54, 207, 255, 0.3),
            0 0 8px rgba(54, 207, 255, 0.2);
    }
    10% {
        text-shadow: 
            0 0 8px rgba(54, 207, 255, 1),
            0 0 16px rgba(54, 207, 255, 0.8),
            0 0 24px rgba(54, 207, 255, 0.6),
            0 0 32px rgba(54, 207, 255, 0.4);
    }
    15% {
        text-shadow: 
            0 0 3px rgba(54, 207, 255, 0.5),
            0 0 6px rgba(54, 207, 255, 0.4);
    }
    20% {
        text-shadow: 
            0 0 6px rgba(54, 207, 255, 0.9),
            0 0 12px rgba(54, 207, 255, 0.7),
            0 0 18px rgba(54, 207, 255, 0.5),
            0 0 24px rgba(54, 207, 255, 0.3);
    }
    50% {
        text-shadow: 
            0 0 7px rgba(54, 207, 255, 1),
            0 0 14px rgba(54, 207, 255, 0.8),
            0 0 21px rgba(54, 207, 255, 0.6),
            0 0 28px rgba(54, 207, 255, 0.4);
    }
}

/* Platform Selection Section */
.platform-selection-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(18, 18, 18, 0.8) 100%);
    position: relative;
    margin-bottom: 2rem;
}

.platform-selection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(54, 207, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.platform-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.platform-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    min-height: 400px;
    border: 1px solid rgba(54, 207, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(54, 207, 255, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(54, 207, 255, 0.15);
}

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

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(54, 207, 255, 0.5);
}

.universal-platform .platform-icon { color: #36cfff; }
.windows-platform .platform-icon { color: #0078d4; }
.linux-platform .platform-icon { color: #e95420; }
.macos-platform .platform-icon { color: #007aff; }

.platform-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.platform-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    min-height: 50px;
}

.platform-features {
    margin-bottom: 2rem;
    min-height: 80px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-list {
    text-align: left;
}

.feature-item {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.btn-platform-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(54, 207, 255, 0.8) 100%);
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
    flex-shrink: 0;
}

.btn-platform-primary:hover {
    background: linear-gradient(135deg, rgba(54, 207, 255, 0.9) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(54, 207, 255, 0.3);
    color: #000;
    text-decoration: none;
}

.platform-note {
    background: rgba(54, 207, 255, 0.05);
    border: 1px solid rgba(54, 207, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.platform-note i {
    color: var(--primary-color);
}

/* Responsive Design für Platform Cards */
@media (max-width: 992px) {
    .platform-card {
        margin-bottom: 1.5rem;
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .platform-selection-section {
        padding: 3rem 0;
    }
    
    .platform-card {
        padding: 1.5rem 1rem;
        min-height: 350px;
    }
    
    .platform-icon {
        font-size: 2.5rem;
    }
    
    .platform-features {
        min-height: 70px;
    }

    .feature-item {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .platform-note {
        margin-top: 2rem;
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Discord Bot Setup Page Styles */
.setup-logo {
    max-height: 120px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.setup-logo:hover {
    transform: scale(1.02);
}

.brand-text-nav {
    color: #ff4d4d;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

.step-description {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(54, 207, 255, 0.1);
}

.step-description:last-child {
    border-bottom: none;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(54, 207, 255, 0.8) 100%);
    color: #000;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    text-align: center;
    line-height: 2.5rem;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.step-description h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.step-description p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.step-description ul {
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.step-description ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
}

.step-description ul li::marker {
    color: var(--primary-color);
}

.warning-text {
    color: #ffc107;
    font-weight: 500;
}

.warning-text i {
    color: #ff6b6b;
}

.text-info {
    color: var(--primary-color) !important;
}

.alert-info {
    background-color: rgba(54, 207, 255, 0.1);
    border: 1px solid rgba(54, 207, 255, 0.2);
    color: var(--text-light);
}

.alert-info .alert-heading {
    color: var(--primary-color);
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: var(--text-light);
}

.alert-warning h5 {
    color: #ffc107;
}

.card.bg-dark {
    background-color: var(--card-bg) !important;
    border: 1px solid rgba(54, 207, 255, 0.1);
}

.card.bg-secondary {
    background-color: rgba(108, 117, 125, 0.2) !important;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.navbar.fixed-top {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.9) !important;
    border-bottom: 1px solid rgba(54, 207, 255, 0.1);
}

.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-light) !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    text-shadow: 0 0 8px rgba(54, 207, 255, 0.4);
}

/* Code styling */
code {
    background-color: rgba(54, 207, 255, 0.1);
    color: var(--primary-color);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Button overrides for setup page */
.btn-outline-info {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-info:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: #000;
}

/* Neon text for setup page */
.neon-text-large {
    font-size: 4rem;
    font-weight: bold;
    color: #ff4d4d;
    letter-spacing: 0.15em;
    text-shadow: 
        0 0 10px rgba(255, 77, 77, 0.3),
        0 0 20px rgba(255, 77, 77, 0.3),
        0 0 30px rgba(255, 77, 77, 0.3);
    animation: neon-flicker 3s ease-in-out infinite alternate;
}

@keyframes neon-flicker {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 77, 77, 0.3),
            0 0 20px rgba(255, 77, 77, 0.3),
            0 0 30px rgba(255, 77, 77, 0.3);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255, 77, 77, 0.5),
            0 0 25px rgba(255, 77, 77, 0.5),
            0 0 35px rgba(255, 77, 77, 0.5);
    }
}

/* Responsive adjustments for setup page */
@media (max-width: 768px) {
    .setup-logo {
        max-height: 80px;
    }
    
    .neon-text-large {
        font-size: 3rem;
    }
    
    .step-number {
        width: 2rem;
        height: 2rem;
        line-height: 2rem;
        font-size: 1rem;
    }
    
    .step-description {
        padding: 1rem 0;
    }
    
    .container.mt-5.pt-4 {
        margin-top: 3rem !important;
        padding-top: 2rem !important;
    }
}

/* Animation für Buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(54, 207, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(54, 207, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(54, 207, 255, 0);
    }
}

.btn-github:hover, .btn-outline-light:hover {
    animation: pulse 1.5s infinite;
}

@media (max-width: 768px) {
    .section-container {
        padding: 2rem 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .neon-title {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .description-wrapper {
        padding-left: 1rem;
    }
    
    .brand-text {
        font-size: 3rem;
        letter-spacing: 0.1em;
        margin-top: -0.6rem;
    }
    
    .main-logo {
        max-height: 120px;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 3rem 0 2rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-image {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .feature-screenshot {
        filter: brightness(0.95) contrast(1.05);
    }
    
    .feature-icon-fallback i {
        font-size: 2rem !important;
    }
    
    .donation-section {
        padding: 1.5rem;
    }
    
    /* Mobile Donation Buttons */
    .donation-section-hero .d-flex {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .donation-section-hero .d-inline-block {
        margin: 0 !important;
        width: 100%;
        max-width: 250px;
    }
    
    .donation-section-hero .sparkle-wrapper {
        width: 100%;
    }
    
    /* Buy Me A Coffee Button - behält originale Größe */
    .donation-section-hero .donation-link {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .donation-section-hero .donation-link img {
        height: 45px !important;
        width: auto !important;
        max-width: 100%;
    }
    
    /* PayPal Button - behält blaue Farbe und korrekte Größe */
    .donation-section-hero .donation-btn {
        width: 100% !important;
        height: 45px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.9rem !important;
        padding: 8px 12px !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        background-color: #0070ba !important;
        border-color: #0070ba !important;
        color: white !important;
        text-decoration: none !important;
    }
    
    .donation-section-hero .donation-btn:hover {
        background-color: #005a94 !important;
        border-color: #005a94 !important;
        color: white !important;
    }
    
    .donation-section-hero .donation-btn i {
        margin-right: 0.5rem !important;
        font-size: 1rem !important;
        color: white !important;
    }

    .btn {
        width: auto;
        padding: 0.7rem 1.2rem;
    }
    
    /* Modal responsive */
    .image-modal-content {
        max-width: 95vw;
        max-height: 95vh;
        margin: 1rem;
    }
    
    .image-modal-header {
        padding: 1rem;
    }
    
    .image-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .image-modal-body p {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .image-modal-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .image-modal-footer .btn {
        width: 100%;
        padding: 0.8rem;
    }
    
    .feature-overlay {
        top: 20px;
        left: 20px;
        right: 20px;
        height: 120px;
    }
    
    .feature-overlay i {
        font-size: 2rem;
    }
    
    .feature-overlay span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .description-wrapper {
        border-left: 2px solid var(--primary-color);
        padding-left: 0.8rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
    
    .brand-text {
        font-size: 5rem;
        letter-spacing: 2px;
        margin-top: -12px;
    }
    
    .main-logo {
        max-width: 200px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-image {
        height: 120px;
        margin-bottom: 0.8rem;
    }
    
    .feature-icon-fallback i {
        font-size: 2rem !important;
    }
}

.hero-text {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.tagline {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.description-wrapper {
    max-width: 720px;
    margin: 0 auto;
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
    position: relative;
}

.description-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.description {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: left;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.donation-section-hero {
    margin: 2rem auto 1.5rem;
    background: rgba(18, 18, 18, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

.donation-section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, rgba(54, 207, 255, 0.03), transparent 70%);
    z-index: 0;
}

.donation-section-hero > * {
    position: relative;
    z-index: 1;
}

.donation-section-hero p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.donation-text {
    color: #adb5bd;
    margin-bottom: 15px;
}

/* Donation Button Styles */
.donation-btn {
    background-color: #0070ba !important;
    border-color: #0070ba !important;
    color: white !important;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.donation-btn:hover {
    background-color: #005a94 !important;
    border-color: #005a94 !important;
    color: white !important;
    transform: translateY(-2px);
}

.donation-link img {
    height: 40px !important;
    width: auto !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.donation-link:hover img {
    transform: translateY(-2px);
}

/* README Sektion Styles */
.readme-section {
    background: linear-gradient(135deg, rgba(6, 8, 6, 0.95), rgba(18, 18, 18, 0.95));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.readme-container {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.readme-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, rgba(54, 207, 255, 0.02), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.readme-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.readme-header span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.readme-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.readme-content::-webkit-scrollbar {
    width: 8px;
}

.readme-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.readme-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.readme-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* README Inhalt Styling */
.readme-content h1,
.readme-content h2,
.readme-content h3,
.readme-content h4,
.readme-content h5,
.readme-content h6 {
    color: var(--text-light);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.readme-content h1 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-top: 0;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

.readme-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-top: 3rem;
}

.readme-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-top: 2rem;
}

.readme-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.readme-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.readme-content a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

.readme-content code {
    background: rgba(0, 0, 0, 0.4);
    color: var(--primary-color);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.readme-content pre {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.readme-content pre code {
    background: none;
    padding: 0;
    color: var(--text-light);
}

.readme-content blockquote {
    border-left: 4px solid var(--primary-color);
    background: rgba(54, 207, 255, 0.05);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.readme-content blockquote p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Listen minimieren und als Fließtext darstellen */
.readme-content ul,
.readme-content ol {
    color: var(--text-muted);
    padding-left: 0;
    margin-bottom: 2rem;
    list-style: none;
    max-width: none;
}

/* Nur wichtige Listen als echte Listen anzeigen */
.readme-content ul li,
.readme-content ol li {
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.8;
    padding-left: 0;
    display: inline;
}

/* Entferne alle Bullet Points standardmäßig */
.readme-content ul li::before,
.readme-content ol li::before {
    display: none;
}

/* Nur bei kurzen Listen (max 3 Items) Bullets anzeigen */
.readme-content ul:has(li:nth-child(-n+3)):not(:has(li:nth-child(4))) li {
    display: block;
    padding-left: 1.2rem;
}

.readme-content ul:has(li:nth-child(-n+3)):not(:has(li:nth-child(4))) li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.8;
    display: block;
}

/* Lange Listen als Fließtext mit Kommas */
.readme-content ul:has(li:nth-child(4)) li:not(:last-child)::after {
    content: ', ';
    color: var(--text-muted);
}

.readme-content ul:has(li:nth-child(4)) li:last-child::before {
    content: 'and ';
    color: var(--text-muted);
}

.readme-content ul:has(li:nth-child(4)) li:last-child::after {
    content: '.';
    color: var(--text-muted);
}

/* Verschachtelte Listen komplett als Fließtext */
.readme-content ul ul,
.readme-content ol ol,
.readme-content ul ol,
.readme-content ol ul {
    margin: 0;
    padding: 0;
    display: inline;
}

.readme-content ul ul li,
.readme-content ol ol li {
    display: inline;
    margin: 0;
    padding: 0;
}

.readme-content ul ul li::before,
.readme-content ol ol li::before {
    display: none;
}

.readme-content ul ul li:not(:last-child)::after {
    content: ', ';
}

.readme-content ul ul li:last-child::after {
    content: '';
}

.readme-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.readme-content th,
.readme-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.readme-content th {
    background: rgba(54, 207, 255, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.readme-content td {
    color: var(--text-muted);
}

.readme-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive Tabellen */
.readme-content .table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Bessere Formatierung für spezielle Elemente */
.readme-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 3rem 0;
}

.readme-content strong,
.readme-content b {
    color: var(--text-light);
    font-weight: 600;
    display: inline-block;
    margin: 0.5rem 0;
}

.readme-content em,
.readme-content i {
    color: var(--primary-color);
    font-style: italic;
}

/* Spezielle Formatierung für GitHub-spezifische Elemente */
.readme-content .highlight {
    background: rgba(54, 207, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: var(--primary-color);
    display: inline-block;
    margin: 0.2rem;
}

/* Verbesserte Darstellung für Badges und Labels */
.readme-content img[src*="shields.io"],
.readme-content img[src*="badge"] {
    display: inline-block;
    margin: 0.3rem;
    vertical-align: middle;
}

/* Responsive README */
@media (max-width: 768px) {
    .readme-content {
        padding: 1rem;
        max-height: 70vh;
    }
    
    .readme-header {
        padding: 0.8rem 1rem;
    }
    
    .readme-content h1 {
        font-size: 2rem;
    }
    
    .readme-content h2 {
        font-size: 1.5rem;
    }
    
    .readme-content h3 {
        font-size: 1.2rem;
    }
    
    .readme-content pre {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .readme-content table {
        font-size: 0.8rem;
    }
    
    .readme-content th,
    .readme-content td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .readme-content {
        max-height: 60vh;
    }
    
    .readme-header .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
}

/* High-DPI Display Optimierungen */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .feature-screenshot,
    .image-modal-body img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Responsive Breakpoints für Modal */
@media (max-width: 480px) {
    .image-modal-content {
        max-width: 98vw;
        max-height: 98vh;
        margin: 0.5rem;
    }
    
    .image-modal-body {
        max-height: 60vh;
    }
    
    .image-modal-body img {
        image-rendering: auto;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .image-modal-content {
        max-width: 90vw;
        max-height: 90vh;
    }
    
    .image-modal-body {
        max-height: 70vh;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .image-modal-content {
        max-width: 85vw;
        max-height: 85vh;
    }
    
    .image-modal-body {
        max-height: 75vh;
    }
}

@media (min-width: 1201px) {
    .image-modal-content {
        max-width: 80vw;
        max-height: 80vh;
    }
    
    .image-modal-body {
        max-height: 70vh;
    }
}

/* Verbesserte Scroll-Performance */
.image-modal-body {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
    -webkit-overflow-scrolling: touch;
}

.image-modal-body::-webkit-scrollbar {
    width: 8px;
}

.image-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.image-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.image-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Screenshot Carousel */
.screenshot-carousel-section {
    background: linear-gradient(135deg, rgba(6, 8, 6, 0.98), rgba(18, 18, 18, 0.98));
    padding: 1.0rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.screenshot-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, rgba(54, 207, 255, 0.03), transparent 70%);
    z-index: 0;
}

.screenshot-carousel {
    position: relative;
    z-index: 1;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.carousel-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 1600%; /* 16 slides */
}

.carousel-slide {
    width: 6.25%; /* 100% / 16 slides */
    position: relative;
    flex-shrink: 0;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    background: rgba(0, 0, 0, 0.2);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 3rem 2rem 2rem;
    color: var(--text-light);
    text-align: center;
}

.carousel-caption h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(54, 207, 255, 0.5);
}

.carousel-caption p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(54, 207, 255, 0.3);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(54, 207, 255, 0.2);
    border-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(54, 207, 255, 0.4);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    border-color: var(--primary-color);
    background: rgba(54, 207, 255, 0.3);
}

.indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(54, 207, 255, 0.6);
}

/* Controls */
.carousel-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.control-btn {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(54, 207, 255, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Feature Card Active State */
.feature-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(54, 207, 255, 0.2);
    transform: translateY(-5px);
}

.feature-card.active::before {
    background: linear-gradient(140deg, rgba(54, 207, 255, 0.15), transparent 60%);
}

.feature-card.active h3 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(54, 207, 255, 0.3);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .screenshot-carousel-section {
        padding: 2rem 0;
    }
    
    .carousel-image {
        height: 300px;
        object-fit: contain;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .carousel-caption {
        padding: 2rem 1rem 1rem;
    }
    
    .carousel-caption h3 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-controls {
        top: 10px;
        right: 10px;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .carousel-image {
        height: 250px;
        object-fit: contain;
        background: rgba(0, 0, 0, 0.4);
    }
    
    .carousel-caption {
        padding: 1.5rem 0.8rem 0.8rem;
    }
    
    .carousel-caption h3 {
        font-size: 1.3rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Animation für Slide-Wechsel */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-slide.active .carousel-caption {
    animation: slideIn 0.8s ease-out 0.3s both;
}

/* Hover-Effekte für bessere UX */
.carousel-container:hover .carousel-btn {
    opacity: 1;
}

.carousel-container:hover .carousel-controls {
    opacity: 1;
}

.carousel-btn,
.carousel-controls {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-container:hover .carousel-btn,
.carousel-container:hover .carousel-controls {
    opacity: 1;
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(6, 8, 6, 0.95));
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, rgba(255, 77, 77, 0.02), transparent 70%);
    z-index: 0;
}

.disclaimer-container {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.disclaimer-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 77, 77, 0.3);
}

.disclaimer-header i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.disclaimer-header h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

.disclaimer-content {
    position: relative;
    z-index: 1;
}

.disclaimer-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    border-color: rgba(255, 77, 77, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.disclaimer-item h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.disclaimer-item h4 i {
    color: var(--accent-color);
    font-size: 1rem;
}

.disclaimer-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-footer strong {
    color: var(--text-light);
    font-size: 1.1rem;
}

.disclaimer-footer small {
    color: var(--text-light);
    font-size: 0.95rem;
    opacity: 0.95;
}

.disclaimer-small {
    color: var(--text-light) !important;
    font-size: 0.95rem !important;
    opacity: 0.95;
}

.disclaimer-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.disclaimer-link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

/* Responsive Disclaimer */
@media (max-width: 768px) {
    .disclaimer-section {
        padding: 2rem 0;
    }
    
    .disclaimer-container {
        padding: 1.5rem;
    }
    
    .disclaimer-header h3 {
        font-size: 1.5rem;
    }
    
    .disclaimer-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .disclaimer-item h4 {
        font-size: 1rem;
    }
    
    .disclaimer-item p {
        font-size: 0.85rem;
    }
    
    .disclaimer-footer strong {
        font-size: 1rem;
    }
    
    .disclaimer-footer small {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .disclaimer-container {
        padding: 1rem;
    }
    
    .disclaimer-header {
        margin-bottom: 1.5rem;
    }
    
    .disclaimer-header h3 {
        font-size: 1.3rem;
    }
    
    .disclaimer-item h4 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .disclaimer-footer strong {
        font-size: 0.95rem;
    }
    
    .disclaimer-footer small {
        font-size: 0.85rem;
    }
}

/* Coole Laser-Effekte für Donation Buttons */
.sparkle-wrapper {
    position: relative;
    display: inline-block;
    padding: 15px;
    overflow: visible;
}

.sparkles {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    pointer-events: none;
    border-radius: 12px;
}

/* Statischer Laser-Ring */
.sparkles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(54, 207, 255, 0.3);
    border-radius: 12px;
    box-shadow: 
        0 0 8px rgba(54, 207, 255, 0.2),
        inset 0 0 8px rgba(54, 207, 255, 0.1);
    transition: all 0.3s ease;
}

/* Statischer äußerer Ring */
.sparkles::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid rgba(54, 207, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(54, 207, 255, 0.2);
    opacity: 0.5;
    transition: all 0.3s ease;
}

/* Laser-Glow Animation nur für Hover */
@keyframes laser-glow {
    0%, 100% {
        border-color: rgba(54, 207, 255, 0.6);
        box-shadow: 
            0 0 15px rgba(54, 207, 255, 0.5),
            inset 0 0 15px rgba(54, 207, 255, 0.2);
    }
    50% {
        border-color: rgba(54, 207, 255, 1);
        box-shadow: 
            0 0 30px rgba(54, 207, 255, 0.8),
            inset 0 0 30px rgba(54, 207, 255, 0.4);
    }
}

/* Laser-Pulse Animation nur für Hover */
@keyframes laser-pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Hover-Aktivierung der Animationen */
.sparkle-wrapper:hover .sparkles::before {
    border-color: rgba(54, 207, 255, 0.6);
    border-width: 3px;
    animation: laser-glow 1.5s infinite ease-in-out;
    box-shadow: 
        0 0 20px rgba(54, 207, 255, 0.6),
        inset 0 0 20px rgba(54, 207, 255, 0.3);
}

.sparkle-wrapper:hover .sparkles::after {
    opacity: 1;
    border-width: 2px;
    animation: laser-pulse 1.5s infinite ease-in-out;
    box-shadow: 0 0 25px rgba(54, 207, 255, 0.5);
}

/* Statische Laser-Ecken-Punkte */
.sparkle-wrapper::before,
.sparkle-wrapper::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #36cfff 0%, rgba(54, 207, 255, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
    box-shadow: 
        0 0 6px rgba(54, 207, 255, 0.4);
    transition: all 0.3s ease;
}

.sparkle-wrapper::before {
    top: 5px;
    left: 5px;
}

.sparkle-wrapper::after {
    bottom: 5px;
    right: 5px;
}

@keyframes laser-corners {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Hover-Aktivierung für Ecken-Punkte */
.sparkle-wrapper:hover::before,
.sparkle-wrapper:hover::after {
    width: 6px;
    height: 6px;
    opacity: 1;
    animation: laser-corners 1s infinite ease-in-out;
    box-shadow: 
        0 0 12px #36cfff,
        0 0 24px #36cfff;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .sparkle-wrapper {
        padding: 10px;
    }
    
    .sparkles::before {
        border-width: 1px;
    }
    
    .sparkles::after {
        border-width: 1px;
    }
    
    .sparkle-wrapper::before,
    .sparkle-wrapper::after {
        width: 3px;
        height: 3px;
    }
    
    .sparkle-wrapper:hover::before,
    .sparkle-wrapper:hover::after {
        width: 5px;
        height: 5px;
    }
}

/* Footer Link Abstände fixen */
.footer-links {
    gap: 0; /* entfernt automatischen Zwischenraum */
}

.footer-links a {
    margin: 0; /* entfernt Bootstrap-Margin */
    padding: 0; /* entfernt Innenabstand */
}

.footer-links a i {
    margin-right: 6px; /* Icon bleibt sauber neben Text */
}

/* Optionale: Link-Gruppen enger machen */
.footer-section {
    padding-left: 0;
    padding-right: 0;
}

/* Mech Animation im Footer */
.mech-animation {
    width: 225px;
    height: 201px;
    object-fit: contain;
    image-rendering: pixelated;
    display: block;
    margin: 0;
}

.artist-credit {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
}

.artist-link {
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.artist-link:hover {
    color: #36cfff !important;
    text-shadow: 0 0 8px rgba(54, 207, 255, 0.6);
}

/* Email Link im Impressum */
.email-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--primary-color);
}

