* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}
#bannerimage{
    width: 100%;
    background-color: #baff29;
    background: radial-gradient(circle, transparent 20%, #baff29 20%, #baff29 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, #baff29 20%, #baff29 80%, transparent 80%, transparent) 25px 25px, linear-gradient(#5c16c5 2px, transparent 2px) 0 -1px, linear-gradient(90deg, #5c16c5 2px, #baff29 2px) -1px 0; /*https://www.magicpattern.design/tools/css-backgrounds*/
    background-size: 50px 50px, 50px 50px, 25px 25px, 25px 25px;
    min-height: 400px; /*responsive scale of banner image*/
    padding: 40px 5%;
    margin-top: 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#centerbutton {
  background: transparent;
  border: none;
  margin-top: 20px;
}
h1{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
#bannerp{
    color: white;
    font-weight: 800;
    -webkit-text-stroke: 5px #2a0a52;
    paint-order: stroke fill;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
}
a#watchnow{
    display: inline-block;
    width: 150px;
    padding: 16px 0;
    text-align: center;
    color: #fff;
    background: #5c16c5; 
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px; 
    border: 2px solid #baff29; 
    text-decoration: none;
    border-radius: 50px; 
    box-shadow: 0 0 10px rgba(0, 167, 65, 0.2 );
    transition: all 0.3s ease-in-out;
}
a#watchnow:hover{
    background: #baff29;
    color: #000;
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7); 
    transform: translateY(-3px);
}
#live-dot {
    color: #baff29;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
p{
    color:black;
}
/*Video Content*/
/* Section titles (Gaming Content / ASMR Content) */
section {
    background-color: #1a1a1a;
    padding: 60px 5%;
}

section h2 {
    text-align: center;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 16px;
}

section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #baff29;
    border-radius: 2px;
}

/* Updated video-card colors to match theme (overrides the white background) */
.video-card {
    background: #242424;
    box-shadow: none;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(92, 22, 197, 0.4);
}

.video-card h3 {
    color: #baff29;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding: 14px 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/*Navigation*/
#mainnav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1a1a1a;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    z-index: 1000;
}

#nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 5%;
    height: 60px;
}

#nav-links {
    display: flex;
    gap: 8px;
}

#nav-links a {
    color: white;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

#nav-links a:hover {
    background-color: #5c16c5;
    color: #baff29;
}

#nav-links a.active {
    background-color: #baff29;
    color: #1a1a1a;
}

#discord-icon svg {
    color: white;
    transition: color 0.2s ease;
    margin-right: 10px;
}

#discord-icon:hover svg {
    color: #baff29; /* matches your other nav hover states */
}
/* Hamburger button — hidden on desktop */
#hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

#hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #baff29;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    #nav-container {
        justify-content: flex-end;
    }

    #hamburger {
        display: flex;
    }

    #nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #1a1a1a;
        flex-direction: column;
        width: 200px;
        max-height: 0;
        overflow: hidden;
        gap: 0;
        transition: max-height 0.3s ease-in-out;
    }

    #nav-links.open {
        max-height: 300px;
    }

    #nav-links a {
        border-radius: 0;
        padding: 16px 20px;
        text-align: right;
    }
}
/*Footer*/
footer#bgfoot{
    background-color: #baff29;
    display: flex;
    flex-direction: column; /* Stacks the icon div above the <p> tag */
    align-items: center;    /* Centers both horizontally */
    justify-content: center;
    padding: 20px 0;        /* Gives the green bar room to breathe top/bottom */
}
footer#footsocials{
    display: flex;
    justify-content: center;
    align-items: center;

}
footer#bgfoot p{
    margin: 0;
    text-align: center;
}
a{
    text-decoration: none;;
}
.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    /* This triggers the infinite auto-scroll animation (takes 30 seconds for a full pass) */
    animation: autoScroll 30s linear infinite;
}

/* Pause the animation when the user hovers their mouse over the carousel so they can click play */
.carousel-track:hover {
    animation-play-state: paused;
}

.video-card {
    width: 280px;
    flex-shrink: 0;
    background: #5c16c5;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.video-card iframe {
    width: 100%;
    height: 157.5px;
    border: none;
}
.video-thumb {
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: rgba(186, 255, 41, 0.9);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-thumb:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #baff29;
}

/* Keyframes that slide the track leftward */
@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-20%); 
    }
}
