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

:root {
    --bg-primary: #0D0D1E;
    --bg-secondary: #1a1a2e;
    --accent-orange: #FF9500;
    --accent-yellow: #FFD60A;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
}

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

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Header */
header {
    text-align: center;
    padding: 2rem 0 3rem;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(255, 149, 0, 0.3);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    background: var(--bg-secondary);
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

nav a:hover,
nav a.active {
    background: var(--accent-orange);
    color: #000;
}

/* Sections */
section {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

h2 {
    color: var(--accent-orange);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

h3 {
    color: var(--accent-yellow);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
}

h3:first-child {
    margin-top: 0;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

ul li::before {
    content: "•";
    color: var(--accent-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Power-ups with colors */
.powerup-shield { color: #00FFFF; }
.powerup-magnet { color: #FF6B6B; }
.powerup-grapple { color: #C0C0C0; }
.powerup-double { color: #9B59B6; }
.portal-green { color: #2ECC71; }
.portal-red { color: #E74C3C; }
.portal-purple { color: #9B59B6; }

/* Screenshots */
.screenshots {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.screenshots img {
    height: 180px;
    border-radius: 12px;
    scroll-snap-align: start;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Contact */
.contact-email {
    display: inline-block;
    color: var(--accent-orange);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-orange);
    border-radius: 8px;
    margin-top: 1rem;
    transition: all 0.2s ease;
}

.contact-email:hover {
    background: var(--accent-orange);
    color: #000;
}

/* Privacy page */
.privacy-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

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

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer a {
    color: var(--accent-orange);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .app-icon {
        width: 100px;
        height: 100px;
    }

    section {
        padding: 1.5rem;
    }

    .screenshots img {
        height: 150px;
    }
}
