* {
  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/premium.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;
}




/* Features Section */
#features {
  display: flex;
  justify-content: space-around;
  padding: 3rem 2rem;
  background-color: #0f141f;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature {
  text-align: center;
  flex: 1;
  padding: 1.5rem;
  background: #2a2a2a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 1px solid #333;
  transition: transform 0.3s, box-shadow 0.3s;
}



.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #4caf50;
}

.feature p {
  color: #b0b0b0;
  font-size: 0.9rem;
}




/* 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;
  align-items: center;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}


.about  img{
width: 50%;
}

.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;
}






/* Legends Section */
.legends {
  padding: var(--spacing-lg) 0;
  background-color:  #141c2f;;
}

.legends h2 {
  font-size: 30px;
  margin-bottom: var(--spacing-lg);
  text-align: center;
  color: #00d8ff;
  margin-bottom: 20px;
}

.legends-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.timeline-content {
  background-color: var(--color-bg-tertiary);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius);
  text-align: center;
}

.timeline-content img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 2px;
  object-fit: cover;
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.era {
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.achievement {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}


