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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(254, 181, 43, 0.2);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.back-link {
    color: #FEB52B;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
    transform: translateX(-5px);
    display: inline-block;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #000 0%, #1a0f00 50%, #2a1a00 100%);
    border-bottom: 1px solid rgba(254, 181, 43, 0.2);
}

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

.app-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.app-icon {
    width: 100px;
    height: 100px;
    /* border-radius: 20px; */
    /* box-shadow: 0 10px 30px rgba(254, 181, 43, 0.3); */
}

.app-title {
    font-size: 3.5rem;
    color: #FEB52B;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.app-tagline {
    font-size: 1.4rem;
    color: #FEB52B;
    font-weight: 500;
    opacity: 0.85;
}

.app-description {
    font-size: 1.35rem;
    color: #e0e0e0;
    font-weight: 400;
    line-height: 1.7;
    max-width: 900px;
    margin-bottom: 2rem;
}

.download-btn {
    display: inline-block;
    padding: 1.1rem 2.2rem;
    background: #FEB52B;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(254, 181, 43, 0.4);
}

/* Screenshots Section */
.screenshots {
    padding: 4rem 2rem;
    background: #000;
}

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

.section-title {
    font-size: 3rem;
    color: #FEB52B;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.screenshots-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.screenshots-scroll::-webkit-scrollbar {
    height: 8px;
}

.screenshots-scroll::-webkit-scrollbar-track {
    background: rgba(254, 181, 43, 0.1);
    border-radius: 4px;
}

.screenshots-scroll::-webkit-scrollbar-thumb {
    background: #FEB52B;
    border-radius: 4px;
}

.screenshot {
    height: 500px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

/* Features Section */
.features {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a0f00 0%, #000 100%);
}

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

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

.feature-card {
    background: rgba(254, 181, 43, 0.05);
    border: 1px solid rgba(254, 181, 43, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #FEB52B;
    box-shadow: 0 10px 25px rgba(254, 181, 43, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.feature-card p {
    color: #e0e0e0;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
}

/* Technology Section */
.technology {
    padding: 4rem 2rem;
    background: #000;
}

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

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

.tech-item {
    background: rgba(254, 181, 43, 0.1);
    border: 1px solid rgba(254, 181, 43, 0.3);
    padding: 1.1rem 1.7rem;
    border-radius: 8px;
    text-align: center;
    color: #FEB52B;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(254, 181, 43, 0.2);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a0f00 0%, #000 100%);
    padding: 2rem;
    border-top: 1px solid rgba(254, 181, 43, 0.2);
}

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

.footer-content p {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #FEB52B;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .app-header {
        flex-direction: column;
        text-align: center;
    }

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

    .app-title {
        font-size: 2rem;
    }

    .app-tagline {
        font-size: 1rem;
    }

    .app-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .screenshots {
        padding: 3rem 1rem;
    }

    .screenshot {
        height: 400px;
    }

    .features {
        padding: 3rem 1rem;
    }

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

    .technology {
        padding: 3rem 1rem;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

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

    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .app-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .screenshot {
        height: 350px;
    }

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