/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 40px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-dot {
  width: 8px;
  height: 8px;
  background-color: #90ee90;
  border-radius: 50%;
}

.nav-title {
  font-size: 20px;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 60px;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #90ee90;
}

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

.nav-toggle span {
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 140px 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.hero-left {
  max-width: 500px;
}

.hero-subtitle {
  color: #cccccc;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 80px;
  font-weight: 300;
  line-height: 0.85;
  margin-bottom: 40px;
}

.hero-number {
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  font-weight: 300;
}

.hero-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-joystick {
  width: 280px;
  height: auto;
}

.hero-right {
  text-align: right;
  max-width: 300px;
  margin-left: auto;
}

.hero-tagline {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-number-big {
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
}

.hero-number-big span {
  color: #90ee90;
  font-size: 60px;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.hero-card {
  background-color: #2a2a2a;
  border-radius: 16px;
  padding: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-5px);
}

.hero-card-community {
  background: linear-gradient(135deg, #2d1b69, #663399);
  position: relative;
}

.card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.card-content {
  position: relative;
  z-index: 2;
}

.hero-card-innovation {
  background-color: #90ee90;
  color: #000000;
}

.innovation-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.hero-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

.hero-card p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
  font-weight: 400;
}

.stars {
  color: #ffd700;
  font-size: 20px;
  margin-bottom: 20px;
}

/* About Section */
.about {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.gamepad-with-sparkles {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}





.about-person {


}

.about-text h2 {
  font-size: 64px;
  font-weight: 300;
  margin-bottom: 40px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 24px;
  font-weight: 300;
}

/* Games Section */
.games {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.games h2 {
  font-size: 64px;
  font-weight: 300;
  margin-bottom: 80px;
  text-align: left;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.game-card {
  background-color: #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  align-items: stretch;
}

.game-card:hover {
  transform: translateY(-8px);
}

.game-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.game-info h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #ffffff;
}

.game-info p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.5;
  font-weight: 300;
}

.game-image-container {
  width: 280px;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Testimonials Section */
.testimonials {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: 64px;
  font-weight: 300;
  margin-bottom: 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.testimonial {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-content p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  font-size: 14px;
  color: #888888;
  font-weight: 400;
}

/* Community Section */
.community {
  padding: 120px 40px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.community h2 {
  font-size: 64px;
  font-weight: 300;
  margin-bottom: 32px;
}

.community p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 60px;
  line-height: 1.6;
  font-weight: 300;
}

.cta-button {
  background-color: #B9E853;
  color: #000000;
  border: none;
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #7dd87d;
  transform: translateY(-2px);
}

/* Games Ticker */
.games-ticker {
  background-color: #B9E853;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-block;
  animation: ticker 30s linear infinite;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}

.ticker-content span {
  margin: 0 30px;
}

@keyframes ticker {
  0% {
      transform: translate3d(100%, 0, 0);
  }
  100% {
      transform: translate3d(-100%, 0, 0);
  }
}

/* Footer */
.footer {
  background-color: #0f0f0f;
  padding: 80px 40px 20px;
  position: relative;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-contact p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 12px;
  font-weight: 300;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #90ee90;
}

.footer-social p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 24px;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}



.social-link:hover {
  transform: scale(1.1);
}



.footer-copyright {
  text-align: center;
  border-top: 1px solid #333333;
  padding-top: 40px;
  margin-bottom: 80px;
}

.footer-copyright p {
  font-size: 14px;
  color: #888888;
  font-weight: 300;
}

.footer-brand {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.footer-brand h3 {
  font-size: 120px;
  font-weight: 200;
  color: #333333;
  letter-spacing: -2px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background-color: #2a2a2a;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-popup.hide {
  transform: translateY(100px);
  opacity: 0;
}

.cookie-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 500;
}

.cookie-content p {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 300;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.cookie-accept {
  background-color: #90ee90;
  color: #000000;
}

.cookie-decline {
  background-color: #ff4444;
  color: #ffffff;
}

.cookie-settings {
  background-color: transparent;
  color: #cccccc;
  border: 1px solid #666666;
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav {
      padding: 0 20px;
  }
  
  .hero,
  .about,
  .games,
  .testimonials,
  .community {
      padding-left: 20px;
      padding-right: 20px;
  }
  
  .footer-content {
      padding-left: 20px;
      padding-right: 20px;
  }
}

@media (max-width: 968px) {
  .nav-menu {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background-color: #1a1a1a;
      flex-direction: column;
      justify-content: start;
      align-items: center;
      padding-top: 50px;
      transition: left 0.3s ease;
      z-index: 999;
  }

  .nav-menu.active {
      left: 0;
  }

  .nav-toggle {
      display: flex;
  }

  .hero-content {
      grid-template-columns: 1fr;
      gap: 60px;
      text-align: center;
  }

  .hero-right {
      text-align: center;
      margin-left: 0;
  }

  .hero-title {
      font-size: 60px;
  }

  .hero-number-big {
      font-size: 60px;
  }

  .hero-cards {
      grid-template-columns: 1fr;
      gap: 30px;
  }

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

  .about-text h2,
  .games h2,
  .testimonials h2,
  .community h2 {
      font-size: 48px;
  }

  .games-grid {
      grid-template-columns: 1fr;
  }

  .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
  }

  .footer-brand h3 {
      font-size: 80px;
  }
}

@media (max-width: 640px) {
  .hero {
      padding: 120px 20px 80px;
  }

  .hero-title {
      font-size: 40px;
  }

  .hero-number-big {
      font-size: 48px;
  }

  .hero-number-big span {
      font-size: 32px;
  }

  .about,
  .games,
  .testimonials,
  .community {
      padding: 80px 20px;
  }

  .about-text h2,
  .games h2,
  .testimonials h2,
  .community h2 {
      font-size: 36px;
  }

  .hero-joystick {
      width: 200px;
  }

  .about-person {
      width: 200px;
  }

  .about-gamepad {
      width: 100px;
  }

  .footer {
      padding: 60px 20px 20px;
  }

  .footer-brand h3 {
      font-size: 60px;
  }

  .cookie-popup {
      left: 10px;
      right: 10px;
      bottom: 10px;
      padding: 20px;
  }

  .cookie-buttons {
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 32px;
  }

  .hero-number-big {
      font-size: 40px;
  }

  .hero-number-big span {
      font-size: 28px;
  }

  .about-text h2,
  .games h2,
  .testimonials h2,
  .community h2 {
      font-size: 28px;
  }

  .hero-joystick {
      width: 160px;
  }

  .about-person {
      width: 160px;
  }

  .about-gamepad {
      width: 80px;
  }

  .footer-brand h3 {
      font-size: 48px;
  }

  .testimonial {
      flex-direction: column;
      text-align: center;
      gap: 20px;
  }

  .testimonial-avatar {
      align-self: center;
  }

  .hero-cards {
      gap: 20px;
  }

  .hero-card {
      padding: 24px;
  }

  .game-image-container {
      height: 200px;
  }

  .game-info {
      padding: 24px;
  }

  .nav {
      padding: 0 15px;
  }

  .footer-content {
      padding-left: 15px;
      padding-right: 15px;
  }
}







/* Games Grid Section */
.games-grid-section {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.games-grid-section h2 {
  font-size: 64px;
  font-weight: 300;
  margin-bottom: 60px;
  text-align: left;
  color: #ffffff;
}

.games-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;

}

.game-item {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}



.game-large {
  position: relative;
}

.game-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.game-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.game-link:hover .game-thumbnail {
  transform: scale(1.05);
}

/* Mini Games Grid (Top Right) */
.game-mini-grid {
  background-color: #2a2a2a;
  padding: 10px;
}

.mini-games-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 100%;
}

.mini-game-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.mini-game-link:hover {
  transform: scale(1.05);
}

.mini-game-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .games-layout {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto auto;
      height: auto;
      gap: 15px;
  }
  
  .game-item {
      height: 250px;
  }
  
  .game-mini-grid {
      height: 300px;
  }
}

@media (max-width: 640px) {
  .games-grid-section {
      padding: 80px 20px;
  }
  
  .games-grid-section h2 {
      font-size: 48px;
      margin-bottom: 40px;
  }
  
  .games-layout {
      gap: 10px;
  }
  
  .game-item {
      height: 200px;
  }
  
  .game-mini-grid {
      height: 250px;
      padding: 8px;
  }
  
  .mini-games-container {
      gap: 8px;
  }
}


/* Emoji Builder Section */
.emoji-builder-section {
  background-color: #0f0f0f;
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.emoji-builder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.emoji-builder-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.emoji-app-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.emoji-app-image:hover {
  transform: scale(1.02);
}

.emoji-builder-text {
  color: #ffffff;
}

.emoji-builder-text h2 {
  font-size: 64px;
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.1;
}

.emoji-builder-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 24px;
  font-weight: 300;
}

.emoji-play-btn {
  background-color: #90ee90;
  color: #000000;
  border: none;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  text-decoration: none;
}

.emoji-play-btn:hover {
  background-color: #7dd87d;
  transform: translateY(-2px);
}

.emoji-play-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
  .emoji-builder-content {
      grid-template-columns: 1fr;
      gap: 50px;
      text-align: center;
  }
  
  .emoji-builder-text h2 {
      font-size: 48px;
  }
}

@media (max-width: 640px) {
  .emoji-builder-section {
      padding: 80px 20px;
  }
  
  .emoji-builder-content {
      gap: 40px;
  }
  
  .emoji-builder-text h2 {
      font-size: 36px;
      margin-bottom: 24px;
  }
  
  .emoji-builder-text p {
      font-size: 15px;
      margin-bottom: 20px;
  }
  
  .emoji-play-btn {
      padding: 16px 32px;
      font-size: 15px;
  }
}