/* Styles for App Store App */
#app-appstore {
    background-color: #000;
    color: #fff;
    display: block;
    overflow-y: auto;
}

.appstore-header {
    padding: 55px 20px 10px 20px;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.appstore-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.appstore-date {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
}

.appstore-header h1 {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
}

.profile-avatar-appstore {
    width: 36px;
    height: 36px;
    background-color: #007aff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
}

.appstore-content {
    padding: 10px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.appstore-card {
    background-color: #1c1c1e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.featured-card .featured-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-card-footer {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-icon-small {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    flex-shrink: 0;
}

.app-info {
    flex-grow: 1;
    line-height: 1.2;
    overflow: hidden;
}

.app-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.app-info p {
    margin: 2px 0 0 0;
    font-size: 13px;
    color: #8e8e93;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.appstore-button {
    background-color: #303033;
    color: #0a84ff;
    border: none;
    border-radius: 15px;
    padding: 0 20px;
    height: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    flex-shrink: 0;
}

.appstore-button.get {
    width: 70px;
    padding: 0;
}

.list-card {
    padding: 15px;
}

.list-card .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.list-card .section-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.list-card .section-header a {
    color: #0a84ff;
    text-decoration: none;
    font-size: 16px;
}

.app-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-icon-medium {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    flex-shrink: 0;
}

.list-card .separator {
    height: 1px;
    background-color: #38383a;
    margin: 12px 0 12px 72px; /* 60px icon width + 12px gap */
}