html.banner-dismissed .banner {
	display: none;
}

.banner img {
	width: 100%;
}

html.banner-visible body::before {
	opacity: 1;
}


.banner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 800px;
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	opacity: 0;
	transform: translateY(28px) scale(0.96);
	transition:
	  opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
	  transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
	  box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

html.banner-visible .banner {
	opacity: 1;
	transform: translateY(0) scale(1);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}
.banner {
    position: absolute;
    left: 50%;
    top: 100px;
    margin-left: -400px;
}

.banner__close {
opacity: 0;
transform: scale(0.85);
transition:
  opacity 0.35s ease 0.35s,
  transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.35s,
  color 0.2s;
}

html.banner-visible .banner__close {
	opacity: 1;
	transform: scale(1);
}

.banner__body > * {
opacity: 0;
transform: translateY(14px);
transition:
  opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
  transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

html.banner-visible .banner__body > img {
opacity: 1;
transform: translateY(0);
transition-delay: 0.12s;
}

html.banner-visible .banner__section-title {
opacity: 1;
transform: translateY(0);
transition-delay: 0.2s;
}

html.banner-visible .banner__grid {
opacity: 1;
transform: translateY(0);
transition-delay: 0.28s;
}

html.banner-visible .banner__footer-text {
opacity: 1;
transform: translateY(0);
transition-delay: 0.36s;
}

html.banner-visible .banner__socials {
opacity: 1;
transform: translateY(0);
transition-delay: 0.44s;
}

@media (prefers-reduced-motion: reduce) {
body::before,
.banner,
.banner__close,
.banner__body > * {
  transition: none !important;
}

html.banner-visible .banner,
html.banner-visible .banner__close,
html.banner-visible .banner__body > * {
  opacity: 1;
  transform: none;
}
}

.banner__close {
position: absolute;
top: 16px;
right: 16px;
z-index: 2;
width: 32px;
height: 32px;
border: none;
background: transparent;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: #b0b0b0;
}

.banner__close:hover {
color: #666;
}

.banner__header {
position: relative;
padding: 48px 40px 36px;
background: linear-gradient(135deg, #fff1e6 0%, #ffe8d6 50%, #ffd9b8 100%);
overflow: hidden;
text-align: center;
}

.banner__header::before,
.banner__header::after {
content: '';
position: absolute;
border-radius: 8px;
opacity: 0.35;
}

.banner__header::before {
top: -20px;
left: -30px;
width: 120px;
height: 80px;
background: #fff;
transform: rotate(-25deg);
}

.banner__header::after {
top: 10px;
right: 60px;
width: 90px;
height: 60px;
background: #ff9f43;
transform: rotate(15deg);
opacity: 0.2;
}

.banner__decor {
position: absolute;
border-radius: 6px;
opacity: 0.25;
background: #fff;
}

.banner__decor--1 {
top: 30px;
right: 120px;
width: 70px;
height: 45px;
transform: rotate(20deg);
}

.banner__decor--2 {
bottom: 20px;
left: 40px;
width: 55px;
height: 35px;
background: #ff9f43;
opacity: 0.15;
transform: rotate(-15deg);
}

.banner__decor--3 {
top: 60px;
left: 80px;
width: 45px;
height: 30px;
transform: rotate(10deg);
}

.banner__title {
position: relative;
z-index: 1;
font-size: 22px;
font-weight: 700;
color: #2d2d2d;
margin-bottom: 16px;
line-height: 1.35;
}

.banner__subtitle {
position: relative;
z-index: 1;
font-size: 14px;
font-weight: 400;
color: #444;
max-width: 560px;
margin: 0 auto;
line-height: 1.6;
}

.banner__body {
padding: 20px;
}

.banner__section-title {
text-align: center;
font-size: 20px;
font-weight: 500;
color: #1B1B1C;
margin-bottom: 16px;
margin-top: 40px;
}

.banner__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
margin-bottom: 40px;
}

.banner__card {
display: flex;
align-items: center;
gap: 14px;
padding: 16px 18px;
background: #f5f5f5;
border-radius: 12px;
}

.banner__card svg {
width: 40px;
height: 40px;
flex-shrink: 0;
}

.banner__card-text {
font-size: 16px;
font-weight: 400;
color: #1B1B1C;
}

.banner__footer-text {
text-align: center;
font-size: 16px;
color: #1B1B1C;
margin-bottom: 24px;
max-width: 560px;
margin-left: auto;
margin-right: auto;
}

.banner__footer-text a {
color: #007bff;
text-decoration: none;
}

.banner__footer-text a:hover {
text-decoration: underline;
}

.banner__socials {
display: flex;
align-items: flex-start;
justify-content: center;
gap: 40px;
}

.banner__social {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
text-decoration: none;
color: inherit;
width: 80px;
}

.banner__social-icon {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.banner__social-label {
font-size: 16px;
color: #7B7B7B;
font-weight: 400;
}

@media (max-width: 600px) {
.banner__header {
  padding: 40px 24px 28px;
}

.banner__body {
  padding: 24px 20px 32px;
}

.banner__title {
  font-size: 18px;
}

.banner__grid {
  grid-template-columns: 1fr;
}

.banner__socials {
  gap: 28px;
}
}