/* Shotlytic Website - Dark Theme with Yellow Accent */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #1C1C1E;
    --text-primary: #FFFFFF;
    --text-secondary: #8E8E93;
    --accent-yellow: #FFD60A;
    --accent-blue: #007AFF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Main Landing Page */
.landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
}

.app-icon {
    width: 128px;
    height: 128px;
    border-radius: 28px;
    margin-bottom: 32px;
    box-shadow: 0 20px 60px rgba(255, 214, 10, 0.15);
}

.landing h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.tagline {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 16px;
    font-weight: 500;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 48px;
}

.badges {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.app-store-badge {
    height: 50px;
    transition: opacity 0.2s;
}

.app-store-badge:hover {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.copyright {
    color: #48484A;
    font-size: 0.85rem;
}

/* Content Pages (Privacy, Support) */
.content-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 24px;
}

.content-page .back-link {
    display: inline-block;
    color: var(--accent-yellow);
    text-decoration: none;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.content-page .back-link:hover {
    text-decoration: underline;
}

.content-page h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.content-page .last-updated {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.content-page h2 {
    font-size: 1.3rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--accent-yellow);
}

.content-page h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.content-page p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.content-page ul {
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-page li {
    margin-bottom: 8px;
}

.content-page a {
    color: var(--accent-yellow);
}

.content-page strong {
    color: var(--text-primary);
}

/* Contact */
.contact-box {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 12px;
    margin-top: 32px;
    border: 1px solid rgba(255, 214, 10, 0.2);
}

.contact-box p {
    margin-bottom: 16px;
}

.contact-box a.button {
    display: inline-block;
    background: var(--accent-yellow);
    color: #000000;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a.button:hover {
    background: #E5C000;
}

/* Mobile */
@media (max-width: 600px) {
    .landing h1 {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .badges {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}
