/* General Body and Container Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Header Styles */
.app-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.app-icon {
    width: 100px;
    height: 100px;
    border-radius: 60%;
    margin-bottom: 15px;

}

.app-name {
    font-size: 2.2em;
    color: #2c3e50;
    margin: 0;
    text-align: center;
}

/* Description Section */
.app-description {
    margin-bottom: 30px;
    text-align: center;
}

.app-description .slogan {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.app-description .full-description {
    font-size: 1em;
    color: #666;
    text-align: left;
}

/* Screenshots Section */
.app-screenshots {
    margin-bottom: 30px;
    text-align: center;
}

.app-screenshots h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.carousel-container {
    position: relative;
    width: 80%;
    max-width: 600px; /* Adjust as needed */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Ensures the image fits within the slide without cropping */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(117, 114, 114, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5em;
    border-radius: 5px;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Download Section */
.download-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.download-section h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}


.download-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    min-width: 180px;
}
.download-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    min-width: 180px;
}

.download-btn.app-store {
    background-color: #007aff;
}

.download-btn.google-play {
    background-color: #3DDC84;
}

.download-btn.apk-download {
    background-color: #f39c12;
}

.download-btn.wechat-miniprogram-download {
    background-color: #28a745;
}

.download-btn:hover {
    opacity: 0.9;
}

.version-info {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 20px;
}

.qr-code img {
    width: 120px;
    height: 120px;
    border: 1px solid #eee;
    padding: 5px;
    border-radius: 5px;
}

.qr-code p {
    font-size: 0.9em;
    color: #777;
    margin-top: 5px;
}

/* Footer Styles */
.app-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.85em;
    color: #888;
}

.app-footer a {
    color: #007bff;
    text-decoration: none;
}

.app-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
    }

    .app-name {
        font-size: 1.8em;
    }

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

    .app-screenshots h2,
    .download-section h2 {
        font-size: 1.5em;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 80%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .app-name {
        font-size: 1.5em;
    }

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

    .app-description .slogan {
        font-size: 1.1em;
    }

    .download-btn {
        font-size: 1em;
        padding: 10px 20px;
    }
}