.burger {
display: none;
background: none;
border: none;
cursor: pointer;
flex-direction: column;
gap: 5px;
padding: 10px;
position: absolute;
right: 20px;
}

.burger__line {
width: 25px;
height: 3px;
background-color: #fff;
transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
position: absolute;
top: 100px;
left: 0;
width: 100%;
height: calc(100vh - 95px);
background: rgb(14, 19, 27);
display: none;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px;
transition: transform 0.4s ease;
transform: translateY(-100%);
z-index: 10;
}

.mobile-menu .nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 100%;
height: 5px;
background-color: rgb(254, 189, 23);
transform: translateX(-50%) scaleX(0);
transform-origin: center;
transition: transform 0.3s ease;
}

.mobile-menu .nav a:hover::after {
transform: translateX(-50%) scaleX(1);  
}

.mobile-menu .nav {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: center;
gap: 20px;
}

.mobile-menu .nav a {
display: block;
width: 100%;
text-align: center;
padding: 5px 0;
text-decoration: none;
}

.mobile-menu .nav a img {
width: 34px;
height: 24px;
vertical-align: middle;
}

.menu-open .mobile-menu {
display: flex;
transform: translateY(0);
}

.menu-open .burger__line:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
.menu-open .burger__line:nth-child(2) {
opacity: 0;
}
.menu-open .burger__line:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1100px) {
.header-container > .nav,
.header-container > .promo-button {
display: none;
}
.burger {
display: flex;
}
}

@media (max-width: 1100px) {
.banner-wrapper {
height: auto;
padding: 40px 0;
}

.banner-container {
height: auto;
border-radius: 24px;
}

.welcome-banner {
width: 100%;
height: auto;
aspect-ratio: 4/3;
object-fit: cover;
}

.banner-text {
position: relative;
padding: 30px;
align-items: center;
text-align: center;
}

.prime-text {
font-size: 60px;
text-align: center;
}

.mobile-text {
font-size: 50px;
margin-top: -30px;
padding-left: 0;
text-align: center;
}

.prime-description {
font-size: 18px;
line-height: 24px;
max-width: 90%;
text-align: center;
}

.start-button {
width: 80%;
height: 70px;
}

.start-text {
font-size: 22px;
}

.start-icon {
width: 22px;
height: 22px;
}
}

@media (max-width: 768px) {
.banner-wrapper {
height: auto;
padding: 20px 0;
}

.banner-container {
flex-direction: column;
height: auto;
border-radius: 16px;
}

.welcome-banner {
width: 100%;
height: auto;
}

.banner-text {
position: relative;
padding: 20px;
margin-top: 0;
align-items: center;
text-align: center;
}

.prime-text {
font-size: 38px;
text-align: center;
}

.mobile-text {
font-size: 35px;
margin-top: -20px;
padding-left: 0;
text-align: center;
}

.prime-description {
font-size: 16px;
line-height: 22px;
max-width: 90%;
text-align: center;
}

.start-button {
width: 90%;
height: 60px;
margin: 20px auto 0;
}

.start-text {
font-size: 20px;
}

.start-icon {
width: 20px;
height: 20px;
}
}

@media (max-width: 1024px) {
.why-us-header h2 {
width: 100%;
}

.why-us-cards {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.why-us-section {
padding: 40px 15px;
row-gap: 30px;
}

.why-us-header h2 {
font-size: 45px;
text-align: center;
}

.why-us-cards {
grid-template-columns: 1fr;
gap: 15px;
}

.why-card {
font-size: 16px;
padding: 20px;
}
}

@media (max-width: 480px) {
.why-us-header h2 {
font-size: 36px;
}

.why-card {
font-size: 15px;
padding: 18px;
}

.why-card::before {
width: 150px;
height: 150px;
bottom: -80px;
filter: blur(80px);
}
}

@media (max-width: 1400px) {
.faq-image {
display: none;
}

.question-block h2 {
font-size: 55px;
}

.faq {
width: 100%;
}
}

@media (max-width: 768px) {
.faq-section {
padding: 40px 20px;
}

.question-block h2 {
font-size: 42px;
}

.faq-item .question {
padding: 12px 16px;
}

.faq-item .answer p {
padding: 12px 16px;
font-size: 15px;
}
}

@media (max-width: 480px) {
.question-block h2 {
font-size: 32px;
}

.faq-item .question {
padding: 10px 14px;
font-size: 16px;
}

.faq-item .answer p {
padding: 10px 14px;
font-size: 14px;
}
}

@media (max-width: 1024px) {
.social-block h2 {
font-size: 60px;
text-align: center;
}

.social-cards {
flex-direction: column;
align-items: center;
margin-top: 100px;
}

.social-card {
max-width: 500px;
}

.social-icon {
max-width: 60px;
margin-bottom: 60px;
}

.subscribe-btn1,
.subscribe-btn2,
.subscribe-btn3 {
padding: 15px 40px;
margin-top: 60px;
font-size: 18px;
}
}

@media (max-width: 768px) {
.social-block h2 {
font-size: 48px;
text-align: center;
}

.social-card {
font-size: 22px;
padding: 18px;
}

.social-icon {
max-width: 50px;
margin-bottom: 40px;
}

.subscribe-btn1,
.subscribe-btn2,
.subscribe-btn3 {
padding: 14px 35px;
font-size: 16px;
}
}

@media (max-width: 480px) {
.social-block h2 {
font-size: 36px;
text-align: center;
}

.social-card {
font-size: 20px;
padding: 15px;
min-width: 100%;
}

.social-icon {
max-width: 40px;
margin-bottom: 30px;
}

.subscribe-btn1,
.subscribe-btn2,
.subscribe-btn3 {
width: 100%;
padding: 12px 0;
font-size: 16px;
margin-top: 40px;
}
}

@media (max-width: 1024px) {
.footer-nav,
.footer-promo-button {
display: none !important;
}

.footer-header {
border: none;
}

.footer-header-container {
justify-content: center;
}

.footer-bottom {
flex-direction: column;
align-items: flex-start;
gap: 25px;
padding: 25px;
}

.footer-left,
.footer-right {
align-items: flex-start;
text-align: left;
}
}

@media (max-width: 768px) {
.footer-nav,
.footer-promo-button {
display: none !important;
}

.footer-bottom {
flex-direction: column;
align-items: flex-start;
gap: 25px;
padding: 25px;
}

.footer-left,
.footer-right {
align-items: flex-start;
text-align: left;
}
}

@media (max-width: 480px) {
.footer-nav,
.footer-promo-button {
display: none !important;
}

.footer-bottom {
flex-direction: column;
align-items: flex-start;
gap: 25px;
padding: 25px;
}

.footer-left,
.footer-right {
align-items: flex-start;
text-align: left;

}

.footer-right img {
width: 65px;
height: 40px;
}
}

@media (max-width: 1024px) {
.how-to-play-block h2 {
font-size: 55px;
}
.how-to-play-subtitle {
font-size: 22px;
margin-top: 20px;
}
.how-to-play-steps {
gap: 10px;
}
.step-container {
width: 310px;
}
.step-description {
width: 320px;
font-size: 20px;
line-height: 30px;
margin-top: 15px;
}
.step-badge {
width: 100px;
height: 60px;
margin-right: 15px;
padding: 18px;
}
.step-badge span {
font-size: 20px;
}
.step-text {
font-size: 20px;
}
}

@media (max-width: 768px) {
.how-to-play-block h2 {
font-size: 45px;
text-align: center;
}
.how-to-play-subtitle {
font-size: 18px;
margin-top: 15px;
text-align: center;
}
.how-to-play-steps {
gap: 25px;
justify-content: center;
}
.step-container {
width: 280px;
}
.step-description {
width: 100%;
font-size: 18px;
line-height: 28px;
margin-top: 12px;
}
.step-badge {
width: 90px;
height: 55px;
margin-right: 12px;
padding: 15px;
}
.step-badge span {
font-size: 18px;
}
.step-text {
font-size: 18px;
}
}

@media (max-width: 480px) {
.how-to-play-block h2 {
font-size: 35px;
text-align: center;
}
.how-to-play-subtitle {
font-size: 16px;
margin-top: 12px;
text-align: center;
}
.how-to-play-steps {
gap: 20px;
justify-content: center;
}
.step-container {
width: 100%;
max-width: 320px;
}
.step-description {
width: 100%;
font-size: 16px;
line-height: 26px;
margin-top: 10px;
}
.step-badge {
width: 70px;
height: 45px;
margin-right: 10px;
padding: 12px;
}
.step-badge span {
font-size: 15px;
}
.step-text {
font-size: 16px;
}
}

@media (max-width: 1700px) {
.donate-container {
margin: 50px auto 0;
height: 700px;
font-size: 60px;
padding: 30px 40px;
background: none;
border: none;
}
}

@media (max-width: 768px) {
.donate-container {
margin: 40px auto 0;
height: 700px;
font-size: 45px;
padding: 25px 30px;
background: none;
border: none;
}
}

@media (max-width: 480px) {
.donate-container {
margin: 30px auto 0;
height: auto;
font-size: 35px;
padding: 20px 20px;
background: none;
border: none;
}

.model {
width: 400px;
}

}
