:root {
    --bg-color: #0b0e14;
    --container-bg: #161b22;
    --border-color: #30363d;
    --text-color: #c8d9f2;
    --accent-color: #ffc107; /* AMBER/ACCENT */
    --hover-accent: #ffdb70;
    --heading-color: #00bcd4; /* CYAN */
    --footer-text: #8b949e;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 900px;
    width: 100%;
    background: var(--container-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

h1 {
    color: var(--accent-color);
    margin-top: 0;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    font-size: 2.2rem;
    text-align: center;
}

h2 {
    color: var(--heading-color);
    margin-top: 1.5rem;
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
}

.description {
    font-size: 1.1rem;
    margin: 2rem 0;
    text-align: center;
}

/* Screenshot Grid */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.screenshot-placeholder {
    aspect-ratio: 430 / 932; /* iPhone 15 Pro Max / Modern Aspect */
    background: #000;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.screenshot-placeholder::before {
    content: "Screenshot";
    color: var(--border-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* App Store Button */
.cta-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.app-store-button {
    background: transparent;
    border: none;
    height: auto;
    padding: 0;
    text-decoration: none;
    display: inline-block;
    line-height: 0;
    box-shadow: none;
    border-radius: 0;
    transition: transform 0.2s;
}

.app-store-button:hover {
    transform: translateY(-2px);
}

.app-store-badge {
    height: 56px;
    width: auto;
    display: block;
}

/* Footer */
.footer {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--footer-text);
    text-align: center;
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
}

.contact a {
    color: var(--heading-color);
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.disclaimer {
    font-size: 0.8rem;
    color: #7d8691;
    margin-top: 0.5rem;
}

.footer a {
    color: var(--heading-color);
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .screenshot-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        margin: 2rem 0;
        padding-bottom: 1rem;
        max-width: none;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    .screenshot-grid::-webkit-scrollbar {
        display: none;
    }
    .screenshot-placeholder {
        flex: 0 0 80%;
        scroll-snap-align: center;
    }
    .container {
        padding: 1.5rem;
    }
}
