
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #280202;
  color: #fff;
  line-height: 1.7;
}

header {
  background: linear-gradient(90deg, #cb0808, #100101);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  height: 50px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #143b1a;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, #f45a00 0%, #210303 100%);
}

.hero h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  color: #ffffff;
}

.hero-banner {
  margin: 50px auto 0 auto;
  display: flex;
  justify-content: center;
  max-width: 1000px;
}

.hero-banner img {
  width: 100%%;
  height: 100%;
  max-height: 1000px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 10px 4px 12px rgba(0,0,0,0.3);
}

.center {
  margin: 25px auto 0 auto;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.content {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  background: rgb(255 190 0 / 98%);
  border-radius: 12px;
  color: #000;
}

.content h2 {
  color: #ffffff;
  margin-top: 40px;
}

.content p {
  margin-bottom: 20px;
}

.center {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.animated-button {
  position: relative;
  display: inline-block;
  padding: 12px 25px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(90deg, #198b4b, #00b109);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.animated-button:hover {
  background: linear-gradient(90deg, #143b1a, #f9ec35);
  color: #143b1a;
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

.animated-button span {
  position: absolute;
  display: block;
}

.animated-button span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: #f9ec35;
  animation: btn-anim1 2s linear infinite;
}

.animated-button span:nth-child(2) {
  bottom: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: #f9ec35;
  animation: btn-anim2 2s linear infinite;
  animation-delay: 0.5s;
}

.animated-button span:nth-child(3) {
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: #f9ec35;
  animation: btn-anim3 2s linear infinite;
  animation-delay: 1s;
}

.animated-button span:nth-child(4) {
  top: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: #f9ec35;
  animation: btn-anim4 2s linear infinite;
  animation-delay: 1.5s;
}

@keyframes btn-anim1 {
  0% { left: -100%; }
  50%,100% { left: 100%; }
}
@keyframes btn-anim2 {
  0% { bottom: -100%; }
  50%,100% { bottom: 100%; }
}
@keyframes btn-anim3 {
  0% { left: -100%; }
  50%,100% { left: 100%; }
}
@keyframes btn-anim4 {
  0% { top: -100%; }
  50%,100% { top: 100%; }
}

footer {
  background: #d85600;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer a {
  color: #050000;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ff5ad04b;
}

@media (max-width: 768px) {
  /* Banner Mobile */
  .hero-banner {
    max-width: 95%;
  }
  .hero-banner img {
    max-height: 900px;
    border-radius: 4px;
  }

  .center {
    flex-direction: column;
    gap: 15px;
  }
  .animated-button {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}