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

:root {
    --black: #000000;
    --white: #ffffff;
    --pink: rgba(227, 84, 189, 1);
    --purple: #B366CC;
    --cyan: #4DD0E1;
    --yellow: #FFD700;
}

html {
    scroll-behavior: smooth;
}

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

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

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px;
    display: none;
    animation: slideUp 0.3s ease-out;
}

.cookie-modal.active {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.cookie-content h2 {
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cookie-content p {
    
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.cookie-link {
    color: var(--white);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cookie {
    flex: 1;
    min-width: 200px;
    padding: 18px 30px;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-cookie.accept {
    background-color: var(--white);
    color: var(--black);
}

.btn-cookie.accept:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-cookie.refuse {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cookie.refuse:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
}

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

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--pink);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

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

.hero .container {
  position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-image {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

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

.hero-text {
    text-align: left;
        z-index: 2;
    position: relative;
    padding: 80px 40px 40px;
}

.hero-subtitle {
    
    font-size: 24px;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 142px;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: var(--black);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
}

.cta-left,
.cta-right {
    
    font-size: 16px;
    line-height: 1.6;
}

.cta-right {
  margin-top: auto;
}

.cta-center {
    text-align: center;
}

.cta-title {
    font-size: 110px;
    font-weight: 400;
    line-height: 1;

    text-transform: uppercase;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--white);
    color: var(--black);
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    padding: 18px 50px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.3);
}

/* Carousel */
.features {
    padding: 60px 0;
}

.carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: var(--pink);
    border-color: var(--pink);
    transform: scale(1.1);
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    min-width: 350px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

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

.carousel-item h3 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Discover Section */
.discover {
    padding: 60px 0;
    background-color: var(--black);
}

.discover-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
}

.discover-item {
    padding-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.discover-grid img {
    width: 280px;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    object-fit: contain;
    z-index: 2;
    left: 30%;
    opacity: 0.8;
}

.discover-item.center h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 72px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.discover-item.center p {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    text-align: center;
}


.discover-title {
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 2px;
}

.discover-item p {
    
    font-size: 16px;
    line-height: 1.6;
}

/* Bottom CTA */
.bottom-cta {
    padding: 60px 0;
    margin-bottom: -80px;
}

.bottom-cta-content {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
}

.bottom-cta-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-cta-content h2 {
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 120px;
    font-weight: 400;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

/* Footer */
.footer {
    background: var(--pink);
    padding: 60px 0 30px;

}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
}

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

.footer-info {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
    line-height: 1.8;
}

.footer-info a {
  color: #fff;
  text-decoration: none;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--white);
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    
    font-size: 14px;
}

/* Games Page Styles */
.games-hero {
    padding: 140px 0 80px;
    min-height: 80vh;
}

.games-hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.games-hero-image {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
   
}

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

.games-subtitle {
    
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 30px;
}

.games-title {
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.games-grid {
    padding: 60px 0;
}

.games-track {
    gap: 30px;
}

.game-card {
    min-width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.game-card a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--white);
}

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

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.game-overlay h3 {
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.game-subtitle {
    
    font-size: 16px;
}

/* Game Page Styles */
.game-hero {
    padding: 80px 0 60px;
    height: 100vh;
}

.game-hero .container {
  position: relative;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
        
}

.game-hero .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
   background: rgba(255, 63, 229, 0.3);
   z-index: 2;
}

.game-hero-content {
    display: flex;
    justify-content: center;
    height: 100%;
     
}

.game-hero-image {
    width: 100%;
   
    overflow: hidden;
    position: relative;

}

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

.game-logo-title {
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 96px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 4;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
}

.game-info {
    padding: 60px 0;
}

.game-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.game-description,
.game-features {
    
    font-size: 18px;
    line-height: 1.8;
}

.game-cta {
    text-align: center;
    grid-column: span 2;
}

.game-cta-title {
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.game-btn {
    font-size: 24px;
    padding: 20px 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title,
    .games-title {
        font-size: 56px;
    }

    .cta-title,
    .game-cta-title {
        font-size: 48px;
    }

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

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

    .discover-item.full {
        grid-column: span 1;
    }

    .game-info-grid {
        grid-template-columns: 1fr;
    }

    .game-cta {
        grid-column: span 1;
    }

    .carousel-item,
    .game-card {
        min-width: 300px;
    }
}

@media (max-width: 768px) {

  .footer {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 30px;
    padding-bottom: 16px;
  }

  .footer-info {
    flex-direction: column;
    align-items: flex-start;
  }
    .nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        width: 100%;
        max-width: 200px;
        right: 20px;
        background-color: rgba(0, 0, 0, 0.98);
        padding: 20px;
        border-radius: 15px;
        gap: 20px;
    }

    .bottom-cta-content h2 {
      font-size: 60px;
    }
    .discover-item {
      grid-template-columns: 1fr;
    }

    .carousel-btn {
      width: 40px;
      height: 40px;
    }

    .hero-title,
    .games-title {
        font-size: 42px;
    }

    .cta-title,
    .game-cta-title {
        font-size: 36px;
    }

    .game-logo-title {
        font-size: 56px;
        bottom: 30px;
        left: 30px;
    }

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

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

    .cookie-buttons {
        flex-direction: column;
    }

    .btn-cookie {
        min-width: 100%;
    }

    .carousel-item,
    .game-card {
        min-width: 250px;
        height: 350px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .games-title {
        font-size: 50px;
    }
    .hero .container {
      margin-left: 16px;
      margin-right: 16px;
    }

    .discover-grid img {
      left: 20%;
    }

    .hero-text {
      padding-left: 20px;
      padding-right: 20px;
    }

    .carousel-item, .game-card {
      min-width: 200px;
      width: 100%;
      height: 100%;
    }

    .cta-title,
    .game-cta-title {
        font-size: 28px;
    }

    .game-logo-title {
        font-size: 36px;
        bottom: 20px;
        left: 20px;
    }

    .discover-title {
        font-size: 32px;
    }
    .game-hero .container {
      margin-left: 16px;
      margin-right: 16px;
    }

    .carousel-item h3,
    .game-overlay h3 {
        font-size: 24px;
    }
}

.policy {
  padding-top: 140px;
  padding-bottom: 80px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.policy-content li {
  list-style-position: inside;
}

.policy-content a {
  color: #fff;
  text-decoration: none;
}