body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: url('Screenshot 2025-08-03 130642.png');
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-container {
  max-width: 1250px;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  position: absolute;
  top: 0px;
  z-index: 10;
}

/*slider*/
.top-slider {
  width: 100%;
  height: 35px;
  background-color: #23b6f3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-container {
  width: 80vw;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.scroll-list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  animation: scroll 10s linear infinite;
}

.scroll-list li {
  margin-right: 50px;
  color: yellow;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  min-width: 150px;
}

/* Define the scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
    /* Start from the left */
  }

  100% {
    transform: translateX(-50%);
    /* Move by 50% of the width of the list to wrap around */
  }
}

.menu-item {
  display: none;
  width: 100vw;
  background-color: rgba(32, 31, 31, 0.6);
  height: 100vh;
  /* Fixed height */
  overflow-y: scroll;
  z-index: 1;
  position: relative;
}

@media (max-width:850px) {
  .menu-item {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: white;
    font-weight: bold;
  }

  .banner {
    display: none;
  }

  .register,
  .login {
    display: none;
  }

  .logo {
    margin-left: 20px;
  }

  .menu-icon-container {
    visibility: visible !important;
    position: absolute;
    left: 20px;
  }

  .nav-menu {
    display: none !important;
  }

  .slider-track img {

    height: 200px;

  }
}


.menu-icon-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  background-color: #f2f2f2;
  visibility: hidden;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 12px;
  cursor: pointer;
}

.menu-icon div {
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}


.top-bar {
  background-color: #e6e9ea;
  color: white;
  padding: 0px;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.logo-bar {
  margin: 5px;
}

.logo {
  height: 50px;
}

.thank-you {
  font-size: 1rem;
  color: gold;
  font-weight: bold;
  margin-left: 10px;
}

.banner {
  margin: 1px 0;
}

.banner-img {
  width: 100%;
  max-width: 500px;
  height: 70px;
}

.auth-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 10px 0;
}

.register,
.login {
  background-color: #0077cc;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.register:hover,
.login:hover {
  background-color: #f0f0f0;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #23b6f3;
  padding: 15px 0;
  gap: 20px;
  position: sticky;
  top: 0%;
  z-index: 10;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-weight: bold;
  width: 80px;
  text-align: center;
}

.nav-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

.main-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
}

.main-section h1 {
  color: #1e9ce8;
  font-size: 1.8rem;
  text-align: center;
}

.featured {
  width: 100%;
  border: #23b6f3 solid;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  overflow: hidden;
}

.featured img {
  width: 100%;
  height: 100%;

  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 153, 255, 0.2);
  object-fit: cover;

}

.slider-container {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  width: fit-content;
}

.slider-track img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00c3ff;
  animation: slide 20s linear infinite;
  z-index: 1;
}

/* Scroll one image width at a time */
@keyframes slide {
  0% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(-270px);
    /* 250 + 20 */
  }

  100% {
    transform: translateX(-2700px);
  }
}



/* table */
.article-body {
  font-family: Arial, sans-serif;
  margin: 20px;
  width: 90%;
  background-color: #f0f0f0;
  color: #007bff;
}

.content-box {
  border: 1px solid #1ea2f5;
  padding: 20px;

  margin: auto;
  background: #f0f0f0;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
  border-radius: 6px;
}

.content-title {
  margin-top: 0;
  font-size: 20px;
  color: #007bff;
  border-bottom: 1px dashed #a6d5ff;
  padding-bottom: 10px;
}

.outline {
  list-style-type: disc;
  padding-left: 20px;
  color: #007bff;
}

.outline li {
  margin: 10px 0;
}

.outline ul {
  list-style-type: disc;
  padding-left: 20px;
}

.outline li strong {
  font-weight: bold;
}


/*after Table*/
.cockfighting-section {
  background: #f0f0f0;
  margin: auto;
  border-radius: 6px;
}

.cockfighting-section h2 {
  color: #1ea2f5;
  font-size: 24px;
  margin-bottom: 15px;
  text-align: center;
}

.cockfighting-section p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.cockfighting-section p strong {
  font-weight: bold;
}

.image-caption {
  text-align: center;
  margin-top: 20px;
}

.image-caption img {
  width: 100%;
  max-width: 600px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.image-caption p {
  margin-top: 8px;
  font-size: 14px;
  color: #000;
}


/* after first paragraph of after table */

.cockfight-info {
  background: #f0f0f0;
  padding: 10px;
  margin: auto;
}

.top-label {
  background-color: #e0e0e0;
  font-style: italic;
  text-align: center;
  padding: 8px 10px;
  margin-bottom: 20px;
  border-radius: 4px;
  color: #444;
  font-size: 14px;
}

.cockfight-info p {
  font-size: 16px;
  line-height: 1.7;
  margin: 15px 0;
}

.cockfight-info h3 {
  color: #1ea2f5;
  font-size: 20px;
  margin-top: 30px;
}

.cockfight-info h4 {
  color: #158dcf;
  font-size: 17px;
  margin-top: 25px;
}

.cockfight-info strong {
  font-weight: bold;
}


/* smooth transition section */

.section-block {
  background: #f0f0f0;
  margin: auto;
  padding: 10px;
}

.label-box {
  background-color: #e0e0e0;
  font-style: italic;
  text-align: center;
  padding: 10px;
  margin-bottom: 25px;
  color: #444;
  border-radius: 4px;
  font-size: 14px;
}

.section-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 15px;
}

.section-block h3 {
  color: #1ea2f5;
  margin-top: 30px;
  font-size: 18px;
}

.section-block strong {
  font-weight: bold;
}

.image-caption {
  text-align: center;
  margin-top: 25px;
}

.image-caption img {
  width: 100%;
  max-width: 600px;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.image-caption p {
  margin-top: 8px;
  font-size: 14px;
  color: #000;
}




/* CEO Card */
.ceo-card {
  background: #f0f0f0;
  padding: 30px;
  box-shadow: 0 0 30px rgba(0, 140, 255, 0.3);
  border-radius: 10px;
}

.ceo-card h2 {
  color: #2196f3;
  text-align: center;
  margin-bottom: 20px;
}

.ceo-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ceo-image img {
  width: 200px;
  height: auto;
  border: 2px solid #00bfff;
  border-radius: 10px;
}

.ceo-info {
  flex: 1;
}

.ceo-info ul {
  list-style: none;
  padding-left: 0;
}

.ceo-info li {
  margin-bottom: 8px;
}



/* Footer */

.site-footer {
  background-color: #0099ff;
  color: white;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer-container-title {
  width: 80%;
  border: 3px solid yellow;
  border-radius: 10px;
  text-align: center;
  color: yellow;
  margin-bottom: 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.footer-column-content-box {
  border: 3px solid yellow;
  border-radius: 10px;
  padding: 0px;
  margin: 10px;

}

.footer-column-content-box h3 {
  color: yellow;
  text-align: center;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column ul li {
  margin: 6px 0;
}

.footer-column a {
  color: yellow;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #eee;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .ceo-container {
    flex-direction: column;
    align-items: center;
  }

  .ceo-image img {
    width: 100%;
    max-width: 250px;
  }

  .footer-column {
    text-align: center;
  }
}