.appstore-app {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    z-index: 6;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.appstore-open {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

.appstore-header {
    padding: 15px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.appstore-title {
    font-size: 18px;
    font-weight: bold;
}

.appstore-content {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.appstore-tabs {
    display: flex;
    justify-content: space-around;
    background-color: #f5f5f5;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.appstore-tab {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
}

.appstore-tab.active {
    background-color: #007aff;
    color: white;
}

.appstore-featured {
    margin-bottom: 20px;
}

.featured-header {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.app-item {
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    display: flex;
}

.app-icon-container {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.app-icon-small {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.app-details {
    flex: 1;
}

.app-name {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 16px;
}

.app-developer {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.app-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ratings-stars {
    color: #ffc107;
    margin-right: 5px;
}

.ratings-count {
    color: #999;
    font-size: 13px;
}

.get-button {
    background-color: #f0f0f0;
    border-radius: 20px;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 14px;
    color: #007aff;
    border: none;
    cursor: pointer;
    margin-left: auto;
    align-self: center;
}

.free-label {
    color: #999;
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
}

.app-categories {
    margin-bottom: 10px;
}

.category-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.category-scroll {
    display: flex;
    overflow-x: auto;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex: 0 0 auto;
    width: 80px;
    margin-right: 15px;
    text-align: center;
}

.category-icon {
    width: 60px;
    height: 60px;
    background-color: #eef;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #007aff;
    font-size: 24px;
}

.category-name {
    font-size: 12px;
    color: #333;
}

