/* CSS Variables */
:root {
  --bg-primary: #0d0c11;
  --gold-primary: #e5b80b;
  --fire-primary: #ff422b;
  --text-light: #ffffff;
  --text-gold: #e5b80b;
  --text-muted: #888888;
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(229, 184, 11, 0.2);
  --shadow-gold: 0 4px 20px rgba(229, 184, 11, 0.3);
  --shadow-fire: 0 4px 20px rgba(255, 66, 43, 0.3);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

.fire-text {
  color: var(--fire-primary);
  text-shadow: 0 0 20px rgba(255, 66, 43, 0.8);
}

.gold-text {
  color: var(--gold-primary);
  text-shadow: 0 0 20px rgba(229, 184, 11, 0.8);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(13, 12, 17, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--card-border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
 
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Teko', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(229, 184, 11, 0.5);
}

.logo-icon {
  margin-right: 8px;
  font-size: 32px;
  animation: flicker 2s infinite alternate;
}

.logo-text {
  transition: var(--transition);
}

.nav-logo:hover .logo-text {
  text-shadow: 0 0 20px rgba(229, 184, 11, 0.8);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gold-primary);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d0c11 0%, #1a1520 50%, #2d1810 100%);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 12, 17, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
   padding-top:200px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: #cccccc;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Teko', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-shadow: 0 0 15px rgba(229, 184, 11, 0.6);
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button {
  display: inline-block;
  position: relative;
  padding: 15px 40px;
  background: linear-gradient(45deg, var(--gold-primary), #f5c842);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: var(--transition);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.cta-button:hover .button-glow {
  left: 100%;
}

.hero-flames {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(0deg, var(--fire-primary), transparent);
  opacity: 0.3;
  animation: flame-dance 3s ease-in-out infinite alternate;
}

/* Featured Preview Section */
.featured-preview {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #1a1520 100%);
}

.preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.preview-images {
  position: relative;
  height: 400px;
}

.preview-img {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.floating {
  top: 0;
  left: 0;
  animation: float 3s ease-in-out infinite;
}

.floating-delayed {
  top: 50px;
  right: 0;
  animation: float 3s ease-in-out infinite 1s;
}

.floating-slow {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: float 4s ease-in-out infinite 2s;
}

.preview-text h2 {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
  font-family: 'Teko', sans-serif;
}

.preview-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #cccccc;
}

/* Games Section */
.games-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1520 0%, var(--bg-primary) 100%);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.title-icon {
  display: inline-block;
  margin-right: 15px;
  font-size: 3.5rem;
  vertical-align: middle;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-primary);
}

.game-image {
  position: relative;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.play-icon {
  font-size: 3rem;
  color: var(--gold-primary);
  text-shadow: 0 0 20px rgba(229, 184, 11, 0.8);
}

.game-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--fire-primary);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-info {
  padding: 20px;
}

.game-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gold-primary);
}

.game-description {
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.game-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(229, 184, 11, 0.1);
  color: var(--gold-primary);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  border: 1px solid rgba(229, 184, 11, 0.3);
}

/* Game Mechanics Section */
.mechanics-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.mechanics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.mechanic-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
}

.mechanic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-primary);
}

.mechanic-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
}

.mechanic-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mechanic-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold-primary);
}

.mechanic-card p {
  color: #cccccc;
  line-height: 1.6;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #1a1520 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 20px;
}

.about-stats {
  margin-top: 30px;
}

.about-stat {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.stat-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--gold-primary);
}

.stat-text {
  color: #cccccc;
  font-weight: 500;
}

.about-image {
  text-align: center;
}

.about-img {
  width: 100%;
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #1a1520 0%, var(--bg-primary) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-primary);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold-primary);
}

.feature-card p {
  color: #cccccc;
  line-height: 1.6;
}

/* Gaming Tips Section */
.tips-section {
  padding: 80px 0;
  background: rgba(255, 66, 43, 0.05);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.tip-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  transition: var(--transition);
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-fire);
  border-color: var(--fire-primary);
}

.tip-number {
  position: absolute;
  top: -15px;
  left: 30px;
  background: var(--fire-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Teko', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.tip-card h3 {
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 15px;
  margin-top: 10px;
}

.tip-card p {
  color: #cccccc;
  line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-section {
  padding: 60px 0;
  background: rgba(255, 66, 43, 0.1);
  border-top: 1px solid rgba(255, 66, 43, 0.3);
  border-bottom: 1px solid rgba(255, 66, 43, 0.3);
}

.disclaimer-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--fire-primary);
}

.disclaimer-content p {
  color: #cccccc;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 0;
  border-top: 1px solid var(--card-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Teko', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-primary);
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-link {
  text-decoration: none;
  color: #cccccc;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--gold-primary);
}

.footer-right p {
  color: #888888;
  font-size: 0.9rem;
}

/* Game Page Styles */
.game-page {
  padding-top: 90px;
  min-height: 100vh;
}

.game-header {
  text-align: center;
  padding: 40px 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1520 100%);
}

.game-title-page {
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.game-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 30px;
}

.back-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--gold-primary);
  text-decoration: none;
  border-radius: 25px;
  transition: var(--transition);
  font-weight: 500;
}

.back-button:hover {
  background: var(--gold-primary);
  color: #000;
  transform: translateY(-2px);
}

.game-container {
  padding: 40px 0;
}

.game-frame {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.game-frame iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid var(--card-border);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-primary);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--text-light);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px rgba(229, 184, 11, 0.2);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, var(--gold-primary), #f5c842);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Static Pages */
.static-page {
  padding-top: 90px;
  padding-bottom: 60px;
  min-height: calc(100vh - 150px);
}

.static-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid var(--card-border);
}

.static-content h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--gold-primary);
  text-align: center;
}

.static-content h2 {
  font-size: 1.8rem;
  margin: 30px 0 20px;
  color: var(--gold-primary);
}

.static-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #cccccc;
}

.static-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.static-content li {
  margin-bottom: 10px;
  color: #cccccc;
}

/* Animations */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes flame-dance {
  0% { transform: translateY(0) scaleX(1); }
  100% { transform: translateY(-10px) scaleX(1.1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .preview-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .game-frame iframe {
    height: 400px;
  }
  
  .game-title-page {
    font-size: 2.2rem;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .static-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .title-icon {
    font-size: 2.5rem;
  }
  
  .game-frame iframe {
    height: 350px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .preview-images {
    height: 300px;
  }
  
  .preview-img {
    width: 150px;
    height: 150px;
  }
}