/*Buttons*/
        .article .btn-default {
		padding: 15px 30px;
            font-size: 18px;
		 font-weight: bold;
            cursor: pointer;
            background-color: #e7c271; /* Basisfarbe */
            color: #b68e3b;
            border: none;
            border-radius: 8px;
            text-transform: uppercase; /* Schrift in Großbuchstaben */
            transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
        }

        /* Hover-Effekt */
       .article .btn-default:hover {
            background-color: #ffde7c; /* Hover-Farbe */
            transform: scale(1.1); /* Button wird leicht vergrößert */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schattierung wird hinzugefügt */
        }



/*WALLPAPER*/

    /* Main Grid */
    div.wallpaper-main {
      padding: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    /* Card */
    .wallpaper-card {
      background-color: #1e1e1e;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .wallpaper-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    }
    .wallpaper-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .wallpaper-card h2 {
      font-size: 20px;
      color: #e7c271;
      text-align: center;
      margin: 15px 0;
    }
    .wallpaper-card button {
      display: block;
      width: 80%;
      margin: 10px auto 20px auto;
      padding: 10px;
      font-size: 14px;
      color: #000;
      background-color: #e7c271;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .wallpaper-card button:hover {
      background-color: #d6af5b;
    }

    /* Credits */
 .credit-section {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-left: 8px solid var(--secondary-color);
      border-radius: 5px;
      padding: 20px;
      margin-bottom: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .credit-section:hover {
      transform: translateX(5px);
      box-shadow: 0 0 20px var(--highlight);
    }

    .credit-section h2 {
font-family: 'Orbitron', sans-serif;
      font-size: 1.6em;
      margin-top: 0;
      margin-bottom: 10px;
      color: var(--primary-color);
-webkit-text-fill-color: unset;
    }

    .credit-section p {
      font-size: 1em;
      line-height: 1.5;
      margin: 5px 0;
      color: #bbb;
    }

    /* Unterteilung in zwei Spalten für Desktop */
    .credits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

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


/* Iframe Widget */
    .widget-container {
      width: 100%;
      padding: 20px;
      box-shadow: 0 0 20px var(--shadow-color);
      box-sizing: border-box;
    }
    .widget-container iframe {
      width: 100%;
      height: 190px;
      border: none;
      border-radius: 10px;
      display: block;
    }
