:root {
    --accent: #FF2D55;
    --bg: #050505;
    --card: #121212;
    --text-secondary: #a0a0a0;
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Accessibility: skip to content */
.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--accent);
    color: #fff;
    padding: 10px 16px;
    border-radius: 0 0 8px 0;
    font-weight: 800;
    z-index: 2000;
}
.skip-link:focus { left: 0; }

/* Navigation (shared) */
nav {
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

nav a:hover,
nav a:focus-visible { color: var(--accent); }

/* Gradient headings (shared) */
.gradient-heading {
    font-weight: 900;
    text-transform: uppercase;
    color: #fff; /* fallback if background-clip unsupported */
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer (shared) */
footer {
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    font-size: 0.85rem;
    color: #444;
}

.footer-socials {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-socials a {
    color: #666;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    transition: 0.3s;
}

.footer-socials a:hover,
.footer-socials a:focus-visible { color: var(--accent); }

.llc-name {
    color: #eee;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-legal a {
    color: #444;
    text-decoration: none;
}
.footer-legal a:hover { color: var(--accent); }

/* Official store badges (shared) */
.store-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.store-badges.center { justify-content: center; }
.store-badges a {
    display: inline-block;
    line-height: 0;
    border-radius: 8px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.store-badges a:hover,
.store-badges a:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 45, 85, 0.18);
}
.store-badges img { height: 52px; width: auto; display: block; }

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
