.sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border-width: 0;
    }

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: #1f1f1f;
      background: #fef3f2;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Header */
    header {
      background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
      padding: 1.5rem 0;
      box-shadow: 0 2px 12px rgba(244, 63, 94, 0.1);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 2px solid #ffe4e6;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
    }

    .brand h1 {
      font-size: 1.5rem;
      background: linear-gradient(135deg, #f43f5e, #fb7185);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.2;
    }

    .brand-subtitle {
      font-size: 0.6875rem;
      color: #666;
      font-weight: 500;
      letter-spacing: 0.3px;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .amazon-logo {
      font-weight: 700;
      color: #ff9900;
    }



    .header-cta {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .quick-search-btn {
      padding: 0.625rem 1.25rem;
      background: linear-gradient(135deg, #f43f5e, #fb7185);
      color: white;
      border: none;
      border-radius: 999px;
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      white-space: nowrap;
      box-shadow: 0 2px 8px rgba(244, 63, 94, 0.2);
    }

    .quick-search-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
    }

    @media (max-width: 768px) {
      .header-cta {
        width: 100%;
      }
      
      .quick-search-btn {
        width: 100%;
      }
    }

    .hero {
      text-align: center;
      padding: 3rem 0 1rem;
    }

    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .event-countdown-hero {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.875rem 1.5rem;
      background: linear-gradient(135deg, #ffffff 0%, #fff9f9 100%);
      border: 2px solid #fecaca;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(244, 63, 94, 0.15);
      font-size: 0.9375rem;
      margin: 0 auto 1.5rem;
      animation: fadeInScale 0.6s ease-out;
    }

    @keyframes fadeInScale {
      0% {
        opacity: 0;
        transform: scale(0.9) translateY(-10px);
      }
      100% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    @keyframes shake {
      0%, 100% { transform: rotate(0deg); }
      10% { transform: rotate(-10deg); }
      20% { transform: rotate(10deg); }
      30% { transform: rotate(-10deg); }
      40% { transform: rotate(10deg); }
      50%, 100% { transform: rotate(0deg); }
    }

    .event-countdown-hero .event-icon {
      font-size: 1.75rem;
      animation: shake 3s ease-in-out infinite;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

    .event-countdown-hero .event-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.125rem;
    }

    .event-countdown-hero .event-label {
      font-size: 0.75rem;
      color: #666;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .event-countdown-hero .event-info {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
    }

    .event-countdown-hero .event-name {
      font-weight: 700;
      color: #1f1f1f;
      font-size: 1rem;
    }

    .event-countdown-hero .event-time {
      font-weight: 700;
      background: linear-gradient(135deg, #f43f5e, #fb7185);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 1.125rem;
    }

    .event-countdown-hero.urgent {
      border-color: #fca5a5;
      background: linear-gradient(135deg, #fff5f5 0%, #ffe4e6 100%);
      animation: fadeInScale 0.6s ease-out, pulse 2s ease-in-out infinite 1s;
    }

    @media (max-width: 768px) {
      .hero h2 {
        font-size: 1.75rem;
      }

      .event-countdown-hero {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
        gap: 0.625rem;
      }

      .event-countdown-hero .event-icon {
        font-size: 1.5rem;
      }

      .event-countdown-hero .event-name {
        font-size: 0.9375rem;
      }

      .event-countdown-hero .event-time {
        font-size: 1rem;
      }
    }

    .hero-highlight {
      color: #f43f5e;
      position: relative;
      display: inline-block;
    }

    .word-rotator {
      display: inline-block;
      animation: fadeInUp 0.6s ease-in-out;
      transition: all 0.3s ease-in-out;
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .affiliate-notice {
      background: linear-gradient(135deg, #fff5f5, #ffffff);
      border: 1px solid #fecaca;
      border-radius: 8px;
      padding: 0.75rem 1rem;
      margin: 1.5rem auto 0;
      max-width: 600px;
      font-size: 0.8125rem;
      color: #666;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      justify-content: center;
    }

    .affiliate-notice-icon {
      font-size: 1.125rem;
    }

    .affiliate-link {
      color: #f43f5e;
      text-decoration: none;
      font-weight: 600;
    }

    .affiliate-link:hover {
      text-decoration: underline;
    }

    /* Form */
    .gift-form {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin: 2rem 0;
    }

    .form-section {
      margin-bottom: 1.5rem;
    }

    .form-section:last-of-type {
      margin-bottom: 0;
    }

    .form-title {
      font-size: 1rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 700;
      color: #1f1f1f;
    }

    .step-num {
      width: 28px;
      height: 28px;
      background: linear-gradient(135deg, #f43f5e, #fb7185);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 0.875rem;
    }

    .form-grid {
      display: grid;
      gap: 0.875rem;
      grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
      .form-grid {
        grid-template-columns: 1fr 1fr;
      }
      
      .form-grid-triple {
        grid-template-columns: 1fr 1fr 1fr;
      }
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
    }

    label {
      font-weight: 600;
      font-size: 0.8125rem;
      color: #525252;
    }

    select {
      padding: 0.625rem 0.75rem;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      font-size: 0.9375rem;
      background: white;
    }

    input[type="number"] {
      padding: 0.625rem 0.75rem;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      font-size: 0.9375rem;
      background: white;
      width: 100%;
    }

    select:focus,
    input:focus {
      outline: none;
      border-color: #f43f5e;
    }

    .form-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
      margin: 1.25rem 0;
    }

    .btn-submit {
      width: 100%;
      padding: 0.875rem;
      background: linear-gradient(135deg, #f43f5e, #fb7185);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      margin-top: 1.25rem;
      transition: all 0.2s;
      position: relative;
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
    }

    .btn-submit:active {
      transform: translateY(0);
    }

    .affiliate-marker {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
    }

    .affiliate-marker::after {
      content: '*';
      color: #fbbf24;
      font-size: 1.125rem;
      font-weight: bold;
      line-height: 1;
    }

    /* Categories */
    .categories {
      padding: 3rem 0;
    }

    .section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .cat-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .cat-card {
      background: white;
      padding: 1.5rem;
      border-radius: 12px;
      text-decoration: none;
      color: inherit;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: all 0.3s;
      position: relative;
    }

    .cat-card::after {
      content: '*';
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      color: #fbbf24;
      font-size: 1.25rem;
      font-weight: bold;
      opacity: 0.7;
    }

    .cat-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }

    .cat-card:hover::after {
      opacity: 1;
    }

    .cat-emoji {
      font-size: 2.5rem;
      display: block;
      margin-bottom: 0.5rem;
    }

    .cat-title {
      font-weight: bold;
      margin-bottom: 0.5rem;
    }

    .cat-desc {
      font-size: 0.875rem;
      color: #666;
      margin-bottom: 0.5rem;
    }

    .countdown {
      display: inline-block;
      background: linear-gradient(135deg, #f43f5e, #fb7185);
      color: white;
      padding: 0.375rem 0.75rem;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: bold;
      margin-top: 0.5rem;
    }

    .countdown-urgent {
      background: linear-gradient(135deg, #ef4444, #dc2626);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.8; }
    }

    /* Footer */
    .affiliate-disclaimer {
      background: linear-gradient(135deg, #fff5f5, #fef3f2);
      border: 2px solid #fecaca;
      border-radius: 16px;
      padding: 2.5rem;
      margin: 4rem 0 0;
      box-shadow: 0 4px 12px rgba(244, 63, 94, 0.1);
    }

    .disclaimer-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .disclaimer-icon {
      font-size: 2rem;
    }

    .disclaimer-title {
      font-size: 1.5rem;
      font-weight: bold;
      color: #1f1f1f;
    }

    .disclaimer-content {
      line-height: 1.8;
      color: #525252;
    }

    .disclaimer-content p {
      margin-bottom: 1rem;
    }

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

    .disclaimer-content strong {
      color: #f43f5e;
      font-weight: 700;
    }

    .disclaimer-highlight {
      background: white;
      border-left: 4px solid #f43f5e;
      padding: 1rem 1.25rem;
      border-radius: 8px;
      margin: 1.5rem 0;
      font-size: 0.9375rem;
    }

    .disclaimer-list {
      list-style: none;
      padding-left: 0;
      margin: 1rem 0;
    }

    .disclaimer-list li {
      padding-left: 1.75rem;
      margin-bottom: 0.75rem;
      position: relative;
    }

    .disclaimer-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #10b981;
      font-weight: bold;
      font-size: 1.125rem;
    }

    footer {
      background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 100%);
      color: #e0e0e0;
      padding: 4rem 0 2rem;
      margin-top: 4rem;
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #f43f5e, #fb7185, #fbbf24, #10b981, #38bdf8);
    }

    .footer-grid {
      display: grid;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
      }
    }

    .footer-section h3 {
      color: white;
      margin-bottom: 1rem;
      font-size: 1.125rem;
    }

    .footer-section p {
      font-size: 0.875rem;
      line-height: 1.7;
      color: #b0b0b0;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: #b0b0b0;
      text-decoration: none;
      font-size: 0.875rem;
    }

    .footer-links a:hover {
      color: #fb7185;
    }

    .footer-divider {
      height: 1px;
      background: rgba(255,255,255,0.1);
      margin: 2rem 0;
    }

    .footer-bottom {
      text-align: center;
    }

    .footer-credits {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .footer-credits {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
      }
    }

    .copyright {
      font-size: 0.875rem;
      color: #9a9a9a;
    }

    .copyright a {
      color: #fb7185;
      text-decoration: none;
      font-weight: bold;
    }

    .crafted-by {
      font-size: 0.875rem;
      color: #9a9a9a;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .heart {
      color: #a855f7;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      animation: heartbeat 1.5s ease-in-out infinite;
      font-size: 1.25rem;
      min-width: 1.25rem;
    }

    @keyframes heartbeat {
      0%, 100% { 
        transform: scale(1); 
      }
      10% { 
        transform: scale(1.3); 
      }
      20% { 
        transform: scale(1); 
      }
      30% { 
        transform: scale(1.3); 
      }
      40%, 100% { 
        transform: scale(1); 
      }
    }

    .crafted-by strong {
      color: white;
      font-weight: bold;
    }

    .footer-bottom-links {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .footer-bottom-links a {
      color: #8a8a8a;
      text-decoration: none;
      font-size: 0.8125rem;
    }

    .footer-bottom-links a:hover {
      color: white;
    }
    /* ── Event-Kacheln mit zwei Buttons ──────────────────────────────────── */
    .cat-card-event {
      display: flex;
      flex-direction: column;
      cursor: default;
    }
    .cat-card-event:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }
    .cat-card-actions {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-top: 0.875rem;
    }
    .cat-btn {
      display: block;
      padding: 0.5rem 0.75rem;
      border-radius: 8px;
      font-size: 0.8125rem;
      font-weight: 700;
      text-align: center;
      text-decoration: none;
      transition: all 0.2s;
      line-height: 1.3;
    }
    .cat-btn-info {
      background: white;
      border: 2px solid #f43f5e;
      color: #f43f5e;
    }
    .cat-btn-info:hover {
      background: #fff5f5;
    }
    .cat-btn-amazon {
      background: linear-gradient(135deg, #f43f5e, #fb7185);
      color: white;
      border: 2px solid transparent;
    }
    .cat-btn-amazon:hover {
      opacity: 0.88;
    }
    .cat-amazon-hint {
      font-size: 0.75rem;
      color: #f43f5e;
      font-weight: 600;
      margin-top: 0.625rem;
    }
