:root {
    --background-color: #000000;
    --text-color: #ffffff;
    --accent-color: #007AFF;
    --card-bg: rgba(255, 255, 255, 0.05);
    --hover-color: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color), #00E676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

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

main {
    padding-top: 60px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--accent-color), #00E676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    margin-bottom: 2rem;
}

.app-store-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-store-button img {
    height: 70px;
    width: auto;
    display: block;
}

.app-store-button:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.screenshots-showcase {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 0rem;
}

.screenshot {
    max-height: 500px;
    width: 250px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    object-fit: contain;
    cursor: pointer;
}

.screenshot:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.screenshot.main-shot,
.screenshot.side-shot.left,
.screenshot.side-shot.right {
    width: 250px;
    max-height: 500px;
}

/* Media query for compact mode */
@media screen and (max-width: 768px) {
    .hero {
        padding: 0.5rem;
        min-height: 60vh;
    }

    .hero-content {
        gap: 0;
    }

    .screenshot.side-shot.left,
    .screenshot.side-shot.right {
        display: none;
    }
    
    .screenshots-showcase {
        gap: 0;
        margin-top: 0rem;
        width: 100%;
    }
    
    .screenshot.main-shot {
        width: 400px;
        max-height: 680px;
    }

    .cta-buttons {
        margin-bottom: 1rem;
    }

    h1 {
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
}

.features {
    padding: 1rem 1rem;
    background: linear-gradient(to bottom, transparent, rgba(0, 122, 255, 0.05));
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--hover-color);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.download {
    padding: 1rem 1rem;
    text-align: center;
    background: linear-gradient(to top, transparent, rgba(0, 122, 255, 0.05));
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

footer {
    padding: 3rem 2rem;
    background: var(--card-bg);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

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

.footer-social a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

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

/* Legal Pages Styles */
.legal-container, .contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 60px;
}

.legal-section {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-5px);
}

.legal-section h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style-position: inside;
    margin: 1rem 0;
}

.legal-section li {
    margin: 0.5rem 0;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-style: italic;
}

/* Contact Page Styles */
.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #00E676;
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.2);
}

.faq-section {
    margin-top: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .features {
        padding: 4rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links a {
        margin: 0;
    }

    .legal-container, .contact-container {
        padding: 1rem;
    }

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

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

    .screenshots-showcase {
        height: 400px;
        margin-top: 2rem;
    }

    .screenshot {
        height: 460px;
    }

    .screenshot.side-shot {
        height: 250px;
    }

    .screenshot.left {
        transform: scale(1);
        z-index: 1;
    }

    .screenshot.right {
        transform: scale(1);
        z-index: 2;
    }

    .screenshots-showcase:hover .screenshot.left {
        transform: scale(1.05);
    }

    .screenshots-showcase:hover .screenshot.right {
        transform: scale(1.05);
    }
}

/* Links in legal pages */
.legal-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #00E676;
}
