    html, body {
      height: 100%;
      margin: 0;
      padding: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: black;
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Title logo at the very top */
    .title-logo {
      margin: 40px 20px 30px;
      max-width: 90%;
    }

    .title-logo img {
      width: 100%;
      max-width: 600px;     /* Adjust this if your title.png is bigger/smaller */
      height: auto;
    }
	
	.patreon-btn {
	  display: inline-block;
	  background: linear-gradient(135deg, #f96854, #e84c3d);
	  color: white;
	  font-family: system-ui, sans-serif;
	  font-size: 1.1rem;
	  font-weight: 600;
	  padding: 14px 32px;
	  border-radius: 50px;
	  text-decoration: none;
	  box-shadow: 0 6px 20px rgba(233, 76, 61, 0.35);
	  transition: all 0.3s ease;
	  margin-bottom: 30px;
	}

	.patreon-btn:hover {
	  transform: translateY(-3px);
	  box-shadow: 0 12px 30px rgba(233,76,61,0.5);
	}
	
	.spotify{
	margin-bottom: 25px;	
		
	}

    /* Main content area with episodes */
    .main-content {
      flex: 1;
      width: 100%;
      max-width: 1000px;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .episodes {
      width: 100%;
      margin-bottom: 50px;
    }

    .episode {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 25px;
      backdrop-filter: blur(5px);
    }
	
	.episode-title {
	  text-align: center;

	}

    .episode-title a {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: #ff3366;
      text-align: center;
	  text-decoration: none;
	  margin-bottom: 50px;
    }
	
	.episode-title a:hover{
	text-decoration: underline;
	}

    .platforms {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
    }

    .platforms a:hover {
      transform: scale(1.15);
      transition: transform 0.3s;
    }

.platforms img {
    height: 40px;
    width: auto;
    max-width: 120px;        /* ← crucial line */
    object-fit: contain;     /* ← keeps logo from getting distorted */
}

/* Optional: make them even tighter on very small screens */
@media (max-width: 480px) {
    .platforms img {
        height: 36px;
        max-width: 100px;
    }
    .platforms { gap: 18px; }
}

    /* Merch at the bottom */
    .merch img {
      height: 65px;
      border: 3px solid white;
      border-radius: 10px;
      transition: transform 0.3s;
    }

    .merch img:hover {
      transform: scale(1.1);
    }

    /* Mobile adjustments */
    @media (max-width: 600px) {
      .title-logo { margin: 30px 10px 20px; }
      .platforms img { height: 35px; }
      .merch img { height: 35px; }
      .episode-title { font-size: 1.3em; }
    }
	
	.show-notes{
	margin: 20px;
		
	}