:host {
    flex-wrap: wrap;
    background: var(--background-color-article);
    padding: 20px;
    border-radius: 10px;
}

:host,
.header {
    display: flex;
    gap: 10px;
}

.header {
    flex: 0 0 100%;
}

.game-logo {
    background-image: var(--game-logo-url);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.game-title {
    flex: 1 1 auto;
    text-align: center;
}

.game-platform {
    display: flex;
    padding: 20px 30px;
    box-sizing: border-box;
}

.game-platform .platform-background {
    background-image: var(--platform-logo-url);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    flex: 1;
}

.incentive-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.incentive-box.box-streamer {
    flex: 1 0 33%;
}

.incentive-box.box-shared {
    flex: 1 1 100%;
}

.game-logo,
.game-platform {
    width: 120px;
}

.streamer,
.game-title,
.incentive,
.description {
    background-color: var(--background-color-article);
    padding: 10px 20px;
    margin: 0;
}

.description {
    margin-bottom: 10px;
    white-space: pre-wrap;
}

.description:empty {
    display: none;
}