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

.bowlby-one-sc-regular {
    font-family: "Bowlby One SC", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.carter-one-regular {
    font-family: "Carter One", system-ui;
    font-weight: 400;
    font-style: normal;
}

body {
    background: linear-gradient(180deg, #0b2a5b, #071a3a);
    padding: 20px;
    color: #ffffff;
}

/* HERO */

.hero {
    text-align: center;
    padding: 32px 16px;
}

.logo {
    width: 192px;
    margin-bottom: 8px;
}

.hero h1 {
    font-size: 36px;
    color: #ffcc33;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.google-play-btn {
    display: inline-block;
    padding: 14px 24px;
    background: linear-gradient(
            to bottom,
            #8b0000,     /* Темно-красный сверху */
            #ff764d,     /* Светло-красный в середине */
            #8b0000      /* Темно-красный снизу */
    );
    color: #ffcc33;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
}

/* CAROUSEL */
.screenshots-carousel {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    padding: 10px 0;
}

.screenshot {
    flex: 0 0 auto;
    width: 180px;
    margin: 0 8px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
    font-size: 20px;
    color: #333;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #f8f8f8;
}

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #666;
}

/* CONTENT */

.content {
    padding: 24px 16px;
    max-width: 800px;
    margin: 0 auto;
}

.content .content-header {
    font-size: 22px;
    margin: 24px 0 12px;
    color: #ffcc33;
}

.content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

/* FOOTER */

.footer {
    text-align: center;
    padding: 20px 16px;
    font-size: 13px;
    opacity: 0.7;
}

