.app-container {
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: none;
    line-height: 1.6;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.app-title {
    width: 83%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.app-title h1 {
    font-size: 32px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
    width: 100%;
    padding-bottom: 15px;
}

.app-meta {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #00000021;
    border-top: 1px solid #00000021;
}

.app-meta p {
    font-size: 13px;
    color: #616161;
    margin: 5px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-inline-end: 1px solid #00000021;
    width: 100px;
    font-weight: 500;
}

.app-meta p:last-child {
    border: none;
}

.app-meta p i {
    font-size: 22px;
    color: black;
    margin-bottom: 10px;
}

.app-meta strong {
    color: #333;
}

.app-thumbnail {
    width: 17%;
    display: flex;
    justify-content: flex-end;
}

.app-thumbnail img {
    width: 210px;
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

.app-download {
    text-align: center;
    margin-top: 25px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background-color: var(--hmt-primary-color);
    color: white;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

a.download-btn {
    padding: 10px 20px;
}

.download-btn i {
    margin-left: 5px;
}

.app-description {
    margin-top: 30px;
}

.app-description h2 {
    font-size: 24px;
    font-weight: bold;
    color: black;
    margin-bottom: 15px;
}

.app-description p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    text-align: justify;
}

.related-apps-container {
    margin-top: 50px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.related-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.app-changelog {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.app-changelog h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.app-changelog p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
    margin: 0;
    padding: 0 10px;
}

.app-changelog ul {
    margin-top: 20px;
    padding-left: 20px;
}

.app-changelog ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}

.app-changelog ul li:before {
    content: "• ";
    color: #FF5722; /* Custom bullet color */
    font-size: 20px;
    margin-left: -20px;
    margin-right: 10px;
}

@media (max-width: 1200px) {
    .app-thumbnail {
        width: 30%;
    }
    .app-title {
        width: 70%;
    }
}

@media (max-width: 991px) {
    .app-header {
        flex-direction: column-reverse;
    }
    .app-title,
    .app-thumbnail {
        width: 100%;
    }

    .app-thumbnail {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .app-container {
        margin-top: 0px;
    }
    .app-container {
        padding: 15px;
    }

    .app-title h1 {
        font-size: 28px;
    }

    .app-thumbnail img {
        width: 100%;
        height: 100%;
        margin: 0;
        margin-bottom: 15px;
        aspect-ratio: 1;
    }
    
    .app-meta p {
        font-size: 14px;
        width: 80px;
    }

    .app-description p {
        font-size: 14px;
    }

    .app-changelog h2 {
        font-size: 20px;
    }

    .app-changelog p {
        font-size: 14px;
    }

    .app-changelog ul li {
        font-size: 14px;
    }
}

@media(max-width: 450px) {
    .app-meta p {
        width: 78px;
    }
    .app-meta p > span {
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0;
    }
    .app-meta .app-release {
        display: none;
    }
}