* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0f0f1a;
  color: white;
}

.main {
  min-height: 100vh;
  background-image: url("test 2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0f0f1a;
  background-blend-mode: overlay;
  padding: 10px 20px 20px 20px;
  color: white;
}

.navbar {
  width: 100%;
  height: 75px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #121222;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.icon {
  width: 200px;
  height: 70px;
  display: flex;
  align-items: center;
}

.nav-title a {
  font-size: 20px;
  font-weight: bold;
  color: #00f7ff;
  text-decoration: none;
  line-height: 1;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links ul li a {
  font-size: 16px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  user-select: none;
}

.nav-links ul li a:hover {
  color: #00f7ff;
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #00f7ff;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #0f0f1a;
  transition: right 0.3s ease-in-out;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #00f7ff;
  cursor: pointer;
  user-select: none;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mobile-nav ul li {
  margin: 20px 0;
}

.mobile-nav ul li a {
  font-size: 22px;
  color: white;
  text-decoration: none;
  user-select: none;
  transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
  color: #00f7ff;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 5px 20px;
}

.Content {
  flex: 1;
  position: relative;
  top: -50px;
}

.Content .ok {
  font-family: Cambria, serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.7;
  text-align: justify;
  white-space: normal;

  margin-top: 20px;
}

.side-image {
  flex-shrink: 0;
  position: relative;
  top: -50px;
}

.side-image img {
  width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
  font-size: 12px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 12px 20px;
  position: relative;
  bottom: 0;
  width: 100%;
  font-family: Arial, sans-serif;
}


/* RUNNING TEXT PROMO */
.global-running-text {
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;

  margin-bottom: 40px; /
}

.running-track {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: runningText 19s linear infinite;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

.running-track a {
  color: #00f7ff;
  font-weight: bold;
  text-decoration: none;
}

.running-track a:hover {
  text-decoration: underline;
}

@keyframes runningText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .running-track {
    font-size: 12px;
    animation-duration: 14s;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .content-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .side-image {
    position: relative;
    top: -30px;
    margin-left: auto;
    margin-right: auto;
    order: 2;
  }

  .side-image img {
    width: 98%;
    max-width: 530px;
  }

  .Content {
    position: relative;
    top: -30px;
    order: 1;
  }
}
