* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0b0f1a;
  color: #f0f0f0;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header {
  background-color: #141c2f;
  padding: 20px 0;
  border-bottom: 1px solid #1f2a44;
}

header h1 {
  font-size: 28px;
  color: #00d8ff;
}

nav a {
  color: #ccc;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #00d8ff;
}

/* Hero */
.hero {
  background: url("./images/img.avif") no-repeat center center;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.hero .text {
  flex: 1;
}

.hero .text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  
}

.hero .text p {
  font-size: 18px;
  margin-bottom: 30px;
  
}

.hero .image {
  flex: 1;
}

.hero .image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.btn {
  background-color: #00d8ff;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #00aad4;
}

/* Highlights Section */
.highlights {
  background-color: #121829;
  padding: 60px 0;
  text-align: center;
}

.highlights h2 {
  color: #00d8ff;
  margin-bottom: 30px;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.video-grid iframe {
  width: 100%;
  max-width: 400px;
  height: 220px;
  border: none;
  border-radius: 8px;
}

/* Updates */
.updates {
  background-color: #0f141f;
  padding: 50px 0;
  text-align: center;
}

.updates h2 {
  margin-bottom: 25px;
  color: #00d8ff;
}

.updates ul {
  list-style-type: none;
  padding: 0;
}

.updates li {
  margin-bottom: 10px;
  color: #ddd;
  font-size: 16px;
}

/* About */
.about {
  background-color: #141c2f;
  padding: 60px 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about .image {
  flex: 1;
}

.about .image img {
  width: 100%;
  border-radius: 8px;
}

.about .text {
  flex: 1;
}

.about .text h2 {
  margin-bottom: 20px;
  color: #00d8ff;
}

/* Footer */
footer {
  background-color: #101521;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #1c2438;
}

footer p {
  color: #aaa;
}
