/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f9f9f9;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.app-icon img {
    width: 120px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.app-name {
    font-size: 2rem;
    color: #444;
    margin: 10px 0;
}

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

/* Screenshot Section */
.screenshot-section {
    text-align: center;
    margin-bottom: 30px;
}

.screenshots {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.screenshots img {
    width: 30%;
    aspect-ratio: 4 / 6; /* Ensures 4:6 format */
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Download Section */
.download-section {
    text-align: center;
    margin-bottom: 30px;
}

.download-button {
    background: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

.download-button:hover {
    background: #0056b3;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 30px 0;
}

.stat {
    text-align: center;
}

.stat img {
    width: 40px;
    margin-bottom: 10px;
}

.stat p {
    margin: 0;
    font-size: 1rem;
}

/* Video Section */
.video-section {
    text-align: center;
    margin-bottom: 30px;
}

.video-container iframe {
    width: 100%;
    max-width: 600px;
    height: 315px;
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
}

/* Footer Section */
.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
}