header {
    text-align: center;
    background-color: black;
    padding-bottom: 60px;
}

body {
    background-color: black;
    margin: 0;
    overflow-x: hidden;  
    font-family: 'Bebas Neue', sans-serif;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/Christmas_BG.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

/*#AtR_Title {
    margin-top: -20px;
}*/

header, ul {
    position: relative;
    z-index: 1;
    
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  
  padding: 20px 0;
  background-color: black;
  margin-top: 40px;
}

p { 
    color: rgb(255, 255, 255);
    font-size: 30px;
}

h1 {
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 50px;
    text-decoration: none;
    text-decoration-color: none;
    margin-top: -10px;
    font-family: 'Orbitron', sans-serif;
}

h2 {
    color: white;
    text-align: center;
    align-items: center;
}

h3 {
    color:white
}

nav {
    margin-top: -60px;
    position: sticky;
    top: 0;
    background-color: black;
    width: 100%;
    padding: 0 10px;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    
}
/*Rybo Addition*/
.nav-links {
    display: flex;
    flex-wrap: nowrap;
    text-wrap: nowrap;
    text-decoration: line-through;
    /*text-decoration-color: rgb(250, 110, 0);*/
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    gap: 5px;
    justify-content: space-evenly;
}

.link {  
    text-wrap: nowrap;           
    font-size: 20px;
    color: rgb(255, 255, 255);
    padding: 20px;
    gap: 10px;
    text-decoration: none;
}

.link:hover {
    background-color: rgb(250, 110, 0);
}

.link:active {
    background-color: rgb(250, 110, 0);
}

.nav-photo{
    display: block;
    
}

.nav-photo:hover{
    transform: rotateY(180deg)
}

/*ul {   
    background-size: 100%;
    width: 100vw; 
    min-width: 30vw;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: relative;          
    left: 0;
}

li {
    flex: 1 1 200px;     
    font-size: 20px;
    color: white;
    padding: 5px 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
}*/

#LogoImg:hover {
    transform: rotateY(180deg);
}

.atr-imgs {
    margin-top: 10px;
    
}

.atr-socials {
    margin-left: 0;
    padding: 20px;
    font-size: 30px;

}

.teams-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 0 40px;
    flex-wrap: wrap;
}
  
.team {
    text-align: center;
    color: white;
}
  
.team h2 {
    color: white;
    margin-bottom: 20px;
}
  
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
}

.team-grids {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.cc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
  justify-items: center;
  padding: 20px;
}

.staff-card {
  width: 280px;
}

.image-container {
  position: relative;
  width: 100%;
  height: 350px;
  border: 3px solid rgb(250, 110, 0);
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.popup-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 14px 18px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
  font-size: 14px;
  margin-top: 10px;
}

.popup-text strong {
  display: block;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 6px;
  text-align: center;
}

.popup-text p {
  margin: 0;
  font-size: 13.1px;
  text-align: justify;
  padding:0 10px;
   
}

.image-container:hover .popup-text {
  opacity: 1;
}
   
.player-card h3 {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 8px;
}
  
.player-card img {
    max-width: 280px;
    width: 100%;
    aspect-ratio: 7/10;
    border-radius: 8px;
    object-fit: cover;
    border: 3px solid rgb(250, 110, 0);    
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
    
}

.social-media {
    position: relative;
    z-index: 2;
    align-items: center;
    text-align: center;
}

.cc-socials, .gaming-socials {
    font-size: 25px;
    font-family: 'Orbitron', sans-serif;
}

.socials .social-link {
    font-size: 20px;
    color: rgb(255, 255, 255);
    text-decoration: underline;
    text-decoration-color: white;
    font-family: 'Bebas Neue', sans-serif;
}
  
.social-link img {
    margin: auto;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    height: 80px;
}

.socials{
    display: flex;
    column-gap: 80px;
    row-gap: 40px;
    width: 70%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px auto;
    align-items: flex-end;
}

.left-section {
    color: white;
    font-size: 25px;
    width: 50%;

    padding: 20px;
    box-sizing: border-box;
}

.right-section {
    font-size: 25px;
    color: white;
    width: 50%;
    padding: 15px;
    box-sizing: border-box;
}

.comp-container {
    display: flex;
    justify-content: center;
    align-items: center; 
    padding: 20px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.video-left{
    margin-top: 40px;
}

.video-left iframe {
  border-radius: 12px;
}

.mission-state p {
  color: rgb(255, 255, 255);
  font-size: 24px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Bebas Neue', sans-serif;
}

@media (min-width: 992px) {
  .container {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }

  .mission-state p {
    text-align: left;
  }
}

.mission-state {
  width: 100%;
  text-align: center;
  padding: 10px;
}

.slidebox-container {
    width: 100%;  
    overflow: hidden;
    white-space: nowrap;
    position: relative; 
    margin-top: -15px;
    margin-bottom: -20px;
}

.left-box,
.right-box {
    font-size: 25px;
    color: rgbrgb(250, 110, 0);
    display: inline-block;
    white-space: nowrap;
    padding: 10px 0;
    animation: slide-left 5s linear infinite;
}

.spacer {
    display: inline-block;
    width: 20vw;
}

.founder-section {
    padding: 40px 20px;
    color: rgb(255, 255, 255);
}
  
.founder-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}
  
.founder-img {
    width: 425px;
    height: auto;
    border-radius: 12px;
    border: 3px solid rgb(250, 110, 0);
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
}
  
.founder-text {
    flex: 1;
    min-width: 300px;
}
  
.founder-text h2 {
    font-size: 35px;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}
  
.founder-text p {
    font-size: 2.2rem;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1.6;
    text-align: center;
}

@keyframes slide-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.clips-of-the-week {
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Orbitron', sans-serif;
}
  
.clips-of-the-week h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}
  
.clips-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.clip-card {
    max-width: 350px;
    text-align: center;
    z-index: 2;
}
  
.clip-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}
  
.clip-card iframe {
    border-radius: 8px;
    border: 3px solid rgb(250, 110, 0);
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
}

/*
.suiter {
    text-align: left;
    margin-top: 55px;
    margin-left: 35px;
    margin-right: 300px;
}*/

.slideshow-container {
    position: relative;
    width: 600px;
    height: 400px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 100px;
    overflow: hidden;
    border-radius: 12px;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 1;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.player-of-week {
    text-align: center;
    padding: 40px 20px;

    color: #ffffff;
}
  
.player-of-week h2 {
    font-family: 'Orbitron', sans-serif; 
    font-size: 2rem;
    margin-bottom: 30px;
}
  
.week-players {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
  
.player-cards {
    text-align: center;
    max-width: 200px;
}
  
.player-cards h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}
  
.player-cards img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    border: 3px solid rgb(250, 110, 0);
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
    object-fit: cover;
}

.merch-section {
    align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 40px 20px;
  font-family: 'Orbitron', sans-serif;
}

.merch-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  
}

.merch-item {
  max-width: 300px;
  width: 100%;
  text-align: center;
  
}

.merch-item img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  border: 3px solid rgb(250, 110, 0);  
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 10px;
  background-color: white;
}

.merch-item h3,
.merch-item p {
  font-family: 'Bebas Neue', sans-serif;
  color: #ffffff;
}

/* PROFILE CSS */

.body-flex{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

#profile-main{
    margin-top: 120px;
}

#profile-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px;
    gap: 20px;
}

#profile-description-div{
    flex-grow: 1;
}

#profile-picture{
    width: 300px;
    border: 3px solid rgb(250, 110, 0);
    border-radius: 8px;
    aspect-ratio: 7/10;
    object-fit: cover;
}

#profile-name{
    font-size: 35px;
    font-family: 'Orbitron', sans-serif;
    color: white;
}

#profile-role{
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.6;
    color: white;
    margin-bottom: 10px;
}

#profile-text{
    width: 90%;
    margin: 0 auto;
    min-height: 250px;
}

#profile-description{
    font-size: clamp(.8rem, 1.2vw, 1.4rem);
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1.6;
    color: #ffffff;
}

#profile-socials{
    display: flex;
    gap: 10px;
    margin-left: 5px;
}

.social-button{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    border: rgb(250, 110, 0) solid 1px;
    padding: 2px 12px;
    border-radius: 15px;
}

.social-button img{
    filter: brightness(0) invert(1);
}

.social-button div{
    font-family: Orbitron;
    font-weight: 600;
    font-size: 12px;
}

#youtube-button{
    width: 25px;
}

#twitch-button{
    width: 15px;
}

#tiktok-button{
    width: 20px;
}

#x-button{
    width: 13px;
}

.social-button:hover{
    opacity: 85%;
}

.social-button:active{
    opacity: 75%;
}

#profile-creator-content{
    margin: 100px 0;
}

.content-header{
    color: white;
    text-decoration: none;
    margin-bottom: 60px;
}

.platform-container{
    margin-bottom: 40px;
}

.card-container{
    display: flex;
    width: 90%;
    margin: 0 auto;
    justify-content: space-evenly;
}

.yt-card{
    width: 28%;
    text-decoration: none;
}

.yt-card:hover{
    transform: scale(1.05);
}

.yt-thumbnail{
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    border: rgb(250, 110, 0) solid 2px;
    border-radius: 5px;
    box-sizing: border-box;
}

.twitch-card{
    width: 28%;
    text-decoration: none;
}

.twitch-card:hover{
    transform: scale(1.05);
}

.twitch-thumbnail{
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    border: rgb(250, 110, 0) solid 2px;
    border-radius: 5px;
    box-sizing: border-box;
}

.tiktok-card{
    width: 28%;
    text-decoration: none;
    padding: 0 3%;
    box-sizing: border-box;
}

.tiktok-card:hover{
    transform: scale(1.05);
}

.tiktok-thumbnail{
    aspect-ratio: 28/37;
    width: 100%;
    object-fit: cover;
    border: rgb(250, 110, 0) solid 2px;
    border-radius: 5px;
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
}

.vid-title{
    font-size: 1.8vw;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    margin: 10px 0;
    padding: 0 2px;
}

.cc-grid a{
    text-decoration: none;
}

@keyframes scale{
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.05);
    }
}


/* MOBILE USAGE */

@media (max-width: 1100px){
    .staff-grid{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 725px){
    .staff-grid{
        grid-template-columns: 1fr;
    }

    iframe{
        width: 90vw;
        height: calc(90vw / 16 * 9);
    }

    .founder-content{
        flex-direction: column;

    }

    .founder-text{
        text-align: justify;
    }
}

@media (max-width: 480px){
    .nav-links{
        gap: 0;
    }

    .link{
        font-size: 18px;
        padding: 10px;
    }

    .nav-photo{
        display: none;
    }

    .staff-grid{
        grid-template-columns: 1fr;
    }

    .player-cards img{
        width: 150px;
        height: 150px;
    }

    .week-players{
        gap: 20px;
    }

    .socials{
        column-gap: 30px;
        row-gap: 30px;
    }
}

#tsparticles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -10; 
  top: 0;
  left: 0;
}

.discord-float-icon {
  position: fixed;
  bottom: 20px;   
  left: 20px;     
  z-index: 1000;  
  padding: 12px 20px;
  border-radius: 50px;
  animation: bounce 2s infinite;
  transition: background-color 0.3s ease;
  width: 20%;
}

.discord-float {
  background-color: #5865F2;
  position: absolute;
  bottom: 30px;
  color: white;
  font-weight: bold;
  font-family: sans-serif;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  z-index: 1000;
  animation: bounce 2s infinite;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.discord-float:hover {
  background-color: #404EED;
}

.discord-fixed{
    display: flex;
    top: 64px;
    flex-direction: column;
    position: sticky;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.discord-widget-float iframe{
    border-radius: 10px;
    display: block;
    width: 100%;
    height: calc(100vh - 64px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 999;
}
/*
*{
    border: white solid 1px;
}
*/
.content-main{
    display: flex;
    margin-bottom: 40px;
}

.creator-right-side{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.highlight {
    color: rgb(250, 110, 0);
    font-weight: bold;
}

footer{
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(250, 110, 0);
    
}

.footer-credit{
    text-align: center; 
    display: inline;
    color: rgb(255, 255, 255); 
    font-size: 0.9rem; 
    padding: 20px 0;
}

.footer-socials{
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-icon {
    width: 24px; 
    height: 24px; 
    object-fit: contain; 
    transition: opacity 0.2s ease;
}

.footer-icon:hover{
    opacity: 75%;
}

/*
@keyframes slide-pause {
    0% {
        transform: translateX(0%);
      }
      80% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(-100%);
      }
}*/


/* ===== 🎃 Halloween Pumpkin Hunt Game Styles ===== */

#pumpkin-game {
  text-align: center;
  color: orange;
  font-family: 'Creepster', cursive;
  background-color: #0b0b0b;
  padding: 40px 0;
  overflow: hidden;
}

.title {
  font-size: 2.5rem;
  text-shadow: 0 0 10px orange;
}

.subtitle {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #ffb347;
}

#game-container {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background: radial-gradient(#1a1a1a, #000);
}

.pumpkin {
  position: absolute;
  width: 70px;
  height: auto;
  cursor: pointer;
  transition: top 2s ease, left 2s ease, transform 0.2s ease;
}

.pumpkin:hover {
  transform: scale(1.2);
}

#scare-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0.95), #000);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.scare-text {
  color: white;
  font-size: 8rem;
  text-shadow: 0 0 30px red;
  animation: flicker 1s infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

#reset-btn {
  background: orange;
  color: black;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
}

#reset-btn:hover {
  background: #ffb347;
}


/* ===== Mobile Responsive Styles ===== */
@media screen and (max-width: 768px) {

  #game-container {
    height: 60vh; /* smaller container for phones */
  }

  .pumpkin {
    width: 50px; /* smaller pumpkins on mobile */
  }

  .title {
    font-size: 1.8rem; /* smaller title */
  }

  .subtitle {
    font-size: 1rem; /* smaller subtitle */
  }

  #reset-btn {
    padding: 8px 20px;
    font-size: 1rem;
  }

  .scare-text {
    font-size: 5rem; /* smaller scare text for phones */
  }
}

.halloween-btn {
  display: block;
  margin: 30px auto;
  padding: 14px 28px;
  font-size: 1.2rem;
  font-family: "Bebas Neue", sans-serif;
  color: black;
  background: orange;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
  transition: all 0.3s ease;
}

.halloween-btn:hover {
  background: darkorange;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 69, 0, 0.8);
}

@keyframes pulse {
  0% { box-shadow: 0 0 15px rgba(255, 140, 0, 0.5); }
  50% { box-shadow: 0 0 25px rgba(255, 69, 0, 0.8); }
  100% { box-shadow: 0 0 15px rgba(255, 140, 0, 0.5); }
}

.halloween-btn {
  animation: pulse 2s infinite;
}

