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

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

:root {
    --primary-color: #1a0033;
    --secondary-color: #ff00ff;
    --accent-color: #00ffff;
    --neon-pink: #ff1493;
    --neon-blue: #00d9ff;
    --neon-purple: #bd00ff;
    --text-color: #ffffff;
    --text-light: #b8b8b8;
    --bg-dark: #0a0014;
    --bg-light: #1a0033;
    --white: #ffffff;
    --border-radius: 0px;
}

body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: var(--text-color);
    background: url('assets/background.png') center center / cover no-repeat fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 0, 20, 0.85) 0%, rgba(26, 0, 51, 0.9) 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 20px 0;
    border-bottom: 3px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    filter: drop-shadow(0 0 15px var(--neon-pink));
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    background: transparent;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 20px var(--accent-color), 0 0 30px var(--accent-color);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
    }
    to {
        text-shadow: 0 0 20px var(--accent-color), 0 0 40px var(--accent-color), 0 0 60px var(--neon-blue);
    }
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    background: linear-gradient(135deg, rgba(189, 0, 255, 0.2) 0%, rgba(0, 217, 255, 0.2) 100%);
    padding: 30px;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(189, 0, 255, 0.5);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(189, 0, 255, 0.8), 0 0 40px rgba(0, 217, 255, 0.5);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

.feature p {
    color: var(--text-light);
}

/* Beta Signup Section (for delete/feedback forms) */
.beta-signup {
    padding: 80px 0;
    background: transparent;
}

.beta-signup h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px var(--neon-pink);
}

.beta-signup > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.signup-form {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(10, 0, 20, 0.9) 100%);
    padding: 40px;
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--neon-purple);
    background-color: rgba(10, 0, 20, 0.6);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
}

.btn-primary {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    color: var(--white);
    border: 2px solid var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.btn-primary:active {
    transform: translateY(0);
}

.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 20px;
}

.privacy-note a {
    color: var(--accent-color);
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px var(--accent-color);
}

.back-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.back-link:hover {
    text-shadow: 0 0 10px var(--accent-color);
    transform: translateX(-5px);
}

/* App Download Section */
.app-download {
    padding: 80px 0;
    background: transparent;
    text-align: center;
}

.app-download h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px var(--neon-pink);
}

.app-download > .container > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.app-store-buttons a {
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease;
}

.app-store-buttons a:not(.disabled):hover {
    transform: translateY(-5px);
}

.store-badge {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.5));
    transition: filter 0.3s ease;
}

.app-store-buttons a:not(.disabled):hover .store-badge {
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.8));
}


/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: transparent;
    text-align: center;
}

.screenshots h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px var(--accent-color);
}

.screenshots .container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(10, 0, 20, 0.7) 100%);
    border: 1px solid var(--neon-purple);
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.3);
    text-align: left;
}

.disclaimer h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.screenshot-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 40px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-purple) rgba(26, 0, 51, 0.5);
}

.screenshot-gallery::-webkit-scrollbar {
    height: 8px;
}

.screenshot-gallery::-webkit-scrollbar-track {
    background: rgba(26, 0, 51, 0.5);
    border-radius: 4px;
}

.screenshot-gallery::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(189, 0, 255, 0.5);
}

.screenshot-gallery::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.screenshot-item {
    flex: 0 0 auto;
    width: 300px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(189, 0, 255, 0.5);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(10, 0, 20, 0.6);
    will-change: transform, opacity;
}

.screenshot-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(189, 0, 255, 0.8), 0 0 40px rgba(0, 217, 255, 0.5);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 80px 0;
    text-align: center;
    background: transparent;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 0 15px var(--accent-color);
}

.about p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 40px 0 20px;
    border-top: 3px solid var(--neon-purple);
    box-shadow: 0 -10px 40px rgba(189, 0, 255, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .app-store-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .store-badge {
        height: 50px;
    }

    .screenshot-gallery {
        padding: 20px 20px;
    }

    .screenshot-item {
        width: 250px;
    }

    .signup-form {
        padding: 30px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn-primary {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
