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

body {
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 28px;
  font-weight: 400;
  color: #333;
}

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

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

/* Mobile menu styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  border: none;
  background: transparent;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 999;
  padding: 100px 40px 40px;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
}

.mobile-nav-list li {
  margin-bottom: 30px;
}

.mobile-nav-list a {
  text-decoration: none;
  color: #333;
  font-size: 24px;
  font-weight: 500;
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  color: #2563eb;
}

.mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #333;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.mobile-overlay.active {
  display: block;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 80px 0;
  background: #f8f9fa;
}

.hero-title {
  font-size: 64px;
  font-weight: 400;
  color: #333;
  margin-bottom: 60px;
  line-height: 1.1;
}

.hero-content {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 60px;
  align-items: start;
}

.hero-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  padding-top: 20px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
}

.cta-button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: #1d4ed8;
}

/* Sections */
section {
  padding: 100px 0;
}

h2 {
  font-size: 48px;
  font-weight: 400;
  color: #333;
  margin-bottom: 80px;
  line-height: 1.2;
}

/* Examine Games Section */
.examine-games {
  background: #fff;
}

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

.examine-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

.examine-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.examine-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Features Section */
.features {
  background: #f8f9fa;
}

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

.feature-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.feature-item:hover .feature-image img {
  transform: scale(1.05);
}

.feature-content {
  padding: 30px;
}

.feature-content h3 {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.feature-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

/* Review Process Section */
.review-process {
  background: #fff;
  padding: 100px 0 60px;
}

.review-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}

.review-step {
  text-align: left;
}

.step-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 30px;
}

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

.review-step:hover .step-image img {
  transform: scale(1.05);
}

.review-step h3 {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}

.review-step p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

/* Viewpoints Section */
.viewpoints-section {
  background: #ADFF00;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.viewpoints-content {
  display: grid;
  grid-template-columns: 1fr 500px;
 
  min-height: 300px;
}

.viewpoints-text {
  padding: 50px;
}

.viewpoints-text h3 {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  margin-bottom: 25px;
}

.viewpoints-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.viewpoints-image {
  
  overflow: hidden;
}

.viewpoints-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials */
.testimonials {
  background: #f8f9fa;
}

.testimonials-content {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-item {
  display: grid;
  align-items: center;
  margin-bottom: 60px;
  padding: 50px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}

.testimonial-item.first {
  grid-template-columns: 1fr 200px;
  gap: 50px;
}

.testimonial-item.second {
  grid-template-columns: 200px 1fr;
  gap: 50px;
}

.testimonial-content h4 {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.testimonial-avatar {
  width: 160px;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  background: #f1f5f9;
  padding: 50px 0 30px;
  border-top: 1px solid #e2e8f0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-info p {
  color: #666;
  font-size: 16px;
  margin-bottom: 15px;
}

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

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

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

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
}

.footer-contact {
  border-top: 1px solid #e2e8f0;
  padding-top: 30px;
}

.contact-info {
  display: flex;
  gap: 40px;
  font-size: 16px;
  color: #666;
  justify-content: center;
  align-items: center;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
}

.cookie-content h3 {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}

.cookie-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.cookie-btn {
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.cookie-btn.accept:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.cookie-btn.learn {
  background: transparent;
  color: #2563eb;
  border-color: #2563eb;
}

.cookie-btn.learn:hover {
  background: #2563eb;
  color: white;
}

/* Animations */
.feature-item,
.review-step,
.testimonial-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.feature-item.animate-in,
.review-step.animate-in,
.testimonial-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Loading button state */
button.loading {
  position: relative;
  color: transparent;
}

button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
      transform: rotate(360deg);
  }
}

/* Tablet Responsive */
@media (max-width: 1200px) {
  .container {
      padding: 0 30px;
  }
  
  .hero-title {
      font-size: 56px;
  }
  
  .hero-content {
      grid-template-columns: 500px 1fr;
      gap: 50px;
  }
  
  .examine-content {
      grid-template-columns: 1fr 500px;
      gap: 60px;
  }
  
  h2 {
      font-size: 40px;
      margin-bottom: 60px;
  }
}

@media (max-width: 1024px) {
  .hero-content {
      grid-template-columns: 450px 1fr;
      gap: 40px;
  }
  
  .examine-content {
      grid-template-columns: 1fr 450px;
      gap: 50px;
  }
  
  .viewpoints-content {
      grid-template-columns: 1fr 350px;
  }
  
  .contact-info {
      gap: 30px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
      padding: 0 20px;
  }
  
  .nav {
      display: none;
  }
  
  .mobile-menu-toggle {
      display: flex;
  }
  
  .mobile-nav {
      display: block;
  }
  
  .header-content {
      padding: 15px 0;
  }
  
  .logo-text {
      font-size: 24px;
  }
  
  .hero {
      padding: 60px 0;
  }
  
  .hero-title {
      font-size: 36px;
      margin-bottom: 40px;
  }
  
  .hero-content {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .hero-image {
      height: 250px;
  }
  
  h2 {
      font-size: 32px;
      margin-bottom: 50px;
  }
  
  section {
      padding: 60px 0;
  }
  
  .examine-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .examine-image {
      height: 250px;
  }
  
  .features-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .feature-image {
      height: 200px;
  }
  
  .feature-content {
      padding: 25px;
  }
  
  .review-process {
      padding: 60px 0 40px;
  }
  
  .review-steps {
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 50px;
  }
  
  .step-image {
      height: 200px;
      margin-bottom: 20px;
  }
  
  .viewpoints-content {
      grid-template-columns: 1fr;
  }
  
  .viewpoints-image {
      order: -1;
      height: 200px;
  }
  
  .viewpoints-text {
      padding: 30px 25px;
  }
  
  .testimonial-item.first,
  .testimonial-item.second {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
      padding: 30px;
  }
  
  .testimonial-avatar {
      width: 120px;
      height: 120px;
      margin: 0 auto;
  }
  
  .footer-top {
      flex-direction: column;
      gap: 30px;
      text-align: center;
  }
  
  .footer-social {
      flex-direction: column;
  }
  
  .footer-links {
      justify-content: center;
      gap: 20px;
  }
  
  .contact-info {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }
  
  .cookie-content {
      margin: 0 20px;
      padding: 30px;
  }
  
  .cookie-content h3 {
      font-size: 24px;
  }
  
  .cookie-buttons {
      flex-direction: column;
      gap: 15px;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }
  
  .hero-title {
      font-size: 28px;
  }
  
  h2 {
      font-size: 28px;
  }
  
  .logo-text {
      font-size: 20px;
  }
  
  .hero-text p,
  .examine-text p {
      font-size: 16px;
  }
  
  .feature-content h3,
  .review-step h3,
  .testimonial-content h4 {
      font-size: 20px;
  }
  
  .viewpoints-text h3 {
      font-size: 24px;
  }
  
  .footer-links {
      flex-direction: column;
      gap: 15px;
  }
  
  .cookie-content {
      padding: 25px;
  }
  
  .testimonial-item {
      padding: 25px;
  }
}







.games-catalog {
  background: #fff;
  padding: 100px 0;
}

.games-catalog h2 {
  font-size: 48px;
  font-weight: 400;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.2;
}

.catalog-text {
  margin-bottom: 60px;
  max-width: 1000px;
}

.catalog-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.games-grid {
 display: flex;
 gap: 20px;
 justify-content: center;
}

@media (max-width: 768px) {
  .games-grid {
    flex-direction: column;
   }
}

.game-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.game-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.game-item:hover img {
  transform: scale(1.05);
}

/* Specific positioning based on screenshot */
.game-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.game-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.game-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.game-item:nth-child(4) {
  grid-column: 4;
  grid-row: 1 / 3;
}

.game-item:nth-child(5) {
  grid-column: 1;
  grid-row: 2;
}

.game-item:nth-child(6) {
  grid-column: 2 / 4;
  grid-row: 2;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .games-catalog {
      padding: 60px 0;
  }
  
  .games-catalog h2 {
      font-size: 32px;
      margin-bottom: 30px;
  }
  
  .catalog-text {
      margin-bottom: 40px;
  }
  
  .catalog-text p {
      font-size: 16px;
      margin-bottom: 20px;
  }
  
  .games-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto;
      gap: 15px;
  }
  
  .game-item:nth-child(1),
  .game-item:nth-child(2),
  .game-item:nth-child(3),
  .game-item:nth-child(4),
  .game-item:nth-child(5),
  .game-item:nth-child(6) {
      grid-row: auto;
      grid-column: auto;
  }
  

}

@media (max-width: 480px) {
  .games-catalog h2 {
      font-size: 28px;
  }
  
  .games-grid {
      grid-template-columns: 1fr;
      gap: 15px;
  }
  

}
.games__blocks{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.games__blocks img{
 width: 100%;
}
.games__blocks_second{
  margin-top: 60px;
}
@media (max-width: 480px) {
  .games__blocks_second{
    margin-top: 0px;
  }

}


.spot-differences {
  background: #f8f9fa;
  padding: 100px 0;
}

.spot-differences h2 {
  font-size: 48px;
  font-weight: 400;
  color: #333;
  margin-bottom: 60px;
  line-height: 1.2;
}

.game-showcase {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  margin-bottom: 80px;
  align-items: center;
}

.game-description {
  background: #ADFF00;
  padding: 40px;
  border-radius: 12px;
}

.game-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.play-button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  text-decoration: none;
  text-align: center;
}

.play-button:hover {
  background: #1d4ed8;
}

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

.game-images img {
  width: 50%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

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

.feature-block h3 {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.feature-block p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.controls-section {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.controls-text {
  background: #ADFF00;
  padding: 40px;
  border-radius: 12px;
}

.controls-text h3 {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  margin-bottom: 25px;
}

.controls-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.controls-text ul {
  list-style: none;
  padding: 0;
}

.controls-text li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.controls-text li strong {
  font-weight: 500;
}

.controls-image {
  border-radius: 12px;
  overflow: hidden;
}

.controls-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .spot-differences {
      padding: 60px 0;
  }
  
  .spot-differences h2 {
      font-size: 32px;
      margin-bottom: 40px;
  }
  
  .game-showcase {
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 60px;
  }
  
  .game-description {
      padding: 30px;
  }
  
  .game-images {
      order: -1;
  }
  
  .game-images img {
      height: 200px;
  }
  
  .features-grid {
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 60px;
  }
  
  .controls-section {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .controls-text {
      padding: 30px;
  }
  
  .controls-image {
      order: -1;
  }
  
  .controls-image img {
      height: 200px;
  }
}

@media (max-width: 480px) {
  .spot-differences h2 {
      font-size: 28px;
  }
  
  .game-description {
      padding: 25px;
  }
  
  .controls-text {
      padding: 25px;
  }
  
  .controls-text h3 {
      font-size: 24px;
  }
}