* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #fff;
    color: #000;
    padding-bottom: env(safe-area-inset-bottom);
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding-top: env(safe-area-inset-top);
}

.search-header {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: #3C66F5;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.search-back {
    width: 24px;
    height: 24px;
    fill: #fff;
    cursor: pointer;
}

.search-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #D0DFFF;
    border-radius: 12px;
    padding: 8px 12px;
}

.search-icon {
    width: 16px;
    height: 16px;
    fill: #000;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 17px;
    margin-left: 8px;
    outline: none;
    height: 22px;
}

.search-input::placeholder {
    color: rgb(118,156,255);
}

.trending-title {
    padding: 20px 16px 12px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.trending-list {
    padding: 0 16px;
}

.trending-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

.trending-item .number {
    color: #000;
    font-size: 17px;
    font-weight: 500;
    width: 24px;
}

.trending-item img {
    width: 56px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.trending-item .info {
    flex: 1;
    padding: 4px 0;
}

.trending-item .info .title {
    font-size: 17px;
    font-weight: 500;
    color: #000;
    margin-bottom: 4px;
}

.trending-item .info .categories {
    font-size: 15px;
    color: #717171;
}

.trending-item .plays {
    color: #000;
    font-size: 15px;
    text-align: right;
    white-space: nowrap;
}
a {
    text-decoration: none;
}
@media (min-width: 1025px) {
    .container{
        max-width: 1200px;
    }
}