.guest-banner {
max-width: 600px;
margin: 0 auto;
padding: 15px;
padding-top: 100px;
padding-bottom: 5px;
position: relative;
z-index: 10;
}
.guest-banner-content {
background: #1e2433;
border: 1px solid rgba(74, 158, 255, 0.1);
border-radius: 12px;
padding: 12px 16px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
transition: all 0.3s ease;
}
.guest-banner-content:hover {
background: #252d3f;
border-color: rgba(74, 158, 255, 0.2);
}
.guest-banner-left {
display: flex;
align-items: center;
gap: 10px;
flex: 1;
}
.guest-banner-logo {
width: 40px;
height: 40px;
border-radius: 6px;
flex-shrink: 0;
}
.guest-banner-text {
flex: 1;
}
.guest-banner-title {
font-size: 15px;
font-weight: 600;
color: #ffffff;
margin: 0 0 2px 0;
}
.guest-banner-subtitle {
font-size: 12px;
color: rgba(255, 255, 255, 0.6);
margin: 0;
line-height: 1.3;
}
.guest-banner-button {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 8px;
color: #ffffff;
font-size: 13px;
font-weight: 500;
padding: 8px 20px;
cursor: pointer;
transition: all 0.2s ease;
white-space: nowrap;
flex-shrink: 0;
display: flex;
align-items: center;
gap: 6px;
}
.guest-banner-button:hover {
background: rgba(255, 255, 255, 0.15);
border-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
.guest-banner-left {
flex-direction: column;
text-align: center;
gap: 12px;
}
.guest-banner-content {
flex-direction: column;
padding: 16px;
}
.guest-banner-button {
width: 100%;
}
}
