/* Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600&display=swap');

:root {
  /* Base Colors */
  --primary-bg: #f8f9fa;          /* Light gray background */
  --secondary-bg: #ffffff;         /* Pure white for cards */
  --accent-1: #ff6b35;            /* Vibrant orange (flame) */
  --accent-2: #00a8e8;            /* Electric blue */
  --text-dark: #2d3436;           /* Dark gray for text */
  --text-light: #636e72;          /* Lighter gray for secondary text */
  
  /* Special Effects */
  --glow: 0 0 15px rgba(255, 107, 53, 0.3);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Example of how to implement in your existing CSS */
body {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--text-dark);
}

h1, h2, h3 {
  color: var(--accent-1);
}

.service-card, .game-card, .project-card {
  background: var(--secondary-bg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent-1);
}

.button {
  background: var(--accent-1);
  color: white;
}

.button:hover {
  background: var(--accent-2);
}

.flame {
  color: var(--accent-1);
  animation: flicker 2s infinite alternate;
}

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  font-size: 18px; /* Increased base font size */
  background-color: #0f0e17;
  color: #fffffe;
  line-height: 1.7; /* Improved readability */
  margin: 0;
  padding: 0;
  position: relative;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #0f0e17;
}

header, section, footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem; /* Increased padding */
}

h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.2rem; /* Larger headings */
}

p {
  font-size: 1.1rem; /* Slightly larger text */
}

/* Header with Animated Flame */
header {
  text-align: center;
  padding: 5rem 1rem;
}

h1 {
  font-size: 5rem;
  margin: 0;
  color: #f25f4c;
  text-shadow: 0 0 10px rgba(242, 95, 76, 0.3);
}

.flame {
  color: #ff8906;
  animation: flicker 2s infinite alternate;
}

.mission p
{
  font-size: 1.8rem;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; text-shadow: 0 0 15px #ff8906; }
}

.tagline {
  font-size: 1.6rem;
  color: #a7a9be;
  margin-top: 1rem;
}

/* Cards */
.service-card {
  background: rgba(31, 31, 46, 0.8);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 137, 6, 0.2);
  display: flex;
  flex-direction: column;
}

.service-content {
  padding: 1.5rem; /* Added consistent padding */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  margin: 0 0 1rem 0;
  color: #ff8906;
  font-size: 1.8rem;
}

.service-content p {
  margin: 0;
  color: #a7a9be;
  line-height: 1.6;
  flex-grow: 1;
}
.service-grid, .game-grid, .project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card, .game-card, .project-card {
  background: rgba(31, 31, 46, 0.8);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 137, 6, 0.2);
}

.service-card:hover, .game-card:hover, .project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(255, 137, 6, 0.1);
}

.service-card img, .game-card img, .project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}


.game-info, .project-info {
  padding: 1.5rem;
}

.service-card h3, .game-card h3, .project-card h3 {
  margin: 0 0 0.5rem 0;
  color: #ff8906;
  font-size: 1.8rem;
}

.service-card p, .game-card p, .project-card p {
  margin: 0 0 1rem 0;
  color: #a7a9be;
}

.release, .highlight {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 137, 6, 0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Founders Section */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.founder-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.founder-images img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid #ff8906;
}

.founder-images img:nth-child(3) {
  grid-column: span 1;
}

.founder-text {
  font-size: 1.1rem;
}

.founder-text ul {
  padding-left: 1.5rem;
}

.founder-text li {
  margin-bottom: 0.8rem;
}

/* Buttons */
.button {
  display: inline-block;
  background: #ff8906;
  color: #0f0e17;
  padding: 1rem 2rem;
  margin: 0.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.button:hover {
  background: #f25f4c;
  transform: translateY(-2px);
}

/* Footer */
footer {
  text-align: center;
  padding: 4rem 1rem;
  background: rgba(31, 31, 46, 0.8);
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 137, 6, 0.2);
}

.copyright {
  margin-top: 2rem;
  color: #a7a9be;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  .founder-grid {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .service-grid, .game-grid, .project-grid {
    grid-template-columns: 1fr;
  }
}