@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
}
body {
    font-family: 'Raleway', sans-serif;
}
ul li {
    display: block;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.ticket__header {
    width: 100%;
    background: linear-gradient(90deg, #ff0080, #ff8c00);
    display: flex;
    justify-content: center;
    padding: 15px 0;
}
.ticket__nav {
    width: 1150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ticket__logo {
    font-family: 'Dosis', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: white;
}
.ticket__btn-group {
    display: flex;
    gap: 15px;
}
.ticket__header-text-row {
    display: flex;
    flex-direction: row;
}
.ticket__header-descr {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: blueviolet;
    margin-top: 15px;
}
.ticket__modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
.ticket__modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
}
.ticket__input {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.ticket__error {
    color: red;
    font-family: 'Dosis', sans-serif;
    font-size: 14px;
    display: none;
}
.ticket__close {
    background: #ff0080;
    color: white;
    padding: 10px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}
.ticket__link {
    margin-left: 10px;
    color: #ff0080;
    text-decoration: none;
}
@media (max-width: 768px) {
    .ticket__nav {
        width: 100%;
        flex-direction: column;
        padding: 0 20px;
    }
    .ticket__logo {
        margin-bottom: 20px;
    }
    .ticket__btn-group {
        flex-direction: column;
    }
}
.ticket__section {
    width: 100%;
    background: linear-gradient(90deg, #ffcc00, #ff5733);
    display: flex;
    justify-content: center;
    padding: 50px 0;
}
.ticket__container {
    width: 1150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.ticket__image-block {
    max-width: 100%;
    height: auto;
    flex: 1;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(90deg,#ff5733, #ffcc00);
    
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}
.ticket__image-block img {
    width: 90%;
    padding: 30px;
}
.ticket__content {
    flex: 1;
    color: white;
    text-align: left;
}
.ticket__title {
    text-align: center;
    font-family: 'Dosis', sans-serif;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}
.ticket__text {
    background: #202020ad;
    padding: 15px;
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .ticket__container {
        width: 90%;
        flex-direction: column;
        text-align: center;
    }
    .ticket__image-block img {
        padding: 10px;
    }
    .ticket__content {
        text-align: center;
    }
}
.ticket__about-section {
    width: 100%;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    display: flex;
    justify-content: center;
    padding: 50px 0;
}
.ticket__about-container {
    width: 1150px;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}
.ticket__about-text-block {
    flex: 1;
    color: white;
}
.ticket__about-title {
    font-family: 'Dosis', sans-serif;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}
.ticket__about-text {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}
.ticket__advantages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.ticket__advantage-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    color: #333;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 1s;
}
.ticket__advantage-card:hover {
    transform: scale(1.1, 1.1);
    background: #ffcc00;
    color: #000;
}
.ticket__advantage-title {
    font-family: 'Dosis', sans-serif;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}
.ticket__advantage-card p {
    font-family: 'Raleway', sans-serif;
}
@media (max-width: 768px) {
    .ticket__about-container {
        flex-direction: column;
        text-align: center;
    }
    .ticket__advantages {
        width: 90%;
    }
    .ticket__about-text {
        width: 90%;
        margin: 0 auto;
        font-size: 15px;
    }
}
.ticket__responsible-section {
    width: 100%;
    background: linear-gradient(90deg, #1f1c2c, #928dab);
    display: flex;
    justify-content: center;
    padding: 50px 0;
}
.ticket__responsible-container {
    width: 1150px;
    color: white;
    text-align: center;
}
.ticket__responsible-title {
    font-family: 'Dosis', sans-serif;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}
.ticket__responsible-text {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}
.ticket__responsible-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 5px;
    width: 80%;
}
.ticket__responsible-item p {
    color: #fff;
}
.ticket__responsible-clear {
    color: #ff0080;
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
}
.ticket__responsible-age {
    margin: 0 auto;
    align-items: center;
    text-align: center;
    width: 90px;
    height: 90px;
}
@media (max-width: 768px) {
    .ticket__responsible-item {
        width: 90%;
        height: auto;
    }
    .ticket__responsible-clear {
        font-size: 15px;
    }
}
.ticket__footer {
    width: 100%;
    background: linear-gradient(90deg, #1f1c2c, #928dab);
    color: white;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ticket__footer-container {
    width: 1150px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}
.ticket__footer-links {
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.ticket__footer-link {
    color: white;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    transition: 0.3s;
}
.ticket__footer-link:hover {
    color: #ffcc00;
}
.ticket__footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 1150px;
    flex-wrap: wrap;
}
.ticket__social-link img {
    width: 60%;
    height: 100px;
    transition: 0.3s;
    padding: 5px 15px;
    border-radius: 10px;
    background-color: #fff;
}
.ticket__social-link img:hover {
    transform: scale(1.1);
}
.ticket__footer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.ticket__btn {
    background: white;
    color: #1f1c2c;
    padding: 12px 20px;
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}
.ticket__btn:hover {
    background: #ffcc00;
    color: #000;
}
@media (max-width: 768px) {
    .ticket__footer-container {
        width: 300px;
    }
    .ticket__footer-links {
        flex-direction: column;
        gap: 10px;
    }
    .ticket__footer-links {
        font-size: 13px;
    }
    .ticket__footer-socials {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
    }
    .ticket__social-link {
        width: 290px;
    }
    .ticket__footer-buttons {
        margin: 0 auto;
        flex-direction: column;
    }
}
.ticket__scroll-up {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ffcc00;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.ticket__scroll-up.visible {
    opacity: 1;
    visibility: visible;
}

.ticket__cookie-modal {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: none;
}
.ticket__cookie-title {
    font-family: 'Dosis', sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}
.ticket__cookie-text {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
}
.ticket__cookie-links {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #2575fc;
    text-decoration: none;
    font-weight: bold;
    margin: 0 5px;
}
.ticket__cookie-btn {
    background: #ffcc00;
    color: black;
    padding: 10px 15px;
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .ticket__cookie-modal {
        width: 95%;
    }
}

.ticket__pages-section {
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(90deg,#2575fc, #6a11cb);
}
.ticket__pages-container {
    margin: 0 auto;
    max-width: 1150px;
}
.ticket__pages-title {
    font-family: 'Dosis', sans-serif;
    font-size: 35px;
    padding: 15px 0;
    color: #ff0080;
}
.ticket__pages-text {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    padding: 20px 0;
    color: #fff;
}
.ticket__pages-text a {
    color: #ff0080;
}
.ticket__pages-item {
     margin-left: 15px;
}
.ticket__pages-list {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    padding: 5px 0;
    color: #fff;
}
.home {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0;
}
.ticket__pages-home {
    font-family: 'Dosis', sans-serif;
    font-size: 20px;
    color: #15f800;
}
@media (max-width: 768px) {
    .ticket__pages-title {
        font-size: 25px;
    }
    .ticket__pages-container {
        padding: 0 10px;
    }
    .ticket__pages-text,
    .ticket__pages-list {
        font-size: 17px;
    }
}