.guest-game-banner {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin: 0 0 22px;
    padding: 16px 18px;
    box-sizing: border-box;
    color: #2d3748;
    background: #f7fbff;
    border: 1px solid #bee3f8;
    border-left: 5px solid #3182ce;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(45, 55, 72, 0.06);
}

.guest-game-banner__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #ffffff;
    border: 1px solid #bee3f8;
    border-radius: 50%;
    font-size: 27px;
    line-height: 1;
}

.guest-game-banner__content {
    min-width: 0;
}

.guest-game-banner__label {
    display: block;
    margin-bottom: 2px;
    color: #2b6cb0;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.guest-game-banner__title {
    display: block;
    margin-bottom: 3px;
    color: #1a365d;
    font-size: 1.05rem;
}

.guest-game-banner__content p {
    margin: 0;
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.45;
}

.guest-game-banner__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.guest-game-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px;
    box-sizing: border-box;
    border: 1px solid #3182ce;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.guest-game-banner__button--primary {
    color: #ffffff;
    background: #3182ce;
}

.guest-game-banner__button--primary:hover,
.guest-game-banner__button--primary:focus-visible {
    color: #ffffff;
    background: #2b6cb0;
    border-color: #2b6cb0;
}

.guest-game-banner__button--secondary {
    color: #2b6cb0;
    background: #ffffff;
}

.guest-game-banner__button--secondary:hover,
.guest-game-banner__button--secondary:focus-visible {
    color: #1a365d;
    background: #ebf8ff;
    border-color: #2b6cb0;
}

@media (max-width: 850px) {
    .guest-game-banner {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }

    .guest-game-banner__icon {
        width: 44px;
        height: 44px;
        font-size: 23px;
    }

    .guest-game-banner__actions {
        grid-column: 1 / -1;
        padding-left: 56px;
    }
}

@media (max-width: 560px) {
    .guest-game-banner {
        grid-template-columns: 38px minmax(0, 1fr);
        margin-bottom: 16px;
        padding: 12px;
        border-left-width: 4px;
    }

    .guest-game-banner__icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .guest-game-banner__label {
        font-size: 0.66rem;
    }

    .guest-game-banner__title {
        font-size: 0.98rem;
    }

    .guest-game-banner__content p {
        margin-top: 5px;
        font-size: 0.84rem;
    }

    .guest-game-banner__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        padding-left: 0;
    }

    .guest-game-banner__button {
        width: 100%;
    }
}
