﻿@charset "UTF-8";
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #121212;
    color: white;
}

.container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

header {
    background: #1e1e1e;
    padding: 15px 5%;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}
header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}
header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}
header nav ul li a:hover {
    color: #ff5733;
}

/* HERO */
#hero {
    position: relative;
    background: url('../images/1.webp') no-repeat center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    /* Затемняющая подложка */
}
#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
#hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}
#hero .container h1 {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(255, 87, 51, 0.8);
    animation: fadeInUp 1.2s ease-in-out;
}
#hero .container p {
    font-size: 20px;
    margin: 20px 0;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(255, 87, 51, 0.7);
    animation: fadeInUp 1.5s ease-in-out;
}
#hero .container .btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff5733, #c44126);
    color: white;
    font-size: 18px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 87, 51, 0.5);
    transition: 0.3s ease-in-out;
    animation: fadeInUp 1.8s ease-in-out;
    border: 2px solid rgba(255, 87, 51, 0.8);
}
#hero .container .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 87, 51, 0.7);
    background: linear-gradient(135deg, #c44126, #ff5733);
}
#hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
#hero .btn-google-play {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}
#hero .btn-google-play img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}
#hero .btn-google-play:hover {
    transform: scale(1.05);
}
@media (max-width: 600px) {
    #hero .hero-buttons {
        flex-direction: column;
    }
    #hero .btn-google-play img {
        height: 50px;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ABOUT */
#about {
    background: #121212;
    padding: 100px 0;
}
#about .about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
@media (max-width: 768px) {
    #about .about-content {
        flex-direction: column;
        text-align: center;
    }
}
#about .about-text {
    flex: 1;
    max-width: 600px;
}
#about .about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
#about .about-text h2 i {
    color: #ff5733;
}
#about .about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ddd;
}
#about .about-text ul {
    list-style: none;
    margin-top: 20px;
}
#about .about-text ul li {
    font-size: 18px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: bold;
}
#about .about-text ul li i {
    color: #ff5733;
    font-size: 22px;
}
#about .about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
#about .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

/* FEATURES */
#features {
    background: #1e1e1e;
    padding: 100px 0;
    text-align: center;
}
#features h2 {
    font-size: 36px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#features h2 i {
    color: #ff5733;
}
#features .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    #features .features-grid {
        grid-template-columns: 1fr;
    }
}
#features .feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}
#features .feature-item:hover {
    transform: translateY(-5px);
}
#features .feature-item i {
    font-size: 40px;
    color: #ff5733;
    margin-bottom: 15px;
}
#features .feature-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}
#features .feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
}

/* GALLERY */
#gallery {
    background: #1e1e1e;
    padding: 100px 0;
    text-align: center;
}
#gallery h2 {
    font-size: 36px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#gallery h2 i {
    color: #ff5733;
}
#gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    #gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    #gallery .gallery-grid {
        grid-template-columns: 1fr;
    }
}
#gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(255, 87, 51, 0.4);
    transition: transform 0.3s ease-in-out;
}
#gallery .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 87, 51, 0.6);
}
#gallery .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
}
#gallery .gallery-item img:hover {
    transform: scale(1.1);
}

/* REVIEWS */
#reviews {
    background: #1e1e1e;
    padding: 100px 0;
    text-align: center;
}
#reviews h2 {
    font-size: 36px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#reviews h2 i {
    color: #ff5733;
}
#reviews .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    #reviews .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    #reviews .reviews-grid {
        grid-template-columns: 1fr;
    }
}
#reviews .review-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}
#reviews .review-item:hover {
    transform: translateY(-5px);
}
#reviews .review-content {
    font-size: 18px;
    font-style: italic;
    color: #ddd;
    margin-bottom: 15px;
}
#reviews .review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    color: #fff;
}
#reviews .review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    border: 2px solid #ff5733;
}

/* FOOTER */
footer {
    background: #121212;
    padding: 20px 5%;
}
footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
footer .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
footer .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}
footer .footer-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}
footer .footer-link:hover {
    color: #ff5733;
}

#privacy {
    background: #121212;
    padding: 100px 5%;
    color: white;
}
#privacy .container {
    max-width: 800px;
    margin: 0 auto;
}
#privacy h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
    color: #ff5733;
}
#privacy h2 {
    font-size: 28px;
    margin-top: 30px;
    color: #ff5733;
}
#privacy p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
}
#privacy ul {
    margin-top: 10px;
    padding-left: 20px;
}
#privacy ul li {
    font-size: 18px;
    margin-bottom: 10px;
    list-style-type: disc;
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #1c1c28;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    z-index: 1000;
    display: none;
}
.cookie-consent__text {
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-align: center;
}
.cookie-consent__actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.cookie-consent__actions .cookie-consent__btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #29b6f6;
    border-radius: 5px;
    background-color: transparent;
    color: #29b6f6;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cookie-consent__actions .cookie-consent__btn:hover {
    background-color: #29b6f6;
    color: #ffffff;
}
.cookie-consent__actions .accept {
    border-color: #00e676;
    color: #00e676;
}
.cookie-consent__actions .accept:hover {
    background-color: #00e676;
}
.cookie-consent__actions .decline {
    border-color: #f44336;
    color: #f44336;
}
.cookie-consent__actions .decline:hover {
    background-color: #f44336;
}

/* ABOUT PAGE */
#about-page {
    background: #121212;
    padding: 100px 5%;
    color: white;
}
#about-page .container {
    max-width: 1200px;
    margin: 0 auto;
}
#about-page h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    color: #ff5733;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
#about-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 30px;
    color: #ff5733;
    display: flex;
    align-items: center;
    gap: 10px;
}
#about-page .about-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}
#about-page .about-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ddd;
}
#about-page .how-to-play {
    margin: 60px 0;
}
#about-page .how-to-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}
@media (max-width: 900px) {
    #about-page .how-to-grid {
        grid-template-columns: 1fr;
    }
}
#about-page .how-to-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}
#about-page .how-to-item i {
    font-size: 48px;
    color: #ff5733;
    margin-bottom: 20px;
}
#about-page .how-to-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}
#about-page .how-to-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
}
#about-page .unique-features {
    margin: 60px 0;
}
#about-page .unique-features ul {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}
#about-page .unique-features ul li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
#about-page .unique-features ul li i {
    color: #ff5733;
    font-size: 24px;
    margin-top: 5px;
}
#about-page .screenshots-section {
    margin: 60px 0;
}
#about-page .screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}
@media (max-width: 768px) {
    #about-page .screenshots-grid {
        grid-template-columns: 1fr;
    }
}
#about-page .screenshot-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 87, 51, 0.4);
    transition: transform 0.3s ease-in-out;
}
#about-page .screenshot-item:hover {
    transform: scale(1.02);
}
#about-page .screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}
#about-page .download-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}
#about-page .download-section p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ddd;
}
#about-page .btn-google-play-large {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}
#about-page .btn-google-play-large img {
    height: 80px;
    width: auto;
    border-radius: 8px;
}
#about-page .btn-google-play-large:hover {
    transform: scale(1.05);
}
#about-page .about-philosophy {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
}
#about-page .about-philosophy p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ddd;
}

/* REVIEWS PAGE */
#reviews-page {
    background: #121212;
    padding: 100px 5%;
    color: white;
}
#reviews-page .container {
    max-width: 1200px;
    margin: 0 auto;
}
#reviews-page h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
    color: #ff5733;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
#reviews-page .reviews-intro {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #ddd;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
#reviews-page .reviews-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    #reviews-page .reviews-stats {
        grid-template-columns: 1fr;
    }
}
#reviews-page .stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}
#reviews-page .stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #ff5733;
    margin-bottom: 10px;
}
#reviews-page .stat-label {
    font-size: 16px;
    color: #ddd;
}
#reviews-page .reviews-grid-extended {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
@media (max-width: 900px) {
    #reviews-page .reviews-grid-extended {
        grid-template-columns: 1fr;
    }
}
#reviews-page .review-item-extended {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}
#reviews-page .review-item-extended:hover {
    transform: translateY(-5px);
}
#reviews-page .review-header {
    margin-bottom: 15px;
}
#reviews-page .review-author-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}
#reviews-page .review-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}
#reviews-page .review-rating {
    color: #ffd700;
    font-size: 14px;
}
#reviews-page .review-rating .far {
    color: #666;
}
#reviews-page .review-content {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 15px;
}
#reviews-page .review-helpful {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}
#reviews-page .reviews-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}
#reviews-page .reviews-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #ff5733;
}
#reviews-page .reviews-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
}

/*# sourceMappingURL=style.css.map */
