.app-card {
    background-color: #fff;
    max-width: 600px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-header img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
}

.app-header h2 {
    margin: 0;
}

.app-meta {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    flex-wrap: wrap;
}

.meta-box {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.version-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f1f1f1;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 14px;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.rating-stars {
    color: orange;
}

.download-btn {
    display: block;
    width: 96%;
    background-color: #ff5e4d;
    color: white;
    padding: 12px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-top: 15px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
}

.tab.active {
    border-bottom: 3px solid #ff5e4d;
    color: #ff5e4d;
}

.tab-content {
    display: none;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.tab-content.active {
    display: block;
}

.screenshot-wrapper {
    position: relative;
}

.screenshot {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.screenshot img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.scroll-left {
    left: -15px;
}

.scroll-right {
    right: -15px;
}

.review {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 10px;
    margin: 10px 0;
}

.container {
    padding: .5rem 1.4rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.versions {
    display: flex;
}

.versions img {
    width: 60px;
    height: 70px;
    border-radius: 15px;
    margin-right: 10px;
}

.downloadButton {
    padding-left: 14rem;
}

.downloadButton .dbutton {
    width: 7rem;
    height: 3rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bolder;
    background: #007BFF;
}

.downloadButton .dbutton:hover {
    background-color: #075db9;
}

.downloadButton .dbutton a {
    text-decoration: none;
    color: #fff;
}

.infoCont {
    display: flex;
    flex-direction: column;
}

.infoCont span {
    padding-bottom: 5px;
}

.infoinfo {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.infoinfo .info-chaild {
    flex-direction: column;
}

.review-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    max-width: 800px;
    margin: auto;
}

.review-box p {
    color: #333;
    font-size: 14px;
    margin-bottom: 20px;
}

.review-box p a {
    color: #ff5f5f;
    text-decoration: none;
    font-weight: 500;
}

.review-main {
    display: flex;
    align-items: center;
    gap: 40px;
}

.rating-left {
    text-align: center;
}

.rating-left span {
    font-size: 48px;
    font-weight: bold;
    color: #333;
}

.rating-left .stars {
    margin: 5px 0;
}

.rating-left .stars img {
    width: 18px;
    height: 18px;
}

.rating-left small {
    font-size: 14px;
    color: #666;
}

.rating-bars {
    flex-grow: 1;
}

.bar-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.bar-row small {
    width: 20px;
    font-size: 14px;
    color: #666;
}

.bar-track {
    background-color: #eee;
    height: 8px;
    border-radius: 4px;
    flex-grow: 1;
    margin: 0 10px;
}

.bar-fill {
    height: 8px;
    border-radius: 4px;
    background-color: #ff5f5f;
    width: 100%;
}

.bar-fill.empty {
    width: 0%;
}

#reviews {
    padding: .5rem 1.4rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin-top: 1rem;
}
