* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html, body {
height: 100%;
}

img, picture, video, canvas {
display: block;
max-width: 100%;
}

input, button, textarea, select {
font: inherit;
}

body {
overflow-x: hidden;
font-family: Montserrat, Arial, Helvetica, sans-serif;
font-size: 16px;
line-height: 1.4;
color: #000;
min-width: 320px;
background: linear-gradient(135deg, rgb(30, 0, 92), rgb(58, 21, 120), rgb(87, 52, 147));
}

main {
padding: 1rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: start;
min-height: 100vh;
gap: 1rem;
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #3a0d0d, #8b0000);
}

@media (min-width: 768px) {
main {
padding: 2rem;
}
}

.wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2rem;
max-width: 1200px;
width: 100%;
}
.logoContainer {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
margin-bottom: 1rem;
width: 300px;
}
img {
width: 100%;
height: auto;
}

.heroWrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1rem;
width: 100%;
}

.heroWrapper::before {
content: '';
display: none;
position: absolute;
top: 100px;
right: 50px;
width: 430px;
height: 300px;
background: linear-gradient(135deg, rgba(255, 0, 102, 0.5), rgba(255, 204, 0, 0.5));
border-radius: 50%;
z-index: 0;
animation: blobAnimation2 25s infinite;
animation-timing-function: ease-in-out;
}

@media (min-width: 768px) {
.heroWrapper::before {
display: block;
}
}

@keyframes blobAnimation2 {
0%, 100% {
transform: translate(0, 0) scale(1);
border-radius: 50% 50% 50% 50%;
}

25% {
transform: translate(20px, -30px) scale(1.1);
border-radius: 42% 58% 33% 67% / 53% 47% 53% 47%;
}

50% {
transform: translate(-20px, 20px) scale(1);
border-radius: 58% 42% 63% 37% / 47% 53% 57% 43%;
}

75% {
transform: translate(30px, 10px) scale(0.9);
border-radius: 47% 53% 47% 53% / 58% 42% 48% 52%;
}
}

.heroContainer {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1rem;
width: 100%;
min-height: 700px;
padding: 2rem;
overflow: hidden;
border: 1px solid rgba(0, 0, 0, 0.5);
z-index: 2;
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
background: rgba(0, 0, 0, 0.6);
border-radius: 20px;
box-shadow: 0px 0px 20px rgba(255, 215, 0, 0.3);
}

.heroContainer::before {
content: '';
position: absolute;
top: -150px;
left: -150px;
width: 400px;
height: 400px;
background: linear-gradient(135deg, rgba(255, 0, 102, 0.5), rgba(255, 204, 0, 0.5));
border-radius: 50%;
z-index: 0;
animation: blobAnimation3 25s infinite;
animation-timing-function: ease-in-out;
}

@keyframes blobAnimation3 {
0%, 100% {
transform: translate(0, 0) scale(1);
border-radius: 50% 50% 50% 50%;
}

30% {
transform: translate(-15px, 25px) scale(1.1);
border-radius: 60% 40% 45% 55% / 60% 40% 50% 50%;
}

60% {
transform: translate(25px, -15px) scale(0.9);
border-radius: 50% 50% 60% 40% / 40% 60% 45% 55%;
}

90% {
transform: translate(-20px, 10px) scale(1.05);
border-radius: 45% 55% 55% 45% / 55% 45% 50% 50%;
}
}

.heroWrapper::after {
content: '';
position: absolute;
bottom: 180px;
width: 80%;
max-width: 550px;
height: 250px;
background: linear-gradient(135deg, rgba(0, 255, 153, 0.5), rgba(255, 255, 0, 0.5));
border-radius: 50%;
z-index: 0;
animation: blobAnimation1 30s infinite;
animation-timing-function: ease-in-out;
}

@keyframes blobAnimation1 {
0%, 100% {
transform: translate(0, 0) scale(1);
border-radius: 50% 50% 50% 50%;
}

20% {
transform: translate(-30px, 20px) scale(1.05);
border-radius: 55% 45% 60% 40% / 50% 60% 40% 50%;
}

40% {
transform: translate(20px, -20px) scale(1);
border-radius: 60% 40% 40% 60% / 40% 50% 60% 50%;
}

60% {
transform: translate(-20px, 30px) scale(0.95);
border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%;
}

80% {
transform: translate(30px, -10px) scale(1.1);
border-radius: 45% 55% 55% 45% / 55% 45% 45% 55%;
}
}

.heading {
    color: #ffcc00;
font-size: clamp(3rem, 2vw + 1rem, 4rem);
font-weight: bold;
line-height: 1.2;
}

.paragraph {
    color: #d3d3d3;
font-size: clamp(0.8rem, 1.5vw + 0.8rem, 1.4rem);
line-height: 1.5;
}
.item {
display: flex;
align-items: center;
flex-direction: column;
padding: 1rem;
background: linear-gradient(135deg, #5a0e0e, #2b0000);
border-radius: 20px;
box-shadow: 0px 0px 20px rgba(255, 215, 0, 0.3);
}

@media (min-width: 768px) {
.item {
flex-direction: row;
}
}

.imageContainer {
flex: 1;
display: flex;
justify-content: center;
padding: 1rem;
}

.imageItem {
border-radius: 8px;
}
.textContainer{
flex: 1;
padding: 1rem;
}
.textTitle {
font-size: clamp(2.5rem, 2.5vw, 3.5rem);
color: #ffcc00;
margin-bottom: 1rem;
font-weight: bold;
}
.textDescription {
font-size: clamp(0.8rem, 2vw, 1.2rem);
color: #d3d3d3;
margin-bottom: 1rem;
}

.responsive {
    background: linear-gradient(135deg, #8b0000, #400000);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

@media (min-width: 768px) {
.responsive {
flex-direction: row-reverse;
}
}

.free {
    background: linear-gradient(135deg, #2b0000, #1a0000);
    border: 2px solid rgba(255, 215, 0, 0.5);
}


.h3 {
color: #fff;
}

.advertising__disclosure {
text-align: center;
font-size: 14px;
color: #d3d3d3;
}

.footer {
padding: 12px;
text-align: center;
width: 100%;
border-radius: 6px;
background: linear-gradient(135deg, #2b0000, #1a0000);
color: #d3d3d3;
border-top: 2px solid rgba(255, 215, 0, 0.5);
}

.footerLink {
margin: 0 0 12px 0;
height: 40px;
line-height: 1.4;
}

.link__item {
color: #fff;
font-size: 0.9rem;
font-style: normal;
font-weight: 400;
line-height: 24px;
text-decoration-line: underline;
position: relative;
z-index: 1;
}

.footer__copyright {
border-top: 1px solid rgba(255, 255, 255, 0.5);
color: #fff;
font-size: 0.9rem;
font-style: normal;
font-weight: 300;
line-height: 40px;
height: 40px;
}

.agreementText {
    color: #d3d3d3;
font-size: 11px;
text-align: center;
}

@media screen and (min-width: 768px) {
.footer {
padding: 16px;
}

.footerLinks {
display: flex;
justify-content: center;
gap: 40px;
}
}

.article__page {
    background: rgb(7, 9, 29);
    color: white;
    width: 100%;
    border-radius: 10px;
    padding: 0.5rem;
    max-width: 1200px;
}

article {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 0;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1rem;
}

.article__title {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
}

.article__img {
    max-width: 300px;
    border-radius: 5px;
}

.article__title_item {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.consentDialogContainer {
    position: fixed;
    z-index: 99999;
    bottom: 0;
    padding: 14px;
    border-radius: 5px;
    font-family: -apple-system, Roboto, Helvetica, sans-serif;
    margin: 0 20px 20px;
    right: 0;
    display: none;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: rgba(43, 0, 0, 0.9);
    box-shadow: 0px 0px 10px rgba(255, 215, 0, 0.3);
}
.show {
    display: block;
    opacity: 1;
    transform: translateX(0);
}
@media (min-width: 768px) {
    .consentDialogContainer {
        width: 400px;
    }
}
.consentDialogWrapper {
    display: flex;
    gap: 10px;
    margin: auto;
    max-width: none;
}
.consentDialogContent {
    font-size: 14px;
    color: #d3d3d3;
}
.consentDialogItem {
    margin-left: 5px;
    color: #ffb306;
}
.consentDialogActions {
    display: flex;
    gap: 5px;
    line-height: 21px;
}
.consentDialogAction {
    cursor: pointer;
    white-space: nowrap;
    font-style: normal;
    border-radius: 4px;
    height: 35px;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    padding: 0 12px;
    width: 100%;
    min-width: auto;
    box-shadow: none;
    background: #5a0e0e;
    color: #ffcc00;
    border: none;
}

