body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #3f4242;
  color: #f5f5f5;
  scroll-behavior: smooth;
}

.hero {
  text-align: left;
  padding: 100px 100px;
  position: relative;
  overflow: hidden;
  background: #232b2b;
  margin-bottom: 30px;
  margin-top: 30px;
}


.Ki10_LOGO {
	width: 75px;
}

.DISCORD_LOGO, .YOUTUBE_LOGO, .TIKTOK_LOGO, .X_LOGO {
	width: 35px;
	padding-top: 5px;
}


.mascot {
  position: absolute;
  right: 50px;
  bottom: -100px;
  width: 400px;
  animation: shake 5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(-1deg); }
  100% { transform: translate(1px, 1px) rotate(0deg); }
}



.SocialBar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #232b2b;
}

.SocialBar li {
  float: left;
  padding-right: 15px;
  padding-left: 15px;
}

.SocialBar li a {
	display: block;
  color: white;
  text-align: center;
  padding: 5px 5px;
  text-decoration: none;
}


.PageBar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 0px 0px 25px 25px;
}

.PageBar li {
  float: left;
  padding-left: 15px;
}

.PageBar li a {
  display: block;
  color: ; #232b2b
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.PageBar li a:hover:not(.active) {
  background-color: #232b2b;
}




.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  background-color: #232b2b;
  padding: 10px;
}

.grid-container > div {
  background-color: #f1f1f1;
  color:#000;
  padding: 10px;
  font-size: 30px;
  text-align: center;
}

.grid-container-team {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  background-color: #232b2b;
  padding: 10px;
}

.grid-container-team > div {
  background-color: #f1f1f1;
  color:#000;
  padding: 10px;
  font-size: 30px;
  text-align: center;
}

/* place in row 1 column 3 */
.item1 {grid-area: 1 / 1;}

/* place in row 2 column 3 */
.item2 {grid-area: 1 / 2;}

/* place in row 1 column 1 */
.item3 {grid-area: 1 / 3;}

/* place in row 1 column 2 */
.item4 {grid-area: 1 / 1;}

/* place in row 2 column 1 */
.item5 {grid-area: 1 / 2;}

/* place in row 2 column 2 */
.item6 {grid-area: 1 / 3;}

/* place in row 2 column 1 */
.item7 {grid-area: 1 / 1;}

/* place in row 2 column 2 */
.item8 {grid-area: 1 / 2;}




.content-section {
  padding: 100px 100px;
  background: #232b2b;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(50px);
}

footer {
  text-align: center;
  padding: 20px;
  background: #232b2b;
  font-size: 0.9rem;
  color: #999;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes mascotPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.parallax-layer {
  position: absolute;
  will-change: transform;
}

.logo-layer {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.mascot-layer {
  bottom: 0;
  right: 30px;
  z-index: 1;
}


