/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0c0c0c;
  color: #fff;
  line-height: 1.6;
}

header {
  background: #111;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #e00000;
  transition: width 0.3s;
}

.nav-links a:hover {
  color: #e00000;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  min-height: 80vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  background: linear-gradient(145deg, #7a0000, #200000);
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ddd;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #e00000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, background 0.3s;
}

.btn:hover {
  background: #ff1a1a;
  transform: translateY(-3px);
}

.reddev {
  width: 150px;
  border-radius: 20px;
  animation: moveSide 4s infinite alternate ease-in-out;
}

@keyframes moveSide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(150px);
  }
}

.section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 50px;
  background: #1a1a1a;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
}

.section h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #e00000;
  border-bottom: 2px solid #e00000;
  display: inline-block;
  padding-bottom: 5px;
}

.titles-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 20px;
}

.title-card {
  background: #2c2c2c;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 250px;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.title-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
}

.title-card img {
  max-width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 10px;
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.sponsor-logos img {
  height: 80px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.sponsor-logos img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
}

footer {
  text-align: center;
  padding: 25px;
  background: #111;
  margin-top: 50px;
  color: #aaa;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero img {
    margin-top: 20px;
  }

  .titles-container {
    flex-direction: column;
    align-items: center;
  }
}
