/* Landing Page Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing {
    text-align: center;
    background: #111;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    max-width: 400px;
    width: 90%;
    border: 1px solid #333;
}

.logo {
    display: block;
    margin: 0 auto 1rem;
    max-width: 100%;
    height: auto;
}

.chevron {
    color: #007AFF; /* Accent color for the 'a' */
    position: relative;
}

.chevron::after {
    content: '▶'; /* Chevron symbol */
    position: absolute;
    top: -5px;
    right: -10px;
    font-size: 0.8em;
    color: #007AFF;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.5;
}

.app-button {
    display: inline-block;
    margin: 0.5rem;
    text-decoration: none;
}

.app-button img {
    height: 60px;
    width: auto;
}

.store-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #007AFF;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
}

.store-link:hover {
    background: #0056b3;
}

.qr-code {
    width: 150px;
    height: 150px;
    margin: 1rem 0;
    border: 2px solid #333;
    border-radius: 8px;
}

.qr-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
}
