body {
    font-family: Arial, sans-serif;
    background: url('bg.jpg') center/cover no-repeat;
    color: #fff;
    margin: 0;
    padding: 0;
}

header {
    padding: 50px;
    text-align: center;
}

#podcast-description {
    padding: 20px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.8); 
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);

}
#podcast-description h2 {
    font-family: 'Chelsea Market', serif; 
    font-size: 2rem; 
    color: #26801c; 
    margin-bottom: 10px;
    text-align: center;
}
#podcast-description p {
    font-family: Arial, sans-serif; 
    font-size: 1.2rem;
    color: #7d7979; 
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px; 
}

header h1 {
    font-size: 3rem;
    font-family: 'PORT118', sans-serif;
    margin: 0;
}

header p {
    font-size: 1.3rem;
    color: #949191;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #114235;
    position: relative;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    margin-left: 20px;
}

nav a:hover {
    background-color: #ff4500;
    transform: scale(1.1);
    box-shadow: 0 0 10px #ff4500;
}

nav h1 {
    font-size: 1.5rem;
    color: #fff;
    font-family: 'FANTONY', sans-serif;
}

.menu-icons {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    color: white;
}
#nav-links {
    display: flex;
    gap: 20px;
    transition: all 0.3 ease-in-out;
}

#nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

#nav-links a:hover {
    background-color: #ff4500;
    transform: scale(1.1);
    box-shadow: 0 0 10px #ff4500;
}

/*.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-left: 20px;
}

.nav-list a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.nav-list a:hover {
    background-color: #ff4500;
    transform: scale(1.1);
    box-shadow: 0 0 10px #ff4500;
}*/


nav a:first-child {
    margin-left: 0;
}

section {
    padding: 20px;
    text-align: center;
}

.episodes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.episode {
    background-color: #111;
    padding: 10px;
    border-radius: 10px;
    width: 300px;
}

.episode:hover {
    transform: scale(1.05);
}

.episode img {
    width: 100%;
    border-radius: 10px;
}

footer {
    background: #000;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
}

.review, .support {
    margin: 20px 0;
}

.animate-button {
    background-color: #ff4500;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s, background-color 0.3s;
}

.animate-button:hover {
    transform: scale(1.1);
    background-color: #ff6347;
}

#subscribe div a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

#subscribe div a:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

#subscribe div a img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

header h1 {
    color: #2ec91c;
}

header h1 a {
    color: #2ec91c;
    text-decoration: none;
    transition: color 0.3s;
}

header h1 a:hover {
    color: #e31609;
}

#episodes h2 {
    font-family: 'Chelsea Market', serif;
}

#subscribe h2 {
    font-family: 'Chelsea Market', serif;
}

.review h2 {
    font-family: 'Chelsea Market', serif;
}

#support h2 {
    font-family: 'Chelsea Market', serif;
}
#support {
    background-color: #141414;
}

/* Scroll-to-top button */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    opacity: 0.5;
}

#myBtn:hover {
    background-color: #555;
}

#support h2 {
    color: #bd3131;
}
/*.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.bar {
    background-color: white;
    height: 3px;
    width: 25px;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
}*/
/* Hamburger to Close Animation */
/*.bar.close:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.bar.close:nth-child(2) {
    opacity: 0;
}
menu-too


.bar.close:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}*/

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav div {
        display: flex;
        flex-direction: column;
    }

    nav a {
        margin: 5px 0;
    }

    .episodes {
        flex-direction: column;
        align-items: center;
    }

    .episode {
        width: 90%;
    }

    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1rem;
    }
    .menu-icons {
        display: block;
        position: absolute;
        top: 20px;  /* Adjust this value to control vertical positioning */
        right: 20px;
        cursor: pointer;
        font-size: 2rem;
        color: white;
        z-index: 1000;
    }

    #nav-links {
        display: none;
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
        z-index: 999;
    }

    #nav-links.show {
        display: flex;
            }
}


@media (max-width: 480px) {
    nav h1 {
        font-size: 1.2rem;
    }

    .animate-button {
        padding: 8px 16px;
        font-size: 14px;
    }

    #myBtn {
        font-size: 16px;
        padding: 10px;
    }

    footer {
        font-size: 0.8rem;
    }

    header h1 {
        font-size: 2rem;
    }
}
#donate {
    background-color: #114235;
    padding: 50px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

#donate h2 {
    font-family: 'Chelsea Market', serif;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

#donate p {
    margin-bottom: 30px;
    text-align: center;
    font-family: Arial, sans-serif; 
    font-size: 1.2rem;
    color: #fff; 
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
}

.donation-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 30px;
}
.donation-box {
    background-color: #0b6e53;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.donation-box h3 {
    color: #fff;
    margin-bottom: 10px;
}

.crypto-address {
    background: #333;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    word-break: break-word;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.donation-box a {
    display: block;
    padding: 10px 20px;
    margin: 10px auto;
    background: #bd3131;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.donation-box a:hover {
    background: #ff4500;
}
.donation-box p {
    text-align: left;
}
.donation-box img {
    width: 300px;
      height: 300px;
      object-fit: contain;
      
}

.button{
  position:relative;
  display:inline-block;
  margin:20px;
}

.button a{
  color:white;
  font-family:Arial, sans-serif;
  font-weight:bold;
  font-size:19px;
  text-align: center;
  text-decoration:none;
  background-color:#FFA12B;
  display:block;
  position:relative;
  padding:10px 30px;
  
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-shadow: 0px 1px 0px #000;
  filter: dropshadow(color=#000, offx=0px, offy=1px);
  
  -webkit-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  -moz-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
  
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.button a:active{
  top:10px;
  background-color:#F78900;
  
  -webkit-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
  -moz-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3pxpx 0 #915100;
  box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
}

.button:after{
  content:"";
  height:100%;
  width:100%;
  padding:4px;
  position: absolute;
  bottom:-15px;
  left:-4px;
  z-index:-1;
  background-color:#2B1800;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}