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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Compact', 'SF Compact Display', 'SF Compact Text', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 60px 60px;
    gap: 48px;
}

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

.promo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.promo-text .title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.promo-text .title span {
    color: #6aaa64;
}

.play-web {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    border-radius: 10px;
    border: 1.5px solid #A6A6A6;
    background: transparent;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

.play-web:hover {
    opacity: 0.8;
}

.buttons-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.store-buttons {
    display: flex;
    gap: 16px;
}

.store-buttons a {
    display: block;
    height: 60px;
    transition: opacity 0.2s;
}

.store-buttons a:hover { opacity: 0.8; }

.store-buttons a svg {
    height: 100%;
    width: auto;
}

/* How to Play */
.how-to-play {
    width: 100%;
    max-width: none;
    padding: 64px 32px;
    background: #161616;
}

.how-to-play h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.how-to-play ol {
    list-style: none;
    counter-reset: steps;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.how-to-play ol li {
    counter-increment: steps;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.how-to-play ol li::before {
    content: counter(steps);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #6aaa64;
    color: #000;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-to-play ol li span {
    font-size: 1.05rem;
    font-weight: 500;
    color: #ccc;
    line-height: 1.6;
    padding-top: 4px;
}

/* Why Section (index) */
.why-section {
    width: 100%;
    max-width: none;
    padding: 64px 32px;
    text-align: center;
    background: #161616;
}

.why-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-section p {
    font-size: 1.05rem;
    font-weight: 500;
    color: #999;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ */
.faq-section {
    width: 100%;
    max-width: none;
    padding: 64px 32px;
}

.faq-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #222;
    padding: 20px 0;
}

.faq-item:first-of-type {
    border-top: 1px solid #222;
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 1rem;
    font-weight: 500;
    color: #999;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    width: 100%;
    background: #161616;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
}

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

.footer-copyright {
    color: #555;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .promo {
        padding: 0 20px 40px;
        gap: 32px;
    }

    .promo-text .title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .promo {
        padding: 0 16px 32px;
        gap: 24px;
    }

    .promo-text .title {
        font-size: 1.8rem;
    }

    .store-buttons a {
        height: 40px;
    }

    .play-web {
        height: 40px;
        font-size: 0.95rem;
    }
}
