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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1a1a1a;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2d2d;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.cookie-content p {
    margin-bottom: 20px;
    line-height: 1.5;
}

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

.btn-accept {
    background: #ff4500;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #e63900;
}

.btn-settings,
.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 22px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-settings:hover,
.btn-reject:hover {
    background: white;
    color: #2d2d2d;
}

/* Header */
.header {
    background: #1a1a1a;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #333;
}

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

.logo {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #fff;
  font-size: 24px;
  text-decoration: unset;
}

.logo img {
    height: 40px;
}

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

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

.nav-list a:hover {
    color: #ff4500;
}

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

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
     background: 
      linear-gradient(rgba(9, 7, 5, 0.7), rgba(9, 7, 5, 0.7)),
      url(./images/hero.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 96px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff4500, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: center;
    color: #ccc;
}

.about {
  padding-top: 48px;
  padding-bottom: 48px;
}

.about-content {
  border: 1px solid rgba(195, 179, 169, 1);
  background: rgba(103, 83, 67, 1);
  border-radius: 32px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-box {

}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff4500;
}

.feature-box p {
    color: #ccc;
    line-height: 1.6;
}

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

/* Features Section */
.features {
    color: white;
    padding: 48px 0;
}

.features h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #ff4500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ff4500;
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.2);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff4500;
}

.feature-card p {
    line-height: 1.6;
    color: #ccc;
}

.features-stats {
    text-align: center;
    background: rgba(255, 69, 0, 0.1);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #ff4500;
}

.features-stats h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ff4500;
}

.features-stats p {
    font-size: 18px;
    color: #ccc;
}

/* Games Section */
.games {
    background: #1a1a1a;
    color: white;
    padding: 48px 0;
}

.games h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #ff4500;
}

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

.game-card {
    background: rgba(103, 83, 67, 1);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(195, 179, 169, 1);
    transition: all 0.3s ease;
    padding: 24px;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #ff4500;
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.2);
}

.game-image {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    height: 490px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

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

.game-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.game-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #ff4500;
}

.game-subtitle {
    font-size: 14px;
    color: #ff4500;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.google-play-btn {
    align-self: flex-start;
    margin-top: 20px;
}

.google-play-btn img {
    height: 40px;
    transition: transform 0.3s ease;
}

.google-play-btn:hover img {
    transform: scale(1.1);
}

/* Reviews Section */
.reviews {
    color: white;
    padding: 48px 0;
}

.reviews h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 30px;
    color: #ff4500;
}

.reviews-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.review-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #ff4500;
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.1);
}

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

.review-header h4 {
    color: #ff4500;
    font-size: 18px;
}

.stars {
    color: #ffd700;
    font-size: 18px;
}

.review-card p {
    line-height: 1.6;
    color: #ccc;
    font-style: italic;
}

/* Contact Section */
.contact {
    background: #1a1a1a;
    color: white;
    padding: 48px 0;
}

.contact h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 30px;
    color: #ff4500;
}

.contact .container p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: #ccc;
}

textarea {
  resize: none;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
}

.form-row {
    margin-bottom: 20px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 15px;
    background: #2d2d2d;
    border: 1px solid #444;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.form-row:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    background: #ff4500;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    display: block;
    margin: 0 auto;
}

.submit-btn:hover {
    background: #e63900;
}

.contact-info {
    text-align: center;
    margin: 40px 0;
}

.contact-info p {
    font-size: 18px;
    color: #ff4500;
}

.footer-links {
    text-align: center;
    margin: 16px 0;
}

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

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.copyright p {
    color: #666;
    font-size: 14px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #1a1a1a;
        transition: left 0.3s ease;
        z-index: 998;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 40px;
    }

    .nav-list a {
        font-size: 24px;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
    }

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

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .features h2,
    .games h2,
    .reviews h2,
    .contact h2 {
        font-size: 32px;
    }

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

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

    .game-image {
        height: 200px;
    }

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

    .form-row:first-child {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cookie-buttons button {
        width: 100%;
        max-width: 300px;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }

    .about-content {
      grid-template-columns: 1fr;
    }
}

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

    .hero {
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .features,
    .games,
    .reviews,
    .contact {
        padding: 60px 0;
    }

    .feature-card,
    .review-card {
        padding: 25px;
    }

    .game-content {
      padding-left: 0;
      padding-right: 0;
    }

    .game-content h3 {
        font-size: 24px;
    }

    .features h2,
    .games h2,
    .reviews h2,
    .contact h2 {
        font-size: 28px;
    }
}

.footer {
  padding: 20px 0;
}

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

.policy h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  margin-bottom: 24px;

}

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

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