/* -*- coding: utf-8 -*- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

header a, .download-content a, .download-text a, footer a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #fdf2f8;
    color: #333;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    text-align: center;
    padding: 15px 0 30px;
}

.app-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2);
    margin-bottom: 20px;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 10px;
}

.slogan {
    font-size: 16px;
    color: #888;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.4);
}

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

.intro-section {
    padding: 15px 0;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 20px;
    text-align: center;
}

.intro-container {
    background-color: #ffebf6;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.intro-content {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.intro-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 768px) {
    .intro-container {
        padding: 20px;
    }
    
    .intro-content {
        padding: 20px;
    }
}

.faq-section {
    padding: 15px 0;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    background-color: white;
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.faq-question::before {
    content: "Q: ";
    color: #ec4899;
    font-weight: bold;
    margin-right: 8px;
}

.faq-answer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
}

.faq-answer::before {
    content: "A: ";
    color: #ec4899;
    font-weight: bold;
    margin-right: 8px;
    margin-top: 2px;
}

.testimonials-section {
    padding: 15px 0;
}

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

.testimonial-item {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.user-rating {
    font-size: 14px;
    color: #f59e0b;
}

.testimonial-content {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.testimonial-time {
    font-size: 12px;
    color: #999;
    text-align: right;
}

.download-section {
    padding: 15px 0;
}

.download-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.download-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.download-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.download-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.download-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.download-content img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    margin-right: 12px;
}

.download-text {
    display: flex;
    flex-direction: column;
}

.download-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.download-text p {
    font-size: 14px;
    color: #2db0ff;
    margin: 0;
}

.download-btn {
    background-color: #f59e0b;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    align-self: center;
}

.download-btn:hover {
    background-color: #d97706;
    transform: translateY(-1px);
}

.screenshots-section {
    padding: 15px 0;
}

.screenshots-container {
    /* margin-top: 30px; */
    position: relative;
    overflow-x: auto;
    padding: 20px 0;
}

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

.screenshots-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.screenshots-container::-webkit-scrollbar-thumb {
    background: #ec4899;
    border-radius: 10px;
}

.screenshots-container::-webkit-scrollbar-thumb:hover {
    background: #db2777;
}

.screenshots-slider {
    display: flex;
    gap: 10px;
    min-width: max-content;
}

.screenshot-item {
    flex: 0 0 280px;
    width: 280px;
    height: 500px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: white;
    border: 2px solid #f0f0f0;
}

.screenshot-item img {
    width: 280px;
    height: 500px;
    display: block;
    object-fit: cover;
}

.slider-controls {
    display: none;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #ec4899;
    transform: scale(1.2);
}

.links-section {
    padding: 15px 0;
}

.links-container {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.link-item {
    text-align: center;
    padding: 15px 10px;
    border-radius: 10px;
    background-color: #fdf2f8;
    transition: all 0.3s ease;
}

.link-item:hover {
    background-color: #fce7f3;
    transform: translateY(-2px);
}

.link-item a {
    text-decoration: none;
    color: #ec4899;
    font-size: 14px;
    font-weight: 500;
}

.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
    max-width: 750px;
    margin: 0 auto;
}

.nav-item {
    text-align: center;
    flex: 1;
    padding: 5px 0;
}

.nav-item a {
    text-decoration: none;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    height: 40px;
}

.nav-item a.active {
    color: #ec4899;
    font-weight: 600;
}

footer {
    padding: 30px 0;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.testimonials-download {
    text-align: center;
    padding: 15px 0;
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none;
    }
    
    .screenshot-item {
        max-width: calc(50% - 20px);
    }
    
    footer {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 70px;
    }
}