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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: #dc2626;
  color: white;
}

.btn-primary:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #333;
  border: 2px solid #333;
}

.btn-secondary:hover {
  background: #333;
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.cookie-popup.hidden {
  display: none;
}

.cookie-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  text-align: left;
}

.cookie-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.cookie-content p {
  margin-bottom: 15px;
  color: #333;
  line-height: 1.6;
}

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

/* Header */
.header {
  background: #000;
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

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

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

.logo-icon {
  width: 30px;
  height: 30px;
}

.logo-text {
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #dc2626;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #000 0%, #4c1d1d 100%);
  color: white;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero-tagline {
  color: #dc2626;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 600px;
}

/* About Section */
.about {
  padding: 100px 0;
  background: #f8f9fa;
  padding-bottom: 0;
}

.about-card {
  background: #000;
  border-radius: 40px;
  padding: 80px 60px;
  color: white;
}

.section-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 60px;
  color: white;
}

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

.about-column p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
}
.about-column-f{
  margin-top: 180px;
}
.about-column-s{
  margin-top: 80px;
}

/* Philosophy Section */
.philosophy {
  padding: 100px 0;
  background: #f8f9fa;
  padding-bottom: 0;
  padding-top: 12px;
}

.philosophy-card {
  background: #000;
  border-radius: 40px;
  padding: 80px 60px;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-item {
  margin-bottom: 40px;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

.philosophy-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.philosophy-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.philosophy-number {
  color: #666;
  font-size: 18px;
  font-weight: 600;
}

.philosophy-title {
  font-size: 28px;
  font-weight: 600;
  color: white;
}

.philosophy-description {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.8;
}

.philosophy-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Shared Impressions Section */
.shared-impressions {
  padding: 100px 0;
  background: #f8f9fa;
  padding-bottom: 0;
  padding-top: 12px;
}

.impressions-card {
  background: #000;
  border-radius: 40px;
  padding: 80px 60px;
  color: white;
}

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

.impression-item {
  text-align: left;
}

.impression-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.impression-description {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: #f8f9fa;
  padding-top: 12px;
}

.testimonials-card {
  background: #000;
  border-radius: 40px;
  padding: 80px 60px;
  color: white;
}

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

.testimonial-item {
  text-align: left;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.testimonial-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #000 0%, #4c1d1d 100%);
  color: white;
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;


 
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info p {
  font-size: 16px;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-legal p {
  font-size: 14px;
  opacity: 0.6;
}

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

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  width: 100%;
}

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

.social-link.twitter {
  background: #1da1f2;
}

.social-link.facebook {
  background: #4267B2;
}

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

.footer-brand {
  text-align: center;

}

.brand-name {
  font-size: 120px;
  font-weight: 300;
  opacity: 0.3;
  letter-spacing: 2px;
  text-transform: lowercase;

  font-family: Montserrat;
font-weight: 600;
font-style: SemiBold;
font-size: 216.77px;
leading-trim: NONE;
line-height: 90%;
letter-spacing: 8%;
text-align: center;
text-transform: capitalize;

}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .impressions-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .philosophy-card {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
      padding: 0 15px;
  }
  
  .nav {
      display: none;
  }
  
  .mobile-menu-btn {
      display: flex;
  }
  
  .hero {
      padding: 100px 0 60px;
      text-align: center;
  }
  
  .hero-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .hero-title {
      font-size: 32px;
  }
  
  .hero-description {
      font-size: 16px;
  }
  
  .about-card,
  .philosophy-card,
  .impressions-card,
  .testimonials-card {
      padding: 40px 30px;
      border-radius: 20px;
  }
  
  .section-title {
      font-size: 40px;
      text-align: center;
      margin-bottom: 40px;
  }
  
  .philosophy-title {
      font-size: 24px;
  }
  
  .impression-title {
      font-size: 20px;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
  }
  
  .footer-links {
      flex-direction: column;
      align-items: center;
      gap: 20px;
  }
  
  .footer-nav {
      justify-content: center;
  }
  
  .brand-name {
      font-size: 60px;
  }
  
  .cookie-content {
      padding: 30px 20px;
  }
  
  .cookie-content h2 {
      font-size: 24px;
  }
  
  .cookie-buttons {
      flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 28px;
  }
  
  .section-title {
      font-size: 32px;
  }
  
  .philosophy-title {
      font-size: 20px;
  }
  
  .impression-title {
      font-size: 18px;
  }
  
  .brand-name {
      font-size: 40px;
  }
  
  .about-card,
  .philosophy-card,
  .impressions-card,
  .testimonials-card {
      padding: 30px 20px;
  }
}
*{
  opacity: 1 !important;
}

.btn__wrapper{
  display: flex;
  justify-content: center;
}


/* Featured Games Section */
.featured-games {
  padding: 100px 0;
  background: #f8f9fa;
}

.featured-games-card {
  background: #000;
  border-radius: 40px;
  padding: 60px;
}

.games-showcase {
  display: grid;
  grid-template-columns: 3fr 1fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 600px;
}

.game-link {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

.game-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

.game-link:focus {
  outline: 3px solid #dc2626;
  outline-offset: 3px;
}

/* Верхний ряд */
.game-link:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

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

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

/* Нижний ряд */
.game-link:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

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

.game-link:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}

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

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

.game-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(220, 38, 38, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.game-link:hover::after {
  background: rgba(220, 38, 38, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .featured-games-card {
      padding: 40px;
  }
  
  .games-showcase {
      grid-template-columns: 2fr 1fr;
      grid-template-rows: 1fr 1fr 1fr;
      height: auto;
      gap: 15px;
  }
  
  .game-link:nth-child(1) {
      grid-column: 1;
      grid-row: 1;
  }
  
  .game-link:nth-child(2),
  .game-link:nth-child(3) {
      grid-column: 2;
      grid-row: 1 / 3;
      height: 100%;
  }
  
  .game-link:nth-child(4),
  .game-link:nth-child(5) {
      grid-column: 1;
      grid-row: 2 / 4;
      height: 100%;
  }
  
  .game-link:nth-child(6) {
      grid-column: 2;
      grid-row: 3;
  }
}

@media (max-width: 768px) {
  .featured-games-card {
      padding: 30px 20px;
      border-radius: 20px;
  }
  
  .games-showcase {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(6, 200px);
      gap: 15px;
      height: auto;
  }
  
  .game-link {
      grid-column: 1 !important;
      grid-row: auto !important;
      height: 200px !important;
  }
}

@media (max-width: 480px) {
  .featured-games-card {
      padding: 20px 15px;
  }
  
  .games-showcase {
      grid-template-rows: repeat(6, 150px);
  }
  
  .game-link {
      height: 150px !important;
  }
}

.mobile-menu-btn{
  display: none;
}