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

:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F77F00;
    --dark-bg: #0B1120;
    --light-bg: #F8F9FA;
    --text-dark: #1F2933;
    --text-light: #ECF0F1;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-soft-hover: 0 18px 45px rgba(15, 23, 42, 0.14);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--light-bg);
}

/* Navigation */
nav {
    background: linear-gradient(135deg, #022C55 0%, var(--secondary-color) 60%);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
    z-index: 1001;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    /* nur transform animieren, um nicht-zusammengesetzte Farb-Animationen zu vermeiden */
    transition: transform 0.3s;
    font-weight: 500;
}

/* active link styling applied by JS */
nav a.active {
    color: var(--accent-color) !important;
}

nav a:hover {
    transform: translateY(-2px);
    color: var(--accent-color);
}

/* Hamburger Menu for Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: 0;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

.menu-toggle:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 4px;
    border-radius: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        padding: 2rem;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    nav ul.active li {
        opacity: 1;
        transform: translateX(0);
    }

    nav ul.active li:nth-child(1) { transition-delay: 0.1s; }
    nav ul.active li:nth-child(2) { transition-delay: 0.2s; }
    nav ul.active li:nth-child(3) { transition-delay: 0.3s; }
    nav ul.active li:nth-child(4) { transition-delay: 0.4s; }
    nav ul.active li:nth-child(5) { transition-delay: 0.5s; }

    nav a {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at top left, rgba(255,255,255,0.04) 0%, transparent 55%),
                linear-gradient(135deg, #022C55 0%, #00548F 60%);
    color: white;
    padding: 150px 5% 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    animation: rotate 26s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.9s ease;
    text-shadow: 0 12px 30px rgba(15, 23, 42, 0.5);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: 0.5px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.9s ease 0.1s backwards;
    text-shadow: 0 8px 20px rgba(15, 23, 42, 0.45);
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #1A5490, #2C3E50);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.32);
    animation: fadeInUp 1s ease 0.4s backwards;
    border: 2px solid rgba(255,255,255,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
    background: linear-gradient(135deg, #2C3E50, #1A5490);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

section:nth-child(even) {
    background: var(--light-bg);
}

h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust / Fit sections */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.trust-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.6rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.trust-card h3 {
    margin-bottom: 0.6rem;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.disclosure {
    margin-top: 2rem;
    padding: 1.2rem 1.4rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.10), rgba(0, 78, 137, 0.08));
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    color: #334155;
}

.disclosure p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.disclosure p:last-child {
    margin-bottom: 0;
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 900px) {
    .fit-grid {
        grid-template-columns: 1fr;
    }
}

.fit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.6rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.fit-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

.fit-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.fit-card li {
    margin-bottom: 0.7rem;
    color: #334155;
}

.fit-card--good h3 {
    color: #0f766e;
}

.fit-card--bad h3 {
    color: #b91c1c;
}

.fit-note {
    margin-top: 1.75rem;
    text-align: center;
    color: #334155;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft-hover);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* New Features 2025 */
.new-badge {
    display: inline-block;
    background: #A04000;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 10px;
    box-shadow: 0 2px 10px rgba(160, 64, 0, 0.4);
}

.updates-timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 3rem;
}

.updates-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.timeline-item::before {
    content: '✨';
    position: absolute;
    left: -42px;
    top: 20px;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Pricing Cards */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.pricing-card.featured {
    transform: scale(1.02);
    border: 3px solid var(--primary-color);
}

.pricing-card:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-soft-hover);
}

.plan-name {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.price {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 1rem 0;
}

.price span {
    font-size: 1.2rem;
    color: #666;
}

.features-list {
    text-align: left;
    margin: 2rem 0;
    list-style: none;
}

.features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.features-list li::before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.features-list li.disabled {
    color: #ccc;
}

.features-list li.disabled::before {
    content: '✗ ';
    color: #ccc;
}

/* Target Audience */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-item {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.audience-item:hover {
    transform: translateY(-4px);
}

.audience-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Communities Section */
.communities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.community-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.community-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft-hover);
    border-color: var(--primary-color);
}

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

.community-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.community-badge.featured {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.community-info {
    flex: 1;
}

.community-info h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.community-meta {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.community-level {
    flex-shrink: 0;
}

.level-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.level-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.community-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stat-icon {
    font-size: 1.3rem;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.stat-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.community-description {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.community-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--light-bg);
    color: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.community-btn {
    display: block;
    text-align: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1A5490, #2C3E50);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.community-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #2C3E50, #1A5490);
}

.community-btn.featured {
    background: linear-gradient(135deg, #C0392B, #A04000);
    color: white;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.4);
}

.community-btn.featured:hover {
    background: linear-gradient(135deg, #A04000, #C0392B);
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-soft-hover);
    transform: translateX(3px);
}

.faq-question {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-answer {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--primary-color);
}

/* Screenshot Section */
.screenshot-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 3px solid var(--primary-color);
}

.community-screenshot {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.screenshot-caption {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    text-align: center;
}

.screenshot-caption p {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin: 0;
}

.screenshot-caption strong {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 80px 5%;
    margin-top: 80px;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 5%;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    nav .logo {
        font-size: 1.3rem;
    }

    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    h2 {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .communities-grid {
        grid-template-columns: 1fr;
    }

    .community-card {
        padding: 1.5rem;
    }

    .content {
        margin: 40px auto;
        padding: 2rem 5%;
    }

    .screenshot-container {
        padding: 1rem;
    }

    .screenshot-caption p {
        font-size: 0.95rem;
    }
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 999;
    font-size: 1.5rem;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Floating CTA (always visible) */
.floating-cta {
    position: fixed;
    top: 50%;
    right: -56px; /* slight offscreen so rotated ribbon sits on edge */
    z-index: 1002; /* above nav + back-to-top */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), #C0392B);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-align: center;
    text-transform: none;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.35);
    border: 2px solid rgba(255,255,255,0.18);
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    transition: box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.floating-cta:hover {
    box-shadow: 0 18px 45px rgba(255, 107, 53, 0.60);
    background: linear-gradient(135deg, #FF7A3D, #B71C1C);
    filter: saturate(1.05);
}

.floating-cta:focus-visible {
    outline: 3px solid rgba(0, 78, 137, 0.35);
    outline-offset: 4px;
}

@media (max-width: 768px) {
    /* Reserve space so sticky CTA doesn't cover content */
    main {
        padding-bottom: calc(110px + env(safe-area-inset-bottom, 0px));
    }

    .floating-cta {
        /* Mobile: horizontal sticky CTA (better usability, no overlap) */
        top: auto;
        right: auto;
        left: 50%;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        padding: 12px 18px;
        font-size: 0.95rem;
        transform: translateX(-50%) translateY(10px);
        text-transform: none;
        letter-spacing: 0.2px;
        text-align: center;
        /* more visually centered on mobile */
        background: #FF6B35;
        box-shadow: 0 14px 35px rgba(255, 107, 53, 0.42);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
    }

    .floating-cta.visible {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%);
    }

    .back-to-top {
        right: 16px;
        /* keep above the sticky CTA */
        bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 420px) {
    .floating-cta {
        width: calc(100% - 32px);
        max-width: 360px;
        font-size: 0.92rem;
        padding: 12px 14px;
    }
}

/* Content / Utility (previously in subpages) */
.content {
    max-width: 900px;
    margin: 80px auto;
    padding: 3rem 5%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.content h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.content h2 {
    color: var(--secondary-color);
    text-align: left;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    margin: 2rem 0 1rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.content h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.content h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

p, li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.info-block {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.info-block p {
    margin-bottom: 0.5rem;
}

.info-block strong {
    color: var(--secondary-color);
}

.content a,
.content p,
.content li {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
}

.back-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}


