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

:root {
  --primary-yellow: #F9EA0E;
  --primary-purple: #6B46C1;
  --dark-purple: #2D1B4E;
  --text-white: #FFFFFF;
  --text-gray: #CCCCCC;
  --background-black: #000000;
  --background-dark: #0A0A0A;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-black);
  color: var(--text-white);
  overflow-x: hidden;
}

h1, h2 {
  font-family: 'Baumans', cursive;
}

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

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

.cookie-popup.active {
  display: flex;
}

.cookie-content {
  background: linear-gradient(180deg, #E8E8F5 0%, #D4D4E8 100%);
  padding: 40px 60px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  background: #ECF0FE;
box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
}

.cookie-content h2 {
  font-size: 36px;
  color: #1A1A4E;
  margin-bottom: 20px;
}

.cookie-content p {
  font-size: 16px;
  color: #1A1A4E;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cookie-btn {
  width: 100%;
  padding: 18px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Baumans', cursive;
  transition: transform 0.2s;
}

.cookie-btn:hover {
  transform: scale(1.02);
}

.accept-btn {
  background: linear-gradient(90deg, #F9EA0E 0%, #FFD700 100%);
  color: #1A1A4E;
  margin-bottom: 15px;

  border-radius: 8px;
background: linear-gradient(90deg, #FFFB1E 0%, #FFBF00 100%);

/* M3/Elevation Light/4 */
box-shadow: 0 6px 10px 4px rgba(0, 0, 0, 0.15), 0 2px 3px 0 rgba(0, 0, 0, 0.30);
}

.decline-btn {
  background: transparent;
  border: 2px solid #1A1A4E;
  color: #1A1A4E;

  border-radius: 8px;
border: 2px solid #000;
}

/* Header */
.header {
  background-color: var(--background-black);
  padding: 25px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-white);
  font-size: 26px;
  font-weight: 700;
}

.logo img {
  width: 45px;
  height: 45px;
}

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

.nav a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 17px;
  transition: color 0.3s;
}

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

/* Hero Section - ИЗМЕНЕННАЯ СЕКЦИЯ */
.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1A0B2E 0%, #2D1B4E 40%, #4A2870 70%, #5D3A8C 100%);
  background: url(/wp-content/themes/vekromida/assets/images/bg.png);
  background-size: cover;
  background-position: center;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
      linear-gradient(90deg, rgba(107, 70, 193, 0.1) 1px, transparent 1px),
      linear-gradient(rgba(107, 70, 193, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-robot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: auto;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 900px;
  padding-bottom: 60px;
}

.hero-content {
  width: 100%;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 40px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-white);
  max-width: 420px;
}

.hero-title {
  font-size: 80px;
  line-height: 1;
  color: var(--text-white);
  letter-spacing: 2px;
  text-align: center;
}

.btn-primary {
  background: var(--primary-yellow);
  color: var(--background-black);
  border: none;
  padding: 18px 45px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Baumans', cursive;
  white-space: nowrap;


  border-radius: 8px;
background: linear-gradient(90deg, #FFFB1E 0%, #FFBF00 100%);

/* M3/Elevation Light/4 */
box-shadow: 0 6px 10px 4px rgba(0, 0, 0, 0.15), 0 2px 3px 0 rgba(0, 0, 0, 0.30);
text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 234, 14, 0.3);
}

/* About Section */
.about {
  padding: 120px 0;
  background-color: var(--background-dark);
}

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

.about-text h2 {
  font-size: 70px;
  margin-bottom: 35px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: var(--text-white);
}

.about-text .btn-primary {
  margin-top: 25px;
}

.about-image {

  border-radius: 25px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: auto;
}

/* Top Picks Section */
.top-picks {
  padding: 120px 0;
  background: linear-gradient(180deg, #0A0A0A 0%, #1A0B2E 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.66) 100%), url(/wp-content/themes/vekromida/assets/images/bg2.png) lightgray 50% / cover no-repeat;
  background-size: cover;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.section-header h2 {
  font-size: 52px;
}

.section-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-white);
  margin-bottom: 60px;
}

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

.game-card-large {
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

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

.game-card-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-cards-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-content: start;
}

.game-card-small {
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  aspect-ratio: 1;
}

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

.game-card-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive для Top Picks */
@media (max-width: 768px) {
  .games-grid {
      grid-template-columns: 1fr;
  }

  .game-cards-small {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .game-cards-small {
      grid-template-columns: 1fr;
  }
}

/* Player's Choice Section */
.players-choice {
  padding: 120px 0;
  background-color: var(--background-dark);
}

.players-choice h2 {
  font-size: 52px;
  margin-bottom: 25px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.spotlight-card {
  border-radius: 25px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.spotlight-card:hover {
  transform: scale(1.03);
}

.spotlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Realm Section */
.realm {
  padding: 120px 0;
  background: linear-gradient(180deg, #0A0A0A 0%, #1A0B2E 100%);
}

.realm-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.realm-image {
 
  border-radius: 25px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.realm-image img {
  width: 100%;
  height: auto;
}

.realm-text {
  text-align: left;
}

.realm-text h2 {
  font-size: 52px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.realm-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-white);
  margin-bottom: 35px;
}

/* Footer */
.footer {
  background-color: var(--background-black);
  padding: 80px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.65) 100%), url(/wp-content/themes/vekromida/assets/images/bgfooter.png) lightgray 50% / cover no-repeat;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.footer-left{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-white);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 35px;
}

.footer-logo img {
  width: 45px;
  height: 45px;
}

.footer-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;

  color: #FFF;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

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

.social-links {
  display: flex;
  gap: 18px;
  margin-bottom: 35px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  color: var(--background-black);
}

.social-links a:hover {
  transform: scale(1.15);
}

.copyright {
  font-size: 15px;
  color: var(--text-white);
}

.footer-right {
  text-align: center;
}

.footer-right p {
  font-size: 16px;
  margin-bottom: 18px;
  color: var(--text-white);
}

.footer-right strong {
  color: var(--text-white);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
      padding: 0 30px;
  }

  .hero-robot {
      width: 400px;
  }

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

  .about-text h2 {
      font-size: 56px;
  }
}

@media (max-width: 1024px) {
  .hero-robot {
      width: 350px;
  }

  .about-grid {
      gap: 60px;
  }

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

  .realm-image:first-child {
      order: 1;
  }

  .realm-text {
      order: 2;
  }

  .realm-image:last-child {
      order: 3;
  }
}

@media (max-width: 768px) {
  .nav {
      gap: 25px;
  }

  .nav a {
      font-size: 15px;
  }

  .hero .container {
      min-height: 600px;
      padding-bottom: 40px;
  }

  .hero-robot {
      width: 350px;
  }

  .hero-top {
      flex-direction: column;
      gap: 20px;
  }

  .hero-description {
      max-width: 100%;
  }

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

  .about-grid {
      grid-template-columns: 1fr;
      gap: 50px;
  }

  .about-text h2,
  .section-header h2,
  .players-choice h2,
  .realm-text h2 {
      font-size: 42px;
  }

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

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

  .footer-content {
      grid-template-columns: 1fr;
      gap: 50px;
  }

  .footer-right {
      text-align: left;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 20px;
  }

  .logo {
      font-size: 20px;
  }

  .logo img {
      width: 35px;
      height: 35px;
  }

  .nav {
      display: none;
  }

  .hero .container {
      min-height: 500px;
  }

  .hero-robot {
      width: 280px;
  }

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

  .section-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
  }

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

  .game-card.large {
      grid-row: span 1;
  }

  .cookie-content {
      padding: 30px 20px;
  }

  .cookie-content h2 {
      font-size: 28px;
  }

  .footer-nav {
      flex-direction: column;
      gap: 18px;
  }
}






/* Games Catalog Section */
.games-catalog {
  padding: 120px 0;
  background-color: var(--background-dark);
}

.games-catalog h2 {
  font-size: 56px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.catalog-description {
  font-size: 17px;
  text-align: center;
  color: var(--text-white);
  margin-bottom: 60px;
}

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

.catalog-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

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

.catalog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #8B3FFF 0%, #6B2FD6 100%);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.game-name {
  font-family: 'Baumans', cursive;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  display: block;
  letter-spacing: 1px;
}

.catalog-card:hover .catalog-overlay {
  transform: translateY(0);
}

.catalog-card:hover img {
  transform: scale(1.05);
}

/* Responsive для Catalog */
@media (max-width: 1024px) {
  .catalog-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .games-catalog h2 {
      font-size: 42px;
  }

  .catalog-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }
}

@media (max-width: 480px) {
  .catalog-grid {
      grid-template-columns: 1fr;
  }
}



/* Game Detail Section */
.game-detail {
  padding: 80px 0;
  background-color: var(--background-dark);
}

.game-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

.game-info {
  padding-right: 20px;
}

.game-title {
  font-size: 72px;
  margin-bottom: 15px;
  line-height: 1;
}

.game-genre {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.game-description h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.game-description p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-white);
  margin-bottom: 20px;
}

.btn-play {
  margin-top: 30px;
  border-radius: 8px;
background: linear-gradient(90deg, #FFFB1E 0%, #FFBF00 100%);

/* M3/Elevation Light/4 */
box-shadow: 0 6px 10px 4px rgba(0, 0, 0, 0.15), 0 2px 3px 0 rgba(0, 0, 0, 0.30);
display: inline-block;
}

.game-preview {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: flex-end;
}

.game-preview img {
  width: 60%;
  height: auto;
  display: block;

}

/* About Game Section */
.about-game {
  margin-bottom: 60px;
}

.about-game h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.about-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-white);
  margin-bottom: 20px;
}

.about-features {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.about-features li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-white);
  margin-bottom: 10px;
  padding-left: 0;
}

.about-conclusion {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-white);
  margin-bottom: 30px;
}

/* Game Screenshots */
.game-screenshots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.screenshot {
  border-radius: 25px;
  overflow: hidden;
}

.screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .game-detail-grid {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .game-info {
      padding-right: 0;
  }
  
  .game-title {
      font-size: 56px;
  }
}

@media (max-width: 768px) {
  .game-title {
      font-size: 42px;
  }
  
  .about-game h2 {
      font-size: 36px;
  }
  
  .game-screenshots {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .game-detail {
      padding: 60px 0;
  }
  
  .game-title {
      font-size: 36px;
  }
}