/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    color: #ffffff;
}

/* Header */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.app-store-badge {
    height: 40px;
    width: auto;
}

/* Hero Section */
.hero {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 2;
    font-weight: 500;
}

.hero .app-store-badge {
    height: 60px;
    margin-top: 1rem;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.feature-card p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* Streaming Services */
.streaming-services {
    padding: 5rem 2rem;
    background-color: rgba(255, 255, 255, 0.02);
}

.streaming-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.service-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-item span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.services-legal {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

/* How It Works */
.how-it-works {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step p {
    color: #a0a0a0;
}

/* How to Use Section */
.how-to-use {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.how-to-use h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.usage-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.usage-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.usage-section.reverse {
    grid-template-columns: 1fr 1fr;
}

.usage-section.reverse .usage-content {
    order: 2;
}

.usage-section.reverse .screenshot-container {
    order: 1;
}

.usage-section.full-width {
    grid-template-columns: 1fr;
    text-align: center;
}

.usage-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.usage-step h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.usage-step ol,
.usage-step ul {
    margin-left: 1.5rem;
    color: #a0a0a0;
    line-height: 1.8;
}

.usage-step li {
    margin-bottom: 0.5rem;
}

.usage-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.usage-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.usage-feature ul {
    margin-left: 1.5rem;
    color: #a0a0a0;
    line-height: 1.8;
}

.usage-feature li {
    margin-bottom: 0.5rem;
}

.screenshot-container {
    position: relative;
}

.app-screenshot {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.3s;
}

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

.screenshot-shadow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    filter: blur(10px);
    z-index: -1;
}

/* Pro Tips */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.tip-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.tip-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.tip-card p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 5rem 2rem;
    background-color: rgba(255, 255, 255, 0.02);
}

.pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid #007AFF;
    background-color: rgba(0, 122, 255, 0.1);
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007AFF;
    margin-bottom: 1.5rem;
}

.price-detail {
    font-size: 1rem;
    font-weight: 400;
    color: #a0a0a0;
}

.price-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #007AFF;
    background-color: rgba(0, 122, 255, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #ffffff;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Download Section */
.download {
    padding: 5rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.download p {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.download .app-store-badge {
    height: 60px;
}

/* Notify Forms */
.hero-notify-form {
    width: 100%;
    max-width: 400px;
}

.hero-notify-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.notify-form-container {
    max-width: 400px;
    margin: 2rem auto;
    text-align: left;
}

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

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input[type="email"],
.form-group input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus {
    border-color: #007AFF;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input[type="email"]::placeholder,
.form-group input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.notify-submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
    font-family: inherit;
}

.notify-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

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

.form-privacy-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.4;
}

/* FAQ Section */
.faq {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.faq-item p {
    color: #a0a0a0;
    line-height: 1.8;
    margin: 0;
}

/* Legal Disclaimers */
.legal-disclaimers {
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.8;
}

.disclaimer-content p {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: #a0a0a0;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Privacy & Support Pages */
.privacy-policy {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.content-wrapper .last-updated {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.content-wrapper section {
    margin-bottom: 3rem;
}

.content-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #ffffff;
}

.content-wrapper h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.content-wrapper p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-wrapper ul,
.content-wrapper ol {
    color: #a0a0a0;
    line-height: 1.8;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

.content-wrapper a {
    color: #007AFF;
    text-decoration: none;
    transition: opacity 0.3s;
}

.content-wrapper a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.support-issue {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.support-issue h4 {
    margin-top: 0;
    color: #007AFF;
}

.support-issue p {
    margin-bottom: 0.75rem;
}

.support-issue ol {
    margin-top: 0.5rem;
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        font-size: 1rem;
        line-height: 1.8;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .usage-section {
        grid-template-columns: 1fr;
    }

    .usage-section.reverse .usage-content {
        order: 1;
    }

    .usage-section.reverse .screenshot-container {
        order: 2;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .service-logo {
        width: 50px;
        height: 50px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .price {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
    }

    .hero-notify-form {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-notify-form > div {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-notify-form input[type="email"],
    .hero-notify-form button {
        width: 100%;
    }

    .notify-form-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
    }

    .content-wrapper h1 {
        font-size: 2rem;
    }

    .content-wrapper h2 {
        font-size: 1.5rem;
    }

    .content-wrapper h3 {
        font-size: 1.25rem;
    }

    .support-issue {
        padding: 1rem;
    }

    .faq {
        padding: 3rem 1.5rem;
    }

    .faq h2 {
        font-size: 2rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }
}

/* Mobile spacing for Notify Me button */
@media (max-width: 480px) {
    .notify-me-button {
        margin-top: 10px;
    }
}

