/* Custom Font */
@font-face {
    font-family: 'Supreme Regular';
    src: url('./fonts/Supreme-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables for Themes */
:root {
    /* Light Theme Colors */
    --primary-color: #005cda;
    --primary-hover: #004ab0;
    --secondary-color: #555555;
    --accent-color: #eab308;
    --background-color: #F0F0F0;
    --surface-color: #FFFFFF;
    --card-color: #FFFFFF;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --border-color: #C0C0C0;
    --shadow-color: rgb(0 0 0 / 10%);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --hero-gradient: linear-gradient(135deg, #005cda 0%, #3e66d3 100%);
    --card-gradient: linear-gradient(145deg, #FFFFFF, #F0F0F0);
}

/* Dark Theme Colors */
[data-theme="dark"] {
    --primary-color: #6ea8fe;
    --primary-hover: #8bb9fe;
    --secondary-color: #888888;
    --accent-color: #eab308;
    --background-color: #0a0a0a;
    --surface-color: #161616;
    --card-color: #161616;
    --text-primary: #f0f0f0;
    --text-secondary: #888888;
    --border-color: rgb(255 255 255 / 15%);
    --shadow-color: rgb(0 0 0 / 50%);
    --nav-bg: rgba(10, 10, 10, 0.95);
    --hero-gradient: linear-gradient(135deg, #6ea8fe 0%, #3e66d3 100%);
    --card-gradient: linear-gradient(145deg, #222222, #161616);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Supreme Regular', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    min-height: 70px;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 110px;
    flex-shrink: 0;
}

.theme-toggle, .lang-toggle {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.theme-toggle:hover, .lang-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.lang-toggle {
    width: 50px;
    min-width: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}

.lang-text {
    white-space: nowrap;
}

/* Navbar kompakt beim Scrollen */
.navbar-compact {
    height: 55px !important;
    transition: height 0.3s ease !important;
}

.navbar-compact .nav-container {
    height: 55px !important;
    min-height: 55px !important;
}

.navbar-compact .nav-logo h2 {
    font-size: 1.3rem !important;
}

.navbar-compact .theme-toggle, 
.navbar-compact .lang-toggle {
    width: 35px !important;
    height: 35px !important;
    min-width: 35px !important;
    min-height: 35px !important;
}

.navbar-compact .lang-toggle {
    width: 45px !important;
    min-width: 45px !important;
}

/* Security Banner */
.security-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 20px 0;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.security-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.1"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="20" r="2"/><circle cx="20" cy="80" r="2"/><circle cx="80" cy="80" r="2"/><circle cx="50" cy="50" r="3"/></svg>');
    background-size: 100px 100px;
    animation: securityPattern 20s linear infinite;
}

@keyframes securityPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.security-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.security-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.security-text {
    flex: 1;
}

.security-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.security-text p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

.security-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.feature-icon {
    font-size: 1rem;
}

/* Hero Section */
.hero {
    background: var(--hero-gradient);
    padding: 220px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="1000,0 1000,100 0,100"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

.tools-section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tool-card {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hero-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: var(--primary-color);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tool-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tool-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tool-link {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.tool-link:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    background: var(--surface-color);
    padding: 80px 0;
    margin: 80px -2rem 0;
    border-radius: 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-card {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.faq-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Promotions Section */
.promotions-section {
    margin: 100px 0;
    position: relative;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.promotion-card {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.promotion-card.featured::before {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.promotion-card:hover::before {
    transform: scaleX(1);
}

.promotion-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px var(--shadow-color);
    border-color: var(--primary-color);
}

.promotion-card.featured {
    background: linear-gradient(145deg, var(--card-color), var(--surface-color));
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.promotion-card.featured:hover {
    transform: translateY(-12px) scale(1.07);
}

.promotion-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.icon-gradient {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 93, 218, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.promotion-card.featured .icon-gradient {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.4);
}

.promotion-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.featured-badge {
    background: linear-gradient(135deg, #f093fb, #f5576c) !important;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4) !important;
}

.promotion-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promotion-card.featured h3 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promotion-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.promotion-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.promotion-platforms,
.promotion-presets,
.promotion-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.platform-badge,
.preset-badge,
.format-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.preset-badge {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    box-shadow: 0 2px 8px rgba(245, 87, 108, 0.3);
}

.format-badge {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #333;
    box-shadow: 0 2px 8px rgba(168, 237, 234, 0.3);
}

.promotion-link {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0, 93, 218, 0.4);
    position: relative;
    overflow: hidden;
}

.promotion-card.featured .promotion-link {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
}

.promotion-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 93, 218, 0.6);
}

.promotion-card.featured .promotion-link:hover {
    box-shadow: 0 15px 35px rgba(245, 87, 108, 0.6);
}

.promotion-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.promotion-link:hover::before {
    left: 100%;
}

/* Developer Section */
.developer-section {
    margin: 5rem 0;
    padding: 0 1rem;
}

.developer-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.developer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.developer-image {
    flex-shrink: 0;
}

.developer-image img {
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 20px var(--shadow-color);
    transition: transform 0.3s ease;
    max-width: 150px;
    height: auto;
}

.developer-image img:hover {
    transform: scale(1.05);
}

.developer-content {
    flex: 1;
}

.developer-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

.developer-link {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-left: 0.5rem;
}

.developer-link:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification-info {
    background: var(--primary-color);
}

.notification-success {
    background: #10b981;
}

.notification-warning {
    background: #f59e0b;
}

.notification-error {
    background: #ef4444;
}

/* Responsive Design */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification-info {
    background: var(--primary-color);
}

.notification-success {
    background: #10b981;
}

.notification-warning {
    background: #f59e0b;
}

.notification-error {
    background: #ef4444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
        min-height: 60px;
        height: 60px;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .nav-controls {
        gap: 0.5rem;
        min-width: 100px;
    }

    .theme-toggle, .lang-toggle {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
    }

    .lang-toggle {
        width: 45px;
        min-width: 45px;
        font-size: 0.7rem;
    }

    .hero {
        padding: 190px 0 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tool-card {
        padding: 1.5rem;
    }

    .faq-section {
        margin: 60px -1rem 0;
        padding: 60px 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .developer-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .developer-image img {
        max-width: 120px;
    }

    .developer-content p {
        font-size: 1rem;
    }

    /* Security Banner Responsive */
    .security-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .security-text h3 {
        font-size: 1.2rem;
    }

    .security-text p {
        font-size: 0.9rem;
    }

    .security-features {
        justify-content: center;
        gap: 1rem;
    }

    .security-feature {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .shield-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Promotions Responsive */
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .promotion-card {
        padding: 2rem 1.5rem;
    }

    .promotion-card.featured {
        transform: none;
    }

    .promotion-card.featured:hover {
        transform: translateY(-8px) scale(1.02);
    }

    .icon-gradient {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .promotion-card h3 {
        font-size: 1.4rem;
    }

    .promotion-features {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .promotion-link {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
    }

    .nav-logo h2 {
        font-size: 1rem;
    }

    .nav-controls {
        gap: 0.3rem;
        min-width: 85px;
    }

    .theme-toggle, .lang-toggle {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }

    .lang-toggle {
        width: 40px;
        min-width: 40px;
        font-size: 0.6rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .tool-card {
        padding: 1.2rem;
    }

    .tool-icon {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .developer-section {
        margin: 3rem 0;
        padding: 0 0.5rem;
    }

    .developer-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .developer-image img {
        max-width: 100px;
    }

    /* Security Banner Mobile */
    .security-banner {
        padding: 15px 0;
    }

    .security-content {
        gap: 1rem;
    }

    .security-text h3 {
        font-size: 1.1rem;
    }

    .security-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .security-features {
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
    }

    .security-feature {
        font-size: 0.75rem;
        padding: 5px 8px;
    }

    .shield-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    /* Promotions Mobile */
    .promotions-section {
        margin: 60px 0;
    }

    .promotions-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .promotion-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .icon-gradient {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        border-radius: 15px;
    }

    .promotion-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .promotion-card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .promotion-features {
        gap: 0.4rem;
        margin-bottom: 1rem;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 5px 8px;
    }

    .platform-badge,
    .preset-badge,
    .format-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .promotion-link {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .promotion-badge {
        top: 15px;
        right: 15px;
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

/* Zusätzliche Sicherheit für sehr kleine Bildschirme */
@media (max-width: 360px) {
    .nav-container {
        flex-wrap: nowrap;
        overflow: visible;
    }

    .nav-logo {
        flex: 1;
        min-width: 0;
    }

    .nav-logo h2 {
        font-size: 0.9rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-in {
    animation: slideInLeft 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading animation for theme transitions */
body.theme-transitioning * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

/* Print styles */
@media print {
    .navbar,
    .theme-toggle,
    .lang-toggle,
    .nav-toggle {
        display: none;
    }

    .hero {
        background: none;
        color: black;
        padding: 2rem 0;
    }

    .tool-card,
    .faq-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}