body {
    font-family: "Prompt", sans-serif;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

* {
    scrollbar-width: thin;
    scrollbar-color: #c77dff #1a0a1e
}

.wheel-intro {
    background: #1a0a1e;
    color: #fff;
    text-align: center;
    padding: 3vw 4vw;
    border-bottom: .3vw solid #c77dff;
    font-family: "Segoe UI", sans-serif
}

.wheel-intro__top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    margin-bottom: 2vw;
    flex-wrap: wrap
}

.wheel-intro__age {
    background: #ff4d6d;
    font-size: 1.2vw;
    font-weight: 600;
    padding: .4vw .9vw;
    border-radius: 50%
}

.wheel-intro__warning {
    font-size: 1vw;
    opacity: .8
}

.wheel-link {
    color: #ff6bc5;
    text-decoration: none;
    border-bottom: .1vw solid #ff6bc5;
    transition: .3s
}

.wheel-link:hover {
    color: #c77dff;
    border-color: #c77dff
}

.wheel-intro__title {
    font-size: 2vw;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: .8vw
}

.wheel-brand {
    color: #c77dff
}

.wheel-intro__date {
    color: #ff6bc5;
    font-size: 1.2vw;
    font-weight: 500;
    margin-bottom: 1vw
}

.wheel-intro__subtitle {
    font-size: 1vw;
    color: #ccc;
    margin-bottom: 2vw
}

.wheel-intro__features {
    display: flex;
    justify-content: center;
    gap: 2vw;
    font-size: .9vw;
    flex-wrap: wrap;
    opacity: .9
}

@media (max-width:768px) {
    .wheel-intro {
        padding: 8vw 5vw
    }

    .wheel-intro__age {
        font-size: 3vw;
        padding: 1vw 2vw
    }

    .wheel-intro__warning {
        font-size: 2.5vw;
        text-align: center
    }

    .wheel-intro__title {
        font-size: 4.5vw
    }

    .wheel-intro__date {
        font-size: 3vw
    }

    .wheel-intro__subtitle {
        font-size: 2.8vw
    }

    .wheel-intro__features {
        font-size: 2.5vw;
        gap: 3vw
    }
}

.wheel-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2vw;
    padding: 3vw;
    background: #1e0a1e
}

.wheel-card {
    background: #2a1a2e;
    border: 1px solid rgba(199, 125, 255, .4);
    border-radius: 1vw;
    padding: 1.5vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 .8vw 1.5vw rgba(0, 0, 0, .3);
    transition: transform .3s
}

.wheel-card:hover {
    transform: translateY(-.5vw);
    border-color: #c77dff
}

.wheel-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1vw
}

.wheel-card__logo {
    max-width: 100px;
    height: auto
}

.wheel-card__rating {
    font-size: .9vw;
    color: #ff6bc5
}

.wheel-card__title {
    font-size: 1.2vw;
    font-weight: 600;
    color: #fff;
    margin-bottom: .5vw
}

.wheel-card__bonus {
    font-size: 1.1vw;
    color: #c77dff;
    font-weight: bold;
    margin-bottom: 1vw
}

.wheel-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5vw
}

.wheel-card__features li {
    font-size: .9vw;
    margin-bottom: .4vw;
    color: #ddd
}

.wheel-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto
}

.wheel-btn {
    background: #c77dff;
    color: #1a0a1e;
    padding: .6vw 1.5vw;
    font-size: .9vw;
    font-weight: 600;
    border-radius: .5vw;
    text-decoration: none;
    transition: .3s
}

.wheel-btn:hover {
    background: #ff6bc5;
    color: #fff
}

.wheel-verified {
    font-size: .8vw;
    color: #aaa;
    margin-left: 1vw
}

@media (max-width:768px) {
    .wheel-card__title {
        font-size: 4vw
    }

    .wheel-card__bonus {
        font-size: 3.5vw
    }

    .wheel-card__features li {
        font-size: 3vw
    }

    .wheel-card__rating {
        font-size: 3vw
    }

    .wheel-btn {
        font-size: 3vw;
        padding: 2vw 4vw
    }

    .wheel-verified {
        font-size: 2.5vw
    }
}

.wheel-responsible {
    background: #1e0a1e;
    color: #eaeaea;
    padding: 4vw 6vw;
    border-top: .3vw solid #c77dff;
    border-bottom: .3vw solid #c77dff;
    font-family: "Segoe UI", sans-serif
}

.wheel-responsible__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left
}

.wheel-responsible__title {
    font-size: 1.6vw;
    font-weight: 600;
    margin-bottom: 1vw;
    color: #ff6bc5;
    text-transform: uppercase
}

.wheel-responsible__intro {
    font-size: 1vw;
    margin-bottom: 1.5vw;
    line-height: 1.6;
    color: #ccc
}

.wheel-responsible__list {
    list-style: none;
    padding: 0;
    margin: 0
}

.wheel-responsible__list li {
    font-size: .95vw;
    margin-bottom: .8vw;
    line-height: 1.5;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .5vw
}

@media (max-width:768px) {
    .wheel-responsible {
        padding: 8vw 5vw
    }

    .wheel-responsible__title {
        font-size: 4.5vw;
        text-align: center
    }

    .wheel-responsible__intro {
        font-size: 3.2vw;
        text-align: center;
        margin-bottom: 4vw
    }

    .wheel-responsible__list li {
        font-size: 3vw;
        margin-bottom: 3vw
    }
}

.wheel-about {
    background: #1e0a1e;
    color: #eaeaea;
    padding: 6vw 5vw;
    text-align: center;
    font-family: "Segoe UI", sans-serif
}

.wheel-about__title {
    font-size: 2vw;
    font-weight: 600;
    color: #ff6bc5;
    margin-bottom: 1vw;
    text-transform: uppercase
}

.wheel-about__text {
    font-size: 1vw;
    max-width: 800px;
    margin: 0 auto 4vw;
    line-height: 1.6;
    color: #ccc
}

.wheel-about__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2vw;
    max-width: 1000px;
    margin: 0 auto
}

.wheel-stat {
    background: #2a1a2e;
    padding: 2vw;
    border-radius: 1vw;
    border: 1px solid rgba(199, 125, 255, .4);
    transition: .3s
}

.wheel-stat:hover {
    border-color: #ff6bc5;
    transform: translateY(-.5vw)
}

.wheel-stat__number {
    font-size: 1.8vw;
    font-weight: bold;
    color: #c77dff;
    display: block;
    margin-bottom: .5vw
}

.wheel-stat__label {
    font-size: .9vw;
    color: #ddd
}

@media (max-width:768px) {
    .wheel-about__title {
        font-size: 5vw
    }

    .wheel-about__text {
        font-size: 3.2vw
    }

    .wheel-stat__number {
        font-size: 5vw
    }

    .wheel-stat__label {
        font-size: 2.8vw
    }
}

.wheel-care {
    background: #1e0a1e;
    padding: 3vw 5vw;
    border-top: .2vw solid #c77dff;
    border-bottom: .2vw solid #c77dff
}

.wheel-care__row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2vw
}

.wheel-care__item {
    background: #2a1a2e;
    border-radius: .8vw;
    padding: 1vw 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .3s, background .3s
}

.wheel-care__item img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(.9);
    opacity: .8;
    transition: filter .3s, opacity .3s
}

.wheel-care__item:hover {
    background: #c77dff;
    transform: translateY(-.4vw)
}

.wheel-care__item:hover img {
    filter: none;
    opacity: 1
}

@media (max-width:768px) {
    .wheel-care {
        padding: 6vw 3vw
    }

    .wheel-care__row {
        gap: 4vw
    }

    .wheel-care__item img {
        max-height: 30px
    }
}

.wheel-evaluation {
    background: #1e0a1e;
    color: #eaeaea;
    padding: 6vw 7vw;
    line-height: 1.6;
    font-family: "Segoe UI", sans-serif
}

.wheel-title {
    color: #ff6bc5;
    font-size: 2vw;
    text-align: center;
    margin-bottom: 1vw;
    text-transform: uppercase
}

.wheel-subtitle {
    font-size: 1.1vw;
    text-align: center;
    margin-bottom: 3vw;
    color: #bbb
}

.wheel-criteria {
    list-style: none;
    padding: 0;
    margin: 0 0 4vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5vw
}

.wheel-criteria li {
    background: #2a1a2e;
    border-radius: 1vw;
    padding: 1.5vw;
    border: 1px solid rgba(199, 125, 255, .4);
    font-size: 1vw;
    transition: .3s
}

.wheel-criteria li span {
    font-weight: bold;
    color: #c77dff;
    margin-right: .5vw
}

.wheel-criteria li:hover {
    border-color: #ff6bc5;
    transform: translateY(-.4vw)
}

.wheel-regulation,
.wheel-protection,
.wheel-safety {
    margin-bottom: 3vw
}

.wheel-regulation h3,
.wheel-protection h3,
.wheel-safety h3 {
    color: #c77dff;
    font-size: 1.4vw;
    margin-bottom: 1vw
}

.wheel-regulation p,
.wheel-protection p,
.wheel-safety p,
.wheel-regulation ul,
.wheel-safety ul {
    font-size: 1vw;
    color: #ccc;
    margin-bottom: 1vw
}

.wheel-regulation ul,
.wheel-safety ul {
    list-style: disc inside
}

@media (max-width:768px) {
    .wheel-title {
        font-size: 5vw
    }

    .wheel-subtitle {
        font-size: 3.5vw
    }

    .wheel-criteria li {
        font-size: 3vw
    }

    .wheel-regulation p,
    .wheel-protection p,
    .wheel-safety p {
        font-size: 3vw
    }

    .wheel-regulation h3,
    .wheel-protection h3,
    .wheel-safety h3 {
        font-size: 4.2vw
    }
}

.wheel-footer {
    background: #1e0a1e;
    color: #eaeaea;
    padding: 3vw 5vw;
    font-family: "Segoe UI", sans-serif;
    text-align: center;
    border-top: .3vw solid #c77dff
}

.wheel-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2vw
}

.wheel-footer__nav a {
    margin: 0 1vw;
    font-size: .95vw;
    color: #ff6bc5;
    text-decoration: none;
    transition: .3s
}

.wheel-footer__nav a:hover {
    color: #c77dff
}

.wheel-footer__logos img {
    height: 28px;
    margin: 0 .8vw;
    filter: grayscale(100%) brightness(.8);
    opacity: .8;
    transition: .3s
}

.wheel-footer__logos img:hover {
    filter: none;
    opacity: 1
}

.wheel-footer__note {
    font-size: .9vw;
    color: #bbb;
    max-width: 800px;
    margin: 0 auto 2vw;
    line-height: 1.5
}

.wheel-footer__responsible {
    background: #fff;
    color: #1a0a1e;
    font-size: .95vw;
    padding: 1.2vw;
    border-radius: .8vw;
    box-shadow: 0 .5vw 1vw rgba(0, 0, 0, .2)
}

.wheel-footer__link {
    color: #c77dff;
    text-decoration: underline;
    font-weight: 600
}

@media (max-width:768px) {
    .wheel-footer__top {
        flex-direction: column;
        gap: 3vw
    }

    .wheel-footer__nav a {
        font-size: 3vw;
        display: inline-block;
        margin: 1vw 2vw
    }

    .wheel-footer__logos img {
        height: 22px;
        margin: 0 2vw
    }

    .wheel-footer__note {
        font-size: 2.8vw
    }

    .wheel-footer__responsible {
        font-size: 3vw;
        padding: 4vw
    }
}

.wheel-privacy {
    background: #1e0a1e;
    color: #eaeaea;
    padding: 5vw 6vw;
    line-height: 1.6;
    font-family: "Segoe UI", sans-serif
}

.wheel-privacy__container {
    max-width: 900px;
    margin: 0 auto
}

.wheel-privacy__title {
    color: #ff6bc5;
    font-size: 2vw;
    margin-bottom: 2vw;
    text-align: center;
    text-transform: uppercase
}

.wheel-privacy__intro {
    font-size: 1vw;
    margin-bottom: 2vw;
    color: #ccc
}

.wheel-privacy h3 {
    color: #c77dff;
    font-size: 1.2vw;
    margin-top: 2vw;
    margin-bottom: 1vw
}

.wheel-privacy p {
    font-size: 1vw;
    margin-bottom: 1.2vw
}

.wheel-privacy__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2vw
}

.wheel-privacy__list li {
    margin-bottom: .8vw;
    font-size: 1vw;
    color: #ddd
}

@media (max-width:768px) {
    .wheel-privacy__title {
        font-size: 5vw
    }

    .wheel-privacy__intro,
    .wheel-privacy p,
    .wheel-privacy__list li {
        font-size: 3vw
    }

    .wheel-privacy h3 {
        font-size: 4vw
    }
}

.wheel-responsible {
    background: #1e0a1e;
    color: #eaeaea;
    padding: 5vw 6vw;
    line-height: 1.6;
    font-family: "Segoe UI", sans-serif
}

.wheel-responsible__container {
    max-width: 900px;
    margin: 0 auto
}

.wheel-responsible__title {
    color: #ff6bc5;
    font-size: 2vw;
    margin-bottom: 2vw;
    text-align: center;
    text-transform: uppercase
}

.wheel-responsible__intro {
    font-size: 1vw;
    margin-bottom: 2vw;
    color: #ccc;
    text-align: center
}

.wheel-responsible h3 {
    color: #c77dff;
    font-size: 1.3vw;
    margin-top: 2.5vw;
    margin-bottom: 1vw
}

.wheel-responsible p {
    font-size: 1vw;
    margin-bottom: 1.2vw
}

.wheel-responsible__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5vw
}

.wheel-responsible__list li {
    margin-bottom: .7vw;
    font-size: 1vw;
    color: #ddd;
    padding-left: 1.2vw;
    position: relative
}

.wheel-responsible__list li::before {
    content: "✓";
    color: #c77dff;
    position: absolute;
    left: 0
}

@media (max-width:768px) {
    .wheel-responsible__title {
        font-size: 5vw
    }

    .wheel-responsible__intro,
    .wheel-responsible p,
    .wheel-responsible__list li {
        font-size: 3vw
    }

    .wheel-responsible h3 {
        font-size: 4.2vw
    }
}

.wheel-contact {
    background: #1e0a1e;
    color: #eaeaea;
    padding: 6vw 5vw;
    font-family: "Segoe UI", sans-serif;
    text-align: center
}

.wheel-contact__container {
    max-width: 700px;
    margin: 0 auto
}

.wheel-contact__title {
    font-size: 2vw;
    font-weight: 600;
    color: #ff6bc5;
    margin-bottom: 1vw;
    text-transform: uppercase
}

.wheel-contact__subtitle {
    font-size: 1vw;
    margin-bottom: 3vw;
    color: #bbb
}

.wheel-form {
    display: flex;
    flex-direction: column;
    gap: 1.5vw
}

.wheel-form__group {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.wheel-form__group label {
    margin-bottom: .5vw;
    font-size: 1vw;
    color: #ff6bc5
}

.wheel-form__group input,
.wheel-form__group textarea {
    width: 100%;
    padding: 1vw;
    border: 1px solid rgba(199, 125, 255, .5);
    border-radius: .6vw;
    background: #2a1a2e;
    color: #fff;
    font-size: 1vw;
    transition: .3s
}

.wheel-form__group input:focus,
.wheel-form__group textarea:focus {
    outline: none;
    border-color: #ff6bc5;
    background: #1e0a1e
}

.wheel-btn {
    background: #c77dff;
    color: #1a0a1e;
    padding: 1vw 2vw;
    font-size: 1vw;
    font-weight: 600;
    border-radius: .6vw;
    border: none;
    cursor: pointer;
    transition: .3s
}

.wheel-btn:hover {
    background: #ff6bc5;
    color: #fff
}

@media (max-width:768px) {
    .wheel-contact__title {
        font-size: 5vw
    }

    .wheel-contact__subtitle {
        font-size: 3vw
    }

    .wheel-form__group label {
        font-size: 3vw
    }

    .wheel-form__group input,
    .wheel-form__group textarea {
        font-size: 3vw;
        padding: 3vw;
        border-radius: 2vw
    }

    .wheel-btn {
        font-size: 3.5vw;
        padding: 3vw;
        border-radius: 2vw
    }
}

.wheel-terms {
    background: #1e0a1e;
    color: #eaeaea;
    padding: 6vw 7vw;
    line-height: 1.6;
    font-family: "Segoe UI", sans-serif
}

.wheel-terms__container {
    max-width: 900px;
    margin: 0 auto
}

.wheel-terms__title {
    color: #ff6bc5;
    font-size: 2vw;
    margin-bottom: 1.5vw;
    text-align: center;
    text-transform: uppercase
}

.wheel-terms__intro {
    font-size: 1vw;
    margin-bottom: 2.5vw;
    color: #ccc;
    text-align: center
}

.wheel-terms h3 {
    color: #c77dff;
    font-size: 1.2vw;
    margin-top: 2vw;
    margin-bottom: .8vw
}

.wheel-terms p {
    font-size: 1vw;
    margin-bottom: 1.2vw
}

.wheel-link {
    color: #ff6bc5;
    text-decoration: underline;
    transition: .3s
}

.wheel-link:hover {
    color: #c77dff
}

@media (max-width:768px) {
    .wheel-terms__title {
        font-size: 5vw
    }

    .wheel-terms__intro {
        font-size: 3.2vw
    }

    .wheel-terms h3 {
        font-size: 4vw
    }

    .wheel-terms p {
        font-size: 3vw
    }
}

.wheel-thanks {
    background: #1e0a1e;
    color: #fff;
    padding: 10vw 5vw;
    text-align: center;
    font-family: "Segoe UI", sans-serif
}

.wheel-thanks__container {
    max-width: 700px;
    margin: 0 auto;
    background: #2a1a2e;
    padding: 4vw 3vw;
    border-radius: 1vw;
    border: 1px solid rgba(199, 125, 255, .4);
    box-shadow: 0 .8vw 1.5vw rgba(0, 0, 0, .4)
}

.wheel-thanks__title {
    font-size: 2vw;
    color: #ff6bc5;
    margin-bottom: 1.5vw
}

.wheel-thanks__text {
    font-size: 1.1vw;
    color: #ddd;
    margin-bottom: 2.5vw;
    line-height: 1.6
}

.wheel-btn {
    display: inline-block;
    background: #c77dff;
    color: #1a0a1e;
    padding: 1vw 2vw;
    font-size: 1vw;
    font-weight: 600;
    border-radius: .6vw;
    text-decoration: none;
    transition: .3s
}

.wheel-btn:hover {
    background: #ff6bc5;
    color: #fff
}

@media (max-width:768px) {
    .wheel-thanks__title {
        font-size: 5.5vw
    }

    .wheel-thanks__text {
        font-size: 3.5vw;
        margin-bottom: 6vw
    }

    .wheel-btn {
        font-size: 3.5vw;
        padding: 3vw 6vw;
        border-radius: 2vw
    }
}

/* Оверлей модального вікна */
#ageVerificationOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 10, 30, 0.9);  /* темно-фіолетовий overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  /* Модальне вікно */
  .modal-container {
    background-color: #2a1a2e;              /* фіолетово-сірий як картки */
    border: 1px solid rgba(199, 125, 255, 0.4);  /* фіолетова рамка */
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  }
  
  .modal-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff6bc5;                         /* рожевий заголовок */
    text-align: center;
    font-weight: 600;
  }
  
  .modal-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;                            /* світло-сірий текст */
    margin-bottom: 25px;
    text-align: center;
  }
  
  .modal-content a {
    color: #c77dff;                         /* фіолетове посилання */
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  
  .modal-content a:hover {
    color: #ff6bc5;                         /* рожеве при ховері */
  }
  
  /* Кнопки */
  .button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-confirm {
    background-color: #c77dff;              /* фіолетова кнопка */
    color: #1a0a1e;                         /* темний текст */
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(199, 125, 255, 0.3);
  }
  
  .btn-confirm:hover {
    background-color: #ff6bc5;              /* рожева при ховері */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 197, 0.4);
  }
  
  .btn-exit {
    background-color: transparent;
    color: #aaa;
    border: none;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  
  .btn-exit:hover {
    color: #ff6bc5;                         /* рожевий при ховері */
  }
  
  /* Приховати модальне вікно */
  .hidden {
    display: none !important;
  }
  
  /* Контент сайту */
  .site-content {
    padding: 50px;
    text-align: center;
  }
  
  .site-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff6bc5;                         /* рожевий заголовок */
  }
  
  .site-content p {
    font-size: 18px;
    color: #ddd;
  }
  
  /* Повідомлення про відмову */
  .access-denied {
    display: none;
    text-align: center;
  }
  
  .access-denied h3 {
    color: #ff4d6d;                         /* рожево-червоний */
    margin-bottom: 15px;
    font-size: 22px;
  }
  
  .access-denied p {
    color: #ddd;
    font-size: 14px;
  }