Pilot Chicken by Spribe



/*
.pc-hero {
position: relative;
width: 100%;
min-height: 480px;
background-image: url(‘ВАШ_URL_КАРТИНКИ’);
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.pc-hero__overlay {
position: absolute;
inset: 0;
background: rgba(10, 10, 20, 0.42);
z-index: 0;
}

.pc-hero__buttons {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
padding: 32px 20px;
}

.pc-hero__btn {
display: block;
min-width: 260px;
padding: 17px 36px;
border-radius: 12px;
font-size: 17px;
font-weight: 700;
text-align: center;
text-decoration: none !important;
cursor: pointer;
border: none;
transition: transform 0.15s ease, filter 0.15s ease;
letter-spacing: 0.3px;
line-height: 1.3;
}

.pc-hero__btn:hover {
transform: translateY(-2px);
filter: brightness(1.09);
text-decoration: none !important;
}

.pc-hero__btn–money {
background: linear-gradient(135deg, #f5a623 0%, #f07d18 100%);
color: #1a0a00 !important;
box-shadow: 0 4px 18px rgba(245, 166, 35, 0.45);
}

.pc-hero__btn–demo {
background: linear-gradient(135deg, #7b2fff 0%, #5a1fd1 100%);
color: #ffffff !important;
box-shadow: 0 4px 18px rgba(123, 47, 255, 0.45);
}

@media (max-width: 480px) {
.pc-hero {
min-height: 360px;
}
.pc-hero__btn {
min-width: 220px;
font-size: 15px;
padding: 14px 26px;
}
}
*/