@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #3a3a3a;
    background: #fffdfa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

a {
    color: #0077cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #005999;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.25rem;
    margin-top: 1.5rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
}

p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

.alt-bg {
    background-color: #f9f9f9;
}

.main-header {
    background: #ff6f61;
    box-shadow: 0 3px 12px rgb(255 111 97 / 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
}

.nav-logo {
    width: 48px;
    height: 48px;
    margin-right: 0.75rem;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.15));
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a:focus::after {
    width: 100%;
}

.hero-section {
    background: linear-gradient(135deg, #ff8a5c 0%, #ffd1b2 100%);
    color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    min-height: 520px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.subtitle {
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.hero-content p {
    font-size: 1.125rem;
    max-width: 520px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.cta-buttons {
    margin: 2.5rem 0 1rem 0;
}

.store-link img {
    width: 180px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.store-link img:hover,
.store-link img:focus {
    transform: scale(1.05);
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.85;
    max-width: 520px;
    text-shadow: none;
}

.hero-image img {
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: rotateY(6deg) rotateX(3deg) scale(1.05);
}

.description-section .content-text p {
    max-width: 700px;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.8rem;
    letter-spacing: 0.015em;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0;
    list-style: none;
}

.features-list li {
    background: #fff;
    padding: 1.8rem 2rem;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    font-weight: 600;
    color: #222;
    border-left: 6px solid #ff6f61;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.features-list li:hover,
.features-list li:focus-within {
    box-shadow: 0 12px 28px rgba(255,111,97,0.3);
    transform: translateY(-6px);
}

.features-list li::before {
    content: "🍓";
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.8rem;
    opacity: 0.15;
    user-select: none;
}

.features-list li:nth-child(2)::before {
    content: "❄️";
}
.features-list li:nth-child(3)::before {
    content: "💥";
}
.features-list li:nth-child(4)::before {
    content: "🏆";
}
.features-list li:nth-child(5)::before {
    content: "🍍";
}
.features-list li:nth-child(6)::before {
    content: "📅";
}
.features-list li:nth-child(7)::before {
    content: "🧠";
}

.screenshots-section h3 {
    font-weight: 500;
    color: #555;
    margin-bottom: 2rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
}

.screenshots-grid img {
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.screenshots-grid img:hover,
.screenshots-grid img:focus {
    transform: scale(1.07);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25));
}

.how-to-list {
    max-width: 720px;
    background: linear-gradient(135deg, #fff9f5, #ffe6db);
    padding: 2.4rem 2.6rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(255,111,97,0.2);
    counter-reset: step-counter;
    font-weight: 600;
    color: #4a4a4a;
}

.how-to-list li {
    counter-increment: step-counter;
    margin-bottom: 1.6rem;
    position: relative;
    padding-left: 3.6rem;
    line-height: 1.4;
    font-size: 1.1rem;
}

.how-to-list li:last-child {
    margin-bottom: 0;
}

.how-to-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6f61;
    color: #fff;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(255,111,97,0.6);
}

.cta-section {
    background: #ff6f61;
    color: #fff;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 6rem;
    border-radius: 0 0 48px 48px;
    box-shadow: 0 15px 40px rgb(255 111 97 / 0.5);
}

.cta-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgb(255 255 255 / 0.35);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgb(255 255 255 / 0.4);
}

.cta-buttons-large a img {
    width: 220px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.2);
    transition: transform 0.35s ease;
}

.cta-buttons-large a img:hover,
.cta-buttons-large a img:focus {
    transform: scale(1.1);
    box-shadow: 0 16px 44px rgb(0 0 0 / 0.3);
}

.main-footer {
    background: #2a2a2a;
    color: #bbb;
    padding: 3rem 0 2rem;
    font-size: 0.9rem;
    user-select: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    border-bottom: 1px solid #444;
    padding-bottom: 2rem;
}

.footer-info h4,
.footer-links h4,
.footer-legal h4 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.footer-info p {
    margin: 0.25rem 0;
    color: #ccc;
    line-height: 1.4;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.6rem;
}

.footer-links ul li a,
.footer-legal ul li a {
    color: #bbb;
    transition: color 0.25s ease;
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: #ff6f61;
}

.footer-bottom {
    margin-top: 1.5rem;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
    }
    .hero-image {
        margin-top: 2rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .nav-menu {
        gap: 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .subtitle {
        font-size: 1.1rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .how-to-list {
        padding: 1.8rem 1.6rem;
    }
    .how-to-list li {
        font-size: 1rem;
        padding-left: 2.8rem;
    }
    .how-to-list li::before {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}