@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Edu+AU+VIC+WA+NT+Dots:wght@400..700&family=Sacramento&family=Science+Gothic:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Edu+AU+VIC+WA+NT+Dots:wght@400..700&family=Righteous&family=Sacramento&family=Science+Gothic:wght@100..900&display=swap');

html, body {
  height: 100%;
    overflow: auto;
}

body{
    background-color: white;
    color: black;
    font-family: "EB Garamond", sans-serif;
   font-weight:600;
   font-style: normal;
    overflow: auto;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}
.marquee {
    width: 100%;
    background: black;
    color:white;
    padding: 0 ;
    overflow: hidden;
    white-space: nowrap;
    top: 0;
    left: 0;
    z-index: 2000;
    box-sizing: border-box;
    height: 19px;
}
.marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 12s linear infinite;
    font-size: 14px;
    letter-spacing: 1px;
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}
.logo {
    position: fixed;
    width: 50px;
    height: auto;
    top: 10px;
    left: 10px;
    z-index: 1000;
     margin: 0;
     padding: 0;
}
.nav-links {
    list-style-type: none;
    display: flex;
    margin:20px;
    padding: 0;
    width: auto;
    height: 100%;
    gap: 1.2rem;
    justify-content: flex-end;
    font-size: 80%;
}


.nav-links a {
    text-decoration: none;
    color: black;
}

.nav-links a:hover {
    color: green;
    text-shadow: 1px 1px 5px forestgreen;
}
.container {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    padding: 0 15px;
    }

.cover {
    width: 40%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 20px;
    padding: 20px auto;
}
.stream-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
    
}
h1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
    color: black;
    padding: 50px;  
}
p {
    font-size: 16px;
    color: black;
    line-height: 1.5;
    margin-bottom:10px;
    text-align: center;
}
.video-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
}


.video-center video {
  width: 80%;
  max-width: 720px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  background-color: black;
}



.yt-link {
  margin-top: 14px;
}

.yt-link img {
  width: 36px;
  height: 36px;
  display: block;   
}

.footer {
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size:10px;
}
.ball {
    width: 30px;
    height: 30px;
    background: rgb(255, 0, 0);
    border-radius: 50%;
    position: fixed;
   

    animation: moveX 6s linear infinite alternate,
               moveY 4s ease-in-out infinite alternate;
}

/* Horizontal movement */
@keyframes moveX {
    from { left: 0; }
    to   { left: calc(100vw - 30px); }
}

/* Vertical bouncing (jump-like) */
@keyframes moveY {
    0%   { top: 0; }
    50%  { top: calc(100vh - 30px); }
    100% { top: 0; }
}


@media (max-width: 600px) {
    .cover {
        width: 90%;
        padding: 10px;
    }
}
     .meta {
        font-size: 14px;
        color: black;
        margin-bottom: 20px 20px;
        text-align: center;
    }

    audio {
    width: 30%;           /* corrected width */
    display: block;
    margin: 20px auto;    /* centers audio */
    padding: 20px -20px;
    border: 10px solid black;
    border-radius: 10px 10px 10px 10px;
    background-color: black;
}
    .description {
        margin-top: 10px;
        line-height: 1.65;
        font-size: 14px;
        color: black;
    }

    .tag-box {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .tag {
        background-color: white;
        color: black;
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 12px;
    }