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

body {
    font-family: 'Inter', sans-serif;
    background: rgba(29, 38, 108, 1);
    color: white;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: unset;
    color: #fff;
}

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

.nav {
    display: flex;
    gap: 2rem;
}

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

.nav a:hover {
    opacity: 0.8;
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 40px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero h1 {
    font-size: 150px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.hero-divider img {
  margin-left: auto;
  margin-right: auto;
  height: 140px;
  display: block;

}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 368px;
  gap: 52px;
  align-items: flex-end;
}

.hero p {
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: rgba(254, 53, 159, 1);
    color: white;
    text-decoration: none;
    padding: 22px 50px;
    border-radius: 60px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 64, 129, 0.3);
}

@media (min-width:1200px){
   .hero-image {
    margin-left: calc((100vw - 1200px) / 2 * -1);
  } 
}

@media (max-width:1200px){
   .hero-image {
    margin-left: -20px;
  } 
}

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

}

/* About Section */
.about {
    padding: 40px 0;
}

.about h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

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

.about-text p {
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.game-categories {
    margin: 3rem 0;
}

.game-categories h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.category {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    color: rgba(254, 53, 159, 1);
    font-weight: bold;
    font-size: 1.2rem;
}

.category-content h4 {
  color: rgba(254, 53, 159, 1);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
}

.category-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

@media (min-width:1200px){
   .about-image {
    margin-right: calc((100vw - 1200px) / 2 * -1);
  } 
}

@media (max-width:1200px){
   .about-image {
    margin-right: -20px;
  } 
}

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

/* Hot Picks Section */
.hot-picks {
    padding: 40px 0;
}

.hot-picks h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.hot-picks-content {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 50px;
  align-items: center;
}

.hot-picks-description {
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.game-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: unset;
    transition: all 0.3s ease;
}

.game-item span {
  display: none;
  padding: 20px;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  color: #fff;
}

.game-item:hover img {
  display: none;
  
}

.game-item:hover {
  background: rgba(254, 53, 159, 1);
}

.game-item:hover span {
  display: block;
}

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

.hot-picks .cta-button {
    display: block;
    width: fit-content;
}

/* Gallery Section */
.gallery {
    padding: 40px 0;
}

.gallery h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

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

.gallery-item {
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

.gallery .cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

h2 {
  line-height: 1.2;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.cta-text p {
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
}

/* Footer */
.footer {
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: unset;
    color: #fff;
}

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

.footer-nav {
    display: flex;
    gap: 2rem;
    row-gap: 16px;
}

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

.footer-nav a:hover {
    opacity: 0.8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #ff4081;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

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

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

main {
  margin-top: 80px;
}

h2 {
  text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content,
    .about-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .about h2,
    .gallery h2 {
        font-size: 2rem;
    }
    
    .hot-picks h2,
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hot-picks-content,
    .hero-bottom {
      grid-template-columns: 1fr;
    }
    .hero-divider img {
      width: 100%;
      height: 56px;
    }
}

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

    
    .hero h1 {
        font-size: 2rem;
    }
    
    .about,
    .hot-picks,
    .gallery,
    .final-cta {
        padding: 60px 0;
    }

}

.policy {
  padding-top: 40px;
  padding-bottom: 60px;
}

.policy h1 {
  font-weight: 800;
  font-size: 60px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media (max-width:768px){
    .policy h1 {
      font-size: 48px;
    }
}

.policy-content {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
}