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

body {
    font-family: 'Lato', Arial, sans-serif;
    line-height: 1.6;
    color: rgba(11, 21, 42, 1);
    background-color: #fff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

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

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

.cookie-accept {
    background: #FDB462;
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cookie-accept:hover {
    background: #FCA326;
}

.cookie-settings {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 10px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-settings:hover {
    background: #333;
    color: white;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: top 0.3s ease;
}

.header.cookie-active {
    top: 120px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  text-decoration: unset;
  color: inherit;
}

.logo img {
    height: 40px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav a:hover {
    color: #FDB462;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: url(./images/hero.png) no-repeat center;
    background-size: cover;
    color: white;
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
   flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-content span {
  font-weight: 400;
  font-size: 18px;
  line-height: 155%;
  letter-spacing: -0.02em;
  text-align: center;
}

.hero p {
    font-size: 22px;
      line-height: 155%;
  letter-spacing: -0.02em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary {
    background: #FDB462;
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Features Section */
.features {
    padding: 60px 0;
    background: rgba(255, 250, 235, 1);
}

.features .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.features .container > img {
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 12px;
}

.feature-item svg {
  flex-shrink: 0;
}

.feature-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* What distinguishes */
.what-distinguishes {
    padding: 60px 0;
    background: rgba(255, 250, 235, 1);
}

.what-distinguishes h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.distinguishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.distinguish-item {
    background: rgba(254, 224, 134, 1);
border: 1px solid rgba(252, 194, 76, 1);
    padding: 24px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.distinguish-item:hover {
    transform: translateY(-5px);
}


.distinguish-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
    margin-bottom: 8px;
}

.distinguish-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.distinguish-item p {
    color: #333;
    line-height: 1.6;
}

/* Games Section */
.games {
    padding: 60px 0;
    background: white;
}

.games h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.games > .container > p {
    font-size: 1.1rem;
    margin-bottom: 60px;
    color: #555;
}

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

.game-card {
    background: rgba(254, 224, 134, 1);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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


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

.game-content {
    padding: 20px;
        display: flex;
    flex-direction: column;
    height: 100%;
}

.user-name {
  color: rgba(103, 103, 103, 1);
  font-weight: 400;
  font-style: Italic;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  padding-bottom: 16px;
}

.game-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.game-rating {
    margin-bottom: 15px;
}

.game-rating span {
    color: #333;
    font-size: 1.2rem;
}

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

.btn-google-play {
  margin-top: auto;
    transition: all 0.3s ease;
}

.btn-google-play:hover {
  transform: translateY(-5px);
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: rgba(255, 250, 235, 1);
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.gallery > .container > p {
    font-size: 1.1rem;
    margin-bottom: 60px;
}

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

.gallery-item {
    
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 240px;
    border-radius: 15px;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: rgba(255, 250, 235, 1);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact > .container p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.contact-form {
  width: 100%;
  border: 1px solid rgba(255, 200, 31, 1);
  border-radius: 16px;
  padding: 40px 32px;
}

.contact-address,
.contact-address a {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: inherit;
  text-decoration: unset;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FDB462;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 1);
    color: white;
    padding: 40px 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FDB462;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FDB462;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        position: relative;
    }

    .features .container,
    .contact > .container {
      grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-grid,
    .distinguishes-grid,
    .games-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-content h3 {
        font-size: 1.3rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-accept,
    .cookie-settings {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features,
    .what-distinguishes,
    .games,
    .gallery,
    .contact {
        padding: 80px 0;
    }
    
    .features h2,
    .what-distinguishes h2,
    .games h2,
    .gallery h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

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

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 1 auto;
}

.policy {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 80px;

}

.policy h1 {
  font-weight: 800;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}

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

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

.policy-content a {
  color: inherit;
  text-decoration: unset;
}