/* Import Poppins font */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0e0e0e;
  color: #fff;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #111;
  padding: 20px 0;
  border-bottom: 1px solid #222;
}

header h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #00d1ff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 10px 0 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: 0.3s ease;
}

nav a:hover,
nav a.active {
  background-color: #00d1ff;
  color: #000;
}

/* Hero Section */
.hero {
  background: linear-gradient(120deg, #001f3f, #003f5c);
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  background-color: #00d1ff;
  color: #000;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #00b0cc;
}

/* Features Section */
.features {
  background-color: #181818;
  padding: 60px 0;
  text-align: center;
}

.features h3 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  background-color: #222;
  padding: 25px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0, 209, 255, 0.2);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h4 {
  font-size: 22px;
  color: #00d1ff;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: #ccc;
}

/* Footer */
footer {
  background-color: #111;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #222;
}



.about-hero {
  background: linear-gradient(120deg, #1a1a1a, #2a2a2a);
  padding: 80px 0;
  text-align: center;
}

.about-section {
  background-color: #111;
  padding: 60px 0;
  color: #ccc;
}

.about-section h3 {
  font-size: 24px;
  color: #00d1ff;
  margin-top: 40px;
}

.about-section p {
  font-size: 16px;
  margin: 15px 0;
  max-width: 800px;
}

.custom-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.custom-list li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 10px;
  font-size: 16px;
}

.custom-list li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  color: #00d1ff;
}


.games-hero {
  background: linear-gradient(120deg, #1a1a1a, #2a2a2a);
  padding: 80px 0;
  text-align: center;
}

.games-section {
  background-color: #111;
  padding: 60px 0;
}

.game-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  background-color: #1e1e1e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px #000;
}

.game-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
}

.game-info {
  flex: 1;
  padding: 20px;
}

.game-info h3 {
  font-size: 24px;
  color: #00d1ff;
  margin-bottom: 10px;
}

.game-info p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 10px;
}

.status {
  display: inline-block;
  padding: 6px 12px;
  background-color: #00d1ff;
  color: #000;
  border-radius: 5px;
  font-weight: 600;
}

.team-hero {
  background: linear-gradient(120deg, #1a1a1a, #2a2a2a);
  padding: 80px 0;
  text-align: center;
}

.team-section {
  background-color: #111;
  padding: 60px 0;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  background-color: #1e1e1e;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #00d1ff;
}

.game-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease;
}

.game-card-link:hover {
  transform: scale(1.02);
}

.blog-section {
  padding: 60px 0;
}

.blog-post {
  background-color: #f9f9f9;
  border-left: 4px solid #4a90e2;
  padding: 20px 25px;
  margin-bottom: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.blog-post h3 {
  margin-top: 0;
  font-size: 20px;
  color: #333;
}

.blog-post p {
  color: #555;
  line-height: 1.6;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header-flex,
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.social-icons a {
  margin-left: 12px;
  font-size: 1.2rem;
  color: #555;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #e63946;
}

.about-hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('your-hero-image.jpg') center/cover no-repeat;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.about-section h3 {
  margin-top: 40px;
  color: #2c3e50;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  margin-bottom: 12px;
  padding-left: 1em;
  text-indent: -1em;
}

blockquote {
  background: #f7f7f7;
  border-left: 5px solid #e63946;
  padding: 15px 20px;
  margin: 30px 0;
  font-style: italic;
  color: #555;
}

/* Hero Section with Dark Gradient */
.about-hero {
  background: linear-gradient(to bottom right, rgba(10,10,10,0.9), rgba(25,25,25,0.95)), url('your-hero-image.jpg') center/cover no-repeat;
  color: #f5f5f5;
  padding: 100px 0;
  text-align: center;
}

/* Light and Readable Headings in Dark BG */
h1, h2, h3 {
  color: #f0f0f0;
}

/* Quote box styled for dark mode */
.dark-quote-box {
  background-color: #1e1e1e;
  border-left: 5px solid #e63946;
  padding: 20px;
  margin: 40px 0;
  color: #eee;
  font-style: italic;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.dark-quote-box span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #ff6f61;
}



