:root {
    --primary-red: #e74c3c;
    --primary-blue: #3498db;
    --type-color: #a8a878;
    --text-light: white;
    --bg-light: #f0f0f0;
    --overlay-bg: rgba(0, 0, 0, 0.7);
    --card-radius: 10px;
}

* {
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: Arial, Helvetica, sans-serif;
    word-break: break-all;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: var(--primary-red);
    border-bottom: 1px solid #23232350;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

main {
    flex: 1;
    margin-top: 100px;
    padding: 24px;
    color: #fff
}

section {
    max-width: 1440px;
    margin: 0 auto;
}

footer {
    padding: 24px;
    background-color: #232323;
    color: #fff;
    text-align: center;
}

footer a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

footer a:hover {
    color: #CC0000;
}

a, button, img, .pokemon-card {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

.link-button {
    display: block;
    padding: 8px 16px;
    background-color: #CC0000;
    color: #fff !important;
    width: 50%;
    border-radius: 4px;
    text-align: center;
    margin-top: 16px;
}

button {
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    background-color: #ffffff90;
    transition: all 300ms ease;
}

button:hover {
    transform: scale(1.1);
}

svg {
    background-color: #CC0000;
    color: #fff;
    fill: #fff;
}

.impressum {
    color: #232323;
}

/* Füge dies in deine optimized-style.css ein */
.imprint-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: var(--card-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #333;
  }
  
  .imprint-content h2 {
    color: var(--primary-red);
    margin: 2rem 0 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
  }
  
  .imprint-content a {
    color: var(--primary-blue);
    text-decoration: none;
  }
  
  .imprint-content a:hover {
    text-decoration: underline;
  }

  @media (max-width: 500px) {
    .link-button {
        width: 100%;
    }
  }