* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html, body {
font-family: 'Montserrat', sans-serif;
height: 100%;
margin: 0;
padding: 0;
background-color: #0E131B;
background-image: url('../img/background.svg');
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
background-attachment: fixed;
opacity: 0;
animation: fadeIn 0.5s ease forwards;
user-select: none;
scroll-behavior: smooth;
}

@keyframes fadeIn {
to {
opacity: 1;
}
}

.site-header {
width: 100%;
height: 95px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
background: rgb(14, 19, 27);
display: flex;
align-items: center;
position: relative;
z-index: 10;
}

.header-container {
max-width: 1600px; 
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
margin: 0 auto;
}

.logo img {
width: 60px;
height: 50px;
object-fit: contain;
transition: transform 0.3s ease, rotate 0.3s ease;
}

.logo:hover img {
transform: scale(1.1) rotate(5deg);
}

.nav {
max-width: 1600px;
width: 100%;
display: flex;
justify-content: center;
position: relative;
}

.nav a {
display: flex;
align-items: center;
gap: 10px;
color: rgb(98, 98, 98);
font-family: 'Gilroy', sans-serif;
font-size: 22px;
font-weight: 700;
font-style: italic;
text-transform: uppercase;
text-decoration: none;
white-space: nowrap;
margin: 0 15px;
position: relative;
transition: color 0.3s ease, background-color 0.3s ease;

}

.nav a:hover {
color: rgb(255, 255, 255);
background-color: rgb(14, 19, 27);
}

.nav a:hover img {
filter: brightness(0) saturate(100%) invert(66%) sepia(98%) saturate(330%) hue-rotate(4deg) brightness(97%) contrast(104%);
}

.nav a::after {
content: '';
position: absolute;
bottom: -35px;
left: 0;
width: 100%;
height: 3px;
background-color: rgb(254, 189, 23);
transform: scaleX(0);
transform-origin: bottom right;
transition: transform 0.3s ease;
}

.nav a:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}

.nav a img {
width: 24px;
height: 24px;
transition: fill 0.3s ease;
}

.promo-button {
width: 225px;
height: 71px;
border-radius: 15px;
border: none;
cursor: pointer;
background: rgb(255, 190, 23);
box-shadow: 0px 20px 100px rgba(255, 190, 23, 0.25), inset 0px 4px 0px rgba(255, 255, 255, 0.5);
font-family: 'DIN Pro', sans-serif;
font-size: 22px;
font-weight: 900;
font-style: italic;
text-align: center;
color: #000;
transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.promo-button:hover {
background: rgb(255, 220, 100);
box-shadow: 0px 20px 100px rgba(255, 190, 23, 0.35), inset 0px 4px 0px rgba(255, 255, 255, 0.7);
transform: scale(1.05);
}

.banner-wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}

.banner-container {
position: relative;
max-width: 1600px;
width: 100%;
border-radius: 32px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.200);
margin: 0 auto;

}

.banner-blur {
position: absolute;
width: 110%;
height: 200%;
left: -50%;
top: -50%;
background: rgb(14, 19, 27);
filter: blur(300px);
z-index: 1;
pointer-events: none;

}

.welcome-banner {
width: 100%;
height: auto;
display: block;
position: relative;
z-index: 0;
}

.banner-text {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 10px;
max-width: 100%;
padding-left: 25px;
margin-top: -20px;
position: absolute;
z-index: 2;
top: 0;
left: 0;
right: 0;
bottom: 0;
color: white;
}

.prime-text {
color: rgb(254, 189, 23);
font-family: 'DIN Pro', sans-serif;
font-weight: 900;
font-style: italic;
font-size: 75px;
text-align: left;
}

.mobile-text {
color: rgb(255, 255, 255);
font-family: 'DIN Pro', sans-serif;
font-style: italic;
font-weight: 500;
font-size: 75px;
padding-left: 30px;
margin-top: -50px;
}

.prime-description {
color: rgb(255, 255, 255);
font-family: Gilroy, sans-serif;
font-weight: 600;
font-size: 20px;
line-height: 25px;
text-align: left;
max-width: 500px;
}

.start-button {
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
background: rgb(255, 190, 23);
border-radius: 15px;
box-shadow: 0px 20px 100px 0px rgba(255, 190, 23, 0.25), inset 0px 4px 0px 0px rgba(255, 255, 255, 0.5);
width: 300px;
height: 80px;
transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
user-select: none;
}

.start-button:hover {
background: rgb(255, 220, 100); 
box-shadow: 0px 20px 100px rgba(255, 190, 23, 0.35), inset 0px 4px 0px rgba(255, 255, 255, 0.7);
transform: scale(1.05);
}

.start-icon {
margin-right: 10px;
width: 25px;
height: 25px;
}

.start-text {
font-family: 'DIN Pro', sans-serif;
font-size: 25px;
font-weight: 900;
font-style: italic;
line-height: 32px;
text-align: center;
color: #000;
text-decoration: none;
}

.why-us-section {
max-width: 1600px;
margin: 0 auto;
padding: 60px 25px; 
display: grid;
row-gap: 40px;
}

.why-us-header {
display: flex;
align-items: center;
}

.why-us-header h2 {
font-family: 'DIN Pro', sans-serif;
font-size: 75px;
font-weight: 900;
font-style: italic;
color: rgb(254, 189, 23);
margin: 0;
text-transform: uppercase;
}

.why-us-header .highlight-text {
display: block;
color: #fff;
}

.why-us-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.why-card {
position: relative;
background: rgb(14, 19, 27);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 30px;
padding: 25px;
color: #fff;
font-family: 'Gilroy', sans-serif;
font-size: 18px;
font-weight: 600;
line-height: 1.3;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}

.why-card::before {
content: "";
position: absolute;
bottom: -100px;
left: 50%;
transform: translateX(-50%);
width: 200px;
height: 200px;
background: rgba(254, 189, 23, 0.35);
filter: blur(100px);
border-radius: 50%;
z-index: 0;
}


.text-container {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.title {
color: rgb(255, 255, 255);
font-family: 'DIN Pro', sans-serif;
font-size: 25px;
font-style: italic;
font-weight: 900;
line-height: 37px;
letter-spacing: 0%;
text-align: left;
text-transform: uppercase;
}

.subtitle {
color: rgb(255, 255, 255);
font-family: 'DIN Pro', sans-serif;
font-weight: 500;
font-size: 20px;
line-height: 28px;
margin-top: 15px;
z-index: 1;
}

.icon {
width: 50%;
height: auto;
margin-top: 20px; 
}

.faq-section {
max-width: 1600px;
margin: 0 auto;
padding: 60px 25px;
display: flex;
flex-direction: column;
gap: 40px;
}

.question-block h2 {
font-family: 'DIN Pro', sans-serif;
font-size: 75px;
font-weight: 900;
font-style: italic;
text-transform: uppercase;
color: rgb(254, 189, 23);
line-height: 1.1;
}

.question-block .highlight-text {
display: block;
color: #fff;
}

.faq {
max-width: 800px;
width: 100%;
font-size: 20px;
line-height: 22px;
font-weight: 500;
}

.faq-item {
display: flex;
flex-direction: column;
gap: 8px;
border-radius: 20px;
background: rgb(14,19,27);
margin-bottom: 20px;
overflow: visible;
transition: transform .2s, box-shadow .2s;
}

.faq-item:hover {
transform: translateY(-3px);
box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.faq-item .question {
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
background: rgb(14,19,27);
color: #fff;
border-radius: 20px;
transition: background .3s, color .3s;
border: 1px solid rgb(102,102,102);
user-select: none;
}

.faq-item .question .arrow {
transition: transform .3s ease;
user-select: none;
}

.faq-item .answer {
display: none;
margin-top: 4px;
}

.faq-item .answer p {
margin: 0;
padding: 15px 20px;
background: rgb(14,19,27);
color: #fff;
border: 1px solid rgb(102,102,102);
border-radius: 20px;
line-height: 1.4;
font-size: 16px;
}

.faq-item.active .question {
background: rgb(254,189,23);
color: #000;
}

.faq-item.active .question .arrow {
transform: rotate(180deg);
}

.faq-item.active .answer {
display: block;
}

.faq-wrapper {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}

.faq-image {
max-width: 500px;
width: 100%;
object-fit: contain;
border-radius: 20px;
margin-top: -150px;
}

.faq-social {
max-width: 1600px;
margin: 0 auto;
padding: 60px 25px;
display: flex;
flex-direction: column;
gap: 40px;
}

.social-block h2 {
font-family: 'DIN Pro', sans-serif;
font-size: 75px;
font-weight: 900;
font-style: italic;
text-transform: uppercase;
color: rgb(254, 189, 23);
line-height: 1.1;
}

.social-block .highlight-text {
display: block;
color: #fff;
}

.social-cards {
display: flex;
justify-content: space-between;
gap: 30px;
flex-wrap: wrap;
position: relative;
margin-top: 200px;
}

.social-card {
flex: 1;
min-width: 300px;
padding: 20px;
color: #fff;
border: 1px solid #666;
border-radius: 20px;
transform: rotate(0deg);
transition: transform 0.3s ease, box-shadow 0.3s ease;
color: rgb(255, 255, 255);
font-family: 'Gilroy', sans-serif;
font-style: italic;
font-weight: 700;
font-size: 25px;
text-align: center;

}

.social-card:hover {
transform: scale(1.02);
box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}


.social-icon {
max-width: 80px;
margin-bottom: 100px;
}

.subscribe-btn1, .subscribe-btn2, .subscribe-btn3 {
border: 1px solid #666;
border-radius: 12px;
background: #0077FF;
color: #fff;
padding: 20px 50px;
margin-top: 100px;
cursor: pointer;
font-family: 'Gilroy', sans-serif;
font-weight: 900;
font-size: 20px;
text-transform: uppercase;
font-style: italic;
transition: all 0.3s ease;
}

.subscribe-btn1 {
background: rgb(0, 162, 255);
}

.subscribe-btn2 {
background:  rgb(0, 119, 255);
}

.subscribe-btn3 {
background:  rgb(88, 101, 242);
}

.subscribe-btn1:hover {
background: rgb(0, 162, 255);
}

.subscribe-btn2:hover {
background: rgb(0, 189, 255);
}

.subscribe-btn3:hover {
background: rgb(101, 133, 242);
}


.footer-header {
width: 100%;
height: 250px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
position: relative;
z-index: 10;
margin-top: 150px;
/* Градиентный фон для плавного перехода */
background: linear-gradient(to bottom, rgba(14, 19, 27, 0.2) 0%, rgba(14, 19, 27, 0.7) 30%, rgba(14, 19, 27, 0.8) 100%);
/* Усиленный эффект размытия по Гауссу (матовое стекло) */
backdrop-filter: blur(25px);
-webkit-backdrop-filter: blur(25px); /* Для Safari */
/* Тонкая светящаяся тень сверху для плавного перехода */
box-shadow: 0 -10px 40px 0 rgba(14, 19, 27, 0.3);
border-radius: 0;
padding: 20px 0;
/* Блеск для эффекта стекла */
position: relative;
overflow: hidden;
}

/* Создаем световой эффект на стекле */
.footer-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-header-container {
max-width: 1600px;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;

}

.footer-logo img {
width: 60px;
height: 50px;
object-fit: contain;
transition: transform 0.3s ease, rotate 0.3s ease;
}

.footer-logo:hover img {
transform: scale(1.1) rotate(5deg);
}

.footer-nav {
max-width: 1600px;
width: 100%;
display: flex;
justify-content: center;
position: relative;
}

.footer-nav a {
display: flex;
align-items: center;
gap: 10px;
color: rgb(98, 98, 98);
font-family: 'Gilroy', sans-serif;
font-size: 22px;
font-weight: 700;
font-style: italic;
text-transform: uppercase;
text-decoration: none;
margin: 0 15px;
position: relative;
transition: color 0.3s ease, background-color 0.3s ease;
}

.footer-nav a:hover {
color: rgb(255, 255, 255);
background-color: rgb(14, 19, 27);
}

.footer-nav a:hover img {
filter: brightness(0) saturate(100%) invert(66%) sepia(98%) saturate(330%) hue-rotate(4deg) brightness(97%) contrast(104%);
}

.footer-nav a::after {
content: '';
position: absolute;
bottom: -35px;
left: 0;
width: 100%;
height: 3px;
background-color: rgb(254, 189, 23);
transform: scaleX(0);
transform-origin: bottom right;
transition: transform 0.3s ease;
}

.footer-nav a:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}

.footer-nav a img {
width: 24px;
height: 24px;
transition: fill 0.3s ease;
}

.footer-promo-button {
width: 225px;
height: 71px;
border-radius: 15px;
border: none;
cursor: pointer;
background: rgb(255, 190, 23);
box-shadow: 0px 20px 100px rgba(255, 190, 23, 0.25), inset 0px 4px 0px rgba(255, 255, 255, 0.5);
font-family: 'DIN Pro', sans-serif;
font-size: 22px;
font-weight: 900;
font-style: italic;
text-align: center;
color: #000;
transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.footer-promo-button:hover {
background: rgb(255, 220, 100);
box-shadow: 0px 20px 100px rgba(255, 190, 23, 0.35), inset 0px 4px 0px rgba(255, 255, 255, 0.7);
transform: scale(1.05);
}


.footer-bottom {
max-width: 1600px;
width: 100%;
display: flex;
align-items: flex-start;
justify-content: space-between; 
position: relative;
padding: 15px;
}

.footer-left {
display: flex;
flex-direction: column;
gap: 20px;
}

.footer-link {
color: rgb(98, 98, 98);
font-family: 'Gilroy', sans-serif;
font-size: 18px;
font-weight: 500;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-link:hover {
color: white;
}

.footer-info {
color: rgb(98, 98, 98);
font-family: 'Gilroy', sans-serif;
font-size: 16px;
font-weight: 400;
margin-top: 0;
}

.footer-right {
display: flex;
align-items: flex-start;
gap: 20px;
margin-top: 0;
transition: transform 0.3s ease;
}

.footer-right img {
width: 65px;
height: 40px;
transition: transform 0.3s ease;
}

.footer-right img:hover {
transform: scale(1.1);
}

/* Медиа-запрос для дисплеев 1920x1080 */
@media (width: 1920px) and (height: 1080px) {
  .footer-header-container {
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .footer-logo {
    margin-right: 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
  
  .footer-left {
    margin-bottom: 20px;
  }
  
  .footer-right {
    justify-content: center;
  }
}

/************ HOW-TO-PLAY ************/

.how-to-play-section {
max-width: 1600px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 40px;
margin-top: 50px;
user-select: none;
}

.how-to-play-block h2 {
font-family: 'DIN Pro', sans-serif;
font-size: 75px;
font-weight: 900;
font-style: italic;
text-transform: uppercase;
color: rgb(254, 189, 23);
line-height: 1.1;
}

.how-to-play-block .highlight-text {
display: block;
color: #fff;
}

.how-to-play-subtitle {
color: rgb(255, 255, 255);
font-family: 'Gilroy', sans-serif;
font-size: 25px;
font-weight: 600;
margin-top: 30px;
}

.how-to-play-step {
display: flex;
flex-direction: row;
align-items: center;
margin-top: 20px;
}

.step-badge {
box-sizing: border-box;
border-radius: 15px;
backdrop-filter: blur(25px);
background: radial-gradient(49.00% 50.00% at 51% 50%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 100%), rgba(14, 19, 27, 0.8);
width: 114px;
height: 67px;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
margin: 0 20px 0 0;
}

.step-badge span {
color: rgb(255, 255, 255);
font-family: 'DIN Pro', sans-serif;
font-size: 22px;
font-weight: 900;
text-align: center;
font-style: italic;
}

.step-text {
color: rgb(255, 255, 255);
font-family: 'Gilroy', sans-serif;
font-size: 22px;
font-weight: 600;
}

.step-description {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
width: 360px;
color: rgb(222, 222, 222);
font-family: 'Gilroy', sans-serif;
font-size: 22px;
font-weight: 500;
line-height: 32px;
margin-top: 20px;
z-index: 1;
}

.step-image {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
margin-bottom: 20px;
}

.step-frame {
max-width: 100%;
height: auto;
border-radius: 12px;
}

.how-to-play-steps {
display: flex;
flex-wrap: wrap;
max-width: 1600px;
width: 100%;
margin-top: 40px;
justify-content: space-between;
}

.step-container {
display: flex;
flex-direction: column;
align-items: flex-start;
width: 320px; 
}

/************ DONATE ************/

.donate-container {
max-width: 1600px;
width: 100%;
margin: 120px auto;
box-sizing: border-box;
position: relative;
background: url('../img/donatebanner.svg') no-repeat center center;
height: 950px;
background-size: cover;
border-radius: 10px;
border: 1px solid rgb(102,102,102);
display: block;
font-family: 'DIN Pro', sans-serif;
font-size: 75px;
font-weight: 900;
font-style: italic;
text-transform: uppercase;
color: rgb(254, 189, 23);
line-height: 1.1;
padding: 40px 60px;
}

.donate-container .highlight-text {
display: block;
color: #fff;
}

.donate-subtitle {
color: rgb(255, 255, 255);
font-family: 'Gilroy', sans-serif;
font-size: 25px;
font-weight: 600;
font-style: normal;
text-transform: none;
margin-top: 20px;
max-width: 600px; 
}

.model {
width: 500px;
height: 70px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 20px 16px;
box-sizing: border-box;
border: 1px solid rgb(40, 40, 40);
border-radius: 20px;
background: rgb(14, 19, 27);
margin: 10px 0;
gap: 20px;
font-family: 'Gilroy', sans-serif;
font-size: 20px;
font-weight: 600;
color: rgb(222, 222, 222);
}


.model-icon {
width: 20px; 
height: auto;
flex-shrink: 0;
}

.model-text {
flex-grow: 1;
font-style: normal;
}


.model-arrow {
width: 24px; 
height: auto;
flex-shrink: 0;
}

.models-list {
display: flex;
flex-direction: column;
margin-top: 20px;
}

.model-input {
flex-grow: 1;
background: transparent;
border: none;
outline: none;
color: rgb(222, 222, 222);
font-family: 'Gilroy', sans-serif;
font-size: 20px;
font-weight: 600;
opacity: 1;
text-transform: none;
}

.model-input::placeholder {
color: rgb(222, 222, 222);
opacity: 0.5;
text-transform: none;
}

.model-input::placeholder {
opacity: 0.5;
color: rgb(222, 222, 222);
text-transform: none;
}


.conversion-label {
color: rgb(254, 189, 23);
font-size: 20px;
font-weight: 600;
white-space: nowrap;
}


.custom-checkbox {
display: flex;
align-items: center;
gap: 12px;
margin-top: 20px;
max-width: 1600px;
width: 100%;
}

.checkbox-border {
display: flex;
justify-content: center;
align-items: center;
width: 30px;
height: 30px;
border-radius: 10px;
background: transparent;
border: 1px solid rgb(102, 102, 102);
cursor: pointer;
flex-shrink: 0;
}

.checkbox-check {
width: 16px;
height: 16px;
object-fit: contain;
display: none;
}

.checkbox-border.checked {
background: rgb(255, 190, 23);
}

.checkbox-border.checked .checkbox-check {
display: block;
}

.checkbox-text {
color: rgb(222, 222, 222);
font-family: 'Gilroy', sans-serif;
font-size: 20px;
font-weight: 500;
font-style: normal;
text-transform: none;
}

.underline {
text-decoration: underline;
cursor: pointer;
}

.buttons-wrapper {
display: flex;
gap: 20px;
margin-top: 20px;
max-width: 530px; 
width: 100%;
}

.pay-button {
display: flex;
align-items: center;
justify-content: center;
background: rgb(255, 190, 23);
border-radius: 15px;
box-shadow: 0px 20px 100px 0px rgba(255, 190, 23, 0.25), inset 0px 4px 0px 0px rgba(255, 255, 255, 0.5);
width: 250px;
height: 80px;
font-family: 'DIN Pro', sans-serif;
font-size: 25px;
font-weight: 900;
font-style: italic;
text-transform: uppercase;
color: rgb(0,0,0);
cursor: pointer;
user-select: none;
transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
border: none;
}

.pay-button:hover {
background: rgb(255, 220, 100);
box-shadow: 0px 20px 100px rgba(255, 190, 23, 0.35), inset 0px 4px 0px rgba(255, 255, 255, 0.7);
transform: scale(1.05);
}

.cancel-button {
box-sizing: border-box;
border-radius: 15px;
width: 250px;
height: 80px;
backdrop-filter: blur(25px);
background: radial-gradient(49% 50% at 51% 50%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 100%), rgba(14, 19, 27, 0.8);
color: rgb(255, 255, 255);
font-family: 'DIN Pro', sans-serif;
font-size: 25px;
font-weight: 900;
text-align: center;
border: none;
cursor: pointer;
user-select: none;
transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.cancel-button:hover {
background: radial-gradient(49% 50% at 51% 50%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1) 100%), rgba(14, 19, 27, 0.9);
box-shadow: 0px 20px 100px rgba(14, 19, 27, 0.35), inset 0px 4px 0px rgba(255, 255, 255, 0.15);
transform: scale(1.05);
}


.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0; top: 0;
width: 100%; height: 100%;
background-color: rgba(0, 0, 0, 0.5);
align-items: center;
justify-content: center;
}

.modal-content {
background-color: #fff;
border-radius: 8px;
padding: 20px;
width: 300px;
max-width: 90%;
box-shadow: 0 2px 10px rgba(0,0,0,0.3);
position: relative;
}

.close-button {
position: absolute;
right: 10px; top: 10px;
font-size: 24px;
cursor: pointer;
}

.payment-options {
display: flex;
flex-direction: column;
gap: 15px;
margin-top: 20px;
}

.payment-option {
display: flex;
align-items: center;
gap: 10px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.2s;
}

.payment-option:hover {
background-color: #f0f0f0;
}

.payment-option img {
width: 30px;
height: 30px;
}
