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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #080B2A 0%, #2d3561 50%, #1a1f3a 100%);
    color: white;
    overflow-x: hidden;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;


    padding: 1rem 2rem;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
}



.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

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

.nav-links a:hover {
    color: #60a5fa;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-star {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 20px;
  height: 20px;

}



.hero::after {
    content: "";
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 4px;
    height: 4px;
    background: #60a5fa;
    border-radius: 50%;
    box-shadow: 0 0 10px #60a5fa;
}

.hero-content {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-text h1 .highlight {
    color: #60a5fa;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #60a5fa;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;

    border-radius: 20px;
border: 1px solid #43CAFC;
background: linear-gradient(93deg, #15BFFD 2.59%, #0D7297 108.35%);
}

.cta-button:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image .line{
    position: absolute;
    z-index: -1;
    right: -50px;
}


.character-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Fast Play Section */
.fast-play {
    padding: 6rem 2rem;
    position: relative;
}

.fast-play-content {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.speedometer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.speedometer-image {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.fast-play-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.fast-play-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Trending Section */
.trending {
    padding: 4rem 2rem;
}

.trending-content {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.trending-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.trending-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.trending-games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 280px;
}

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

.game-card:nth-child(2) img{
  transform: scale(0.7);
}
.game-card:nth-child(3) img{
  transform: scale(0.7);
}

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

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

/* Game Gallery */
.game-gallery {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.game-star {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 20px;
  height: 20px;
  background-image: url(/wp-content/themes/movelinto/./assets/star.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.gallery-content {
    max-width: 1080px;
    margin: 0 auto;
}

.gallery-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
}

.gallery-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
   
 
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hidden Gems */
.hidden-gems {
    padding: 4rem 2rem;
    position: relative;
}



.hidden-star {
  position: absolute;
  top: 20%;
    right: 10%;
  width: 20px;
  height: 20px;
  background-image: url(/wp-content/themes/movelinto/./assets/star.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.gems-content {
    max-width: 1080px;
    margin: 0 auto;
}

.gems-top-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.gems-bottom-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
}

.gems-bottom-games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 390px;
}
.gems-text{
  max-width: 390px;
}
.gems-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.gems-text p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Footer */
footer {
    background: rgba(26, 31, 58, 0.8);
    padding: 2rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1080px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
}



.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #60a5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: background 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #3b82f6;
}

.copyright {
    text-align: left;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    max-width: 500px;
    margin: 0 auto;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #60a5fa;
    color: white;
}

.cookie-btn.accept:hover {
    background: #3b82f6;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
    }
  
    header nav{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
    }
    .nav-links{
      margin-top: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .hero-text{
     margin-top: 80px;
    }

    .mobile-menu {
        display: none;
    }

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

    .fast-play-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gems-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gems-top-row {
        grid-template-columns: repeat(2, 1fr);
        max-width: 300px;
        margin-bottom: 1.5rem;
    }
   

    .gems-bottom-section {
        grid-template-columns: 1fr;
        text-align: center;
  
    }

    .gems-bottom-games {
        width: 100%;
        max-width: 300px;
        margin: auto 2rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }

    .cookie-popup {
        left: 1rem;
        right: 1rem;
    }

    .cookie-buttons {
        justify-content: center;
    }
    .catalog .hidden-gems{
      margin-top: 110px !important; 
    }
    .catalog .gems-bottom-section{
      margin-left: 0px !important;
   
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    .hero {
        padding: 6rem 1rem 2rem;
    }

    .trending-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trending-games {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Game link styles */
.game-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.catalog .hidden-gems{
  margin-top: 60px;
}
.catalog .gems-text{
 text-align: center;
 margin: 0 auto;
 margin-bottom: 60px;
 max-width: 765px;
}
.catalog .gems-bottom-section{

grid-template-columns: auto 1fr;
margin-left: 200px;
}


.container{
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 100px;
}
.container ul{
  padding-left: 20px;
}
.container h2{
text-align: center;
font-size: 32px;
margin-bottom: 20px;
}
.container p{
margin-bottom: 20px;
}
.container h2{
text-align: center;
font-size: 32px;
margin-bottom: 20px;
}


/* Game Feature Section */
.game-feature {
  padding: 8rem 2rem 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}


.game-feature-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.game-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.game-feature h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.game-feature p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #60a5fa;
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 4rem;

  border-radius: 20px;
border: 1px solid #43CAFC;
background: linear-gradient(93deg, #15BFFD 2.59%, #0D7297 108.35%);
}

.play-button:hover {
  background: #3b82f6;
  transform: translateY(-2px);
}

.game-screenshots {
 display: flex;

  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}

.screenshot {
  border-radius: 4px;
  overflow: hidden;

  transition: transform 0.3s ease;
}
.screenshot1{
  max-width: 430px;
}
.screenshot img{
  width: 100%;
}

.screenshot:hover {
  transform: scale(1.02);
}

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

/* Stars decoration */
.star-1 {
  position: absolute;
  top: 20%;
  left: 5%;
  font-size: 1.2rem;
  color: #60a5fa;
  filter: drop-shadow(0 0 8px #60a5fa);
}

.star-2 {
  position: absolute;
  top: 35%;
  right: 8%;
  font-size: 1rem;
  color: #60a5fa;
  filter: drop-shadow(0 0 8px #60a5fa);
}

.star-3 {
  position: absolute;
  bottom: 30%;
  left: 3%;
  font-size: 0.8rem;
  color: #60a5fa;
  filter: drop-shadow(0 0 8px #60a5fa);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .game-feature {
      padding: 6rem 1rem 4rem;
  }

  .game-screenshots {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      flex-direction: column;
  }
}

@media (max-width: 480px) {
  .game-feature {
      padding: 5rem 1rem 3rem;
  }

  .play-button {
      padding: 1rem 2rem;
      font-size: 1rem;
  }
  .game .game-feature {
    margin-top: 120px;
  }
}
