/* Variables */
:root {
  --primary: #FFD700; /* Taxi Yellow */
  --secondary: #333333; /* Dark Gray */
  --accent: #666666; /* Medium Gray */
  --light: #FFFFFF;
  --text: #222222;
  --background: #F8F8F8;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: var(--secondary);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
}

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

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: var(--light);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Crect width='400' height='200' fill='%23333333'/%3E%3Cpath d='M0 100L400 100' stroke='%23FFD700' stroke-width='10' stroke-dasharray='20'/%3E%3C/svg%3E");
  background-size: cover;
  height: 85vh;
  display: flex;
  align-items: center;
  color: var(--light);
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--text);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #E5C100;
  color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary);
  margin: 0.5rem auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary);
  color: var(--primary);
}

.service-content {
  padding: 1.5rem;
}

/* About */
.about {
  background: #f5f5f5;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1 1 500px;
}

.about-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

/* Games */
.games {
  background: var(--secondary);
  color: var(--light);
}

.games .section-title {
  color: var(--light);
}

.game-container {
  max-width: 800px;
  margin: 0 auto;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.game-card {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.game-card:hover {
  background: rgba(255,255,255,0.2);
}

.game-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.game-card a {
  color: var(--light);
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
}

.game-card a:hover {
  color: var(--primary);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-info {
  background: var(--secondary);
  color: var(--light);
  padding: 2rem;
  border-radius: 10px;
}

.contact-info h3 {
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--secondary);
  color: var(--light);
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 60px;
  margin-right: 15px;
}

.footer-logo span {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
}

.copyright {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--secondary);
    padding: 1rem 0;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    margin: 0.5rem 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
}
