@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ===================================
   CSS Variables / Design Tokens
   =================================== */
   :root {
    /* Colors */
    --color-primary: #7b2ff7;
    --color-secondary: #841484;
    --color-tertiary: #1f1b5d;
    --color-accent: #56b2f7;
    --color-pink: #f175a5;
    --color-dark-bg: #1d1637;
    --color-card-bg: #1f1b5e;
    --color-white: #ffffff;
    --color-gold: #FFD700;
    --color-brand: #ff61c7;
  
    /* Typography */
    --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
  
    /* Font Sizes - Mobile */
    --font-size-hero: 36px;
    --font-size-h1: 24px;
    --font-size-h2: 18px;
    --font-size-body: 14px;
    --font-size-button: 14px;
    --font-size-small: 16px;
  
    /* Spacing */
    --spacing-xs: 12px;
    --spacing-sm: 24px;
    --spacing-md: 48px;
    --spacing-lg: 100px;
  
    /* Layout */
    --container-width-mobile: 350px;
    --container-width-desktop: 1514px;
    --border-radius: 10px;
    --border-radius-button: 99999px;
    
    /* Gradients */
    --gradient-main: linear-gradient(180deg, #2d017b 0%, #7b2ff7 43.75%, #ffc6eb 100%);
    --gradient-logo: linear-gradient(180deg, #7B00FF -23.71%, #FF0098 131.7%);
  }
  

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background: linear-gradient(180deg, #6F38FA 0%, #841484 35%, #1F1B5D 90%);
  min-height: 100vh;
  color: #fff;
  overflow-x: hidden;
  padding-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.header__container,
.hero__container,
.main__container,
.footer__container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) and (max-width: 1199px) {

  .header__container,
  .hero__container,
  .main__container,
  .footer__container {
    padding: 0 50px;
  }
}

@media (min-width: 1920px) {

  .header__container,
  .hero__container,
  .main__container,
  .footer__container {
    padding: 0 308px;
  }
}

@media (min-width: 1200px) and (max-width: 1919px) {

  .header__container,
  .hero__container,
  .main__container,
  .footer__container {
    padding: 0 160px;
  }
}

/* ===================================
   Header
   =================================== */
.header {
  background: var(--color-dark-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__container {
  height: 119px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1920px) {
  .header__container {
    padding: 0 308px;
  }
}

@media (min-width: 1200px) and (max-width: 1919px) {
  .header__container {
    padding: 0 160px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header__container {
    height: 80px;
    padding: 0 50px;
  }
}

@media (min-width: 1200px) {
  .header__container {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .header__container {
    height: 50px;
    padding: 15px;
  }
}

.header__logo {
  flex-shrink: 0;
  width: 250px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header__logo {
    width: 160px;
  }
}

@media (min-width: 1200px) and (max-width: 1700px) {
  .header__logo {
    width: 180px;
    margin-right: 20px;
  }
}

@media (max-width: 1199px) {
  .header__logo {
    margin-left: 50px;
  }
}

@media (max-width: 767px) {
  .header__logo {
    width: 120px;
    margin: 0 auto;
  }
}

.logo {
  display: flex;
  font-weight: 700;
  font-size: 25px;
  gap: 1.3px;
}

.logo-hot,
.logo-girl {
  color: var(--color-white);
}

.logo-ai {
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__nav-desktop {
  display: none;
  position: relative;
}

@media (min-width: 1200px) {
  .header__nav-desktop {
    display: flex;
    flex: 1;
    justify-content: center;
  }
}

.notification-icon {
  width: 20px;
  height: 26px;
  animation: wiggle 2s linear infinite;
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .notification-icon {
    margin-left: 20px;
  }
}

.header__nav-desktop-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 25px;
  align-items: center;
}

.header__nav-desktop-item {
  margin: 0;
}

.header__nav-desktop-link {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
  padding: 8px 0;
  display: block;
  white-space: nowrap;
}

.header__nav-desktop-link:hover {
  color: var(--primary-color);
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

@media (min-width: 1200px) {
  .header__burger {
    display: none;
  }
}

.header__burger-line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -3px);
}

.header__nav {
  display: block;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  background: var(--color-dark-bg);
  border-bottom: 1px solid #e6ebf4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: calc(100vh - 50px);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header__nav {
    top: 80px;
    max-height: calc(100vh - 80px);
  }
}

@media (min-width: 1200px) {
  .header__nav {
    display: none;
  }
}

.header__nav.is-open {
  transform: translateX(0);
}

@media (min-width: 1200px) {
  .header__nav.is-open {
    transform: translateX(0);
  }
}

.header__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__nav-item {
  border-bottom: 1px solid #e6ebf4;
}

.header__nav-item:last-child {
  border-bottom: none;
}

.header__nav-label {
  display: block;
  padding: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header__nav-link {
  display: block;
  padding: 15px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}

.header__nav-link:hover {
  background-color: #e6eafd;
  color: var(--primary-color);
  padding-left: 25px;
}

@media (max-width: 767px) {
  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  body.menu-open {
    overflow: hidden;
  }
}

.hero {
  background-image: url("../images/BG-Header-Desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 415px;
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 233px;
  }
}

.hero__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 415px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero__container {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .hero__container {
    min-height: 233px;
    padding: 38px 28px;
  }
}

.hero__content {
  text-align: left;
  color: #ffffff;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero__title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .hero__title {
    font-size: 1.7rem;
    margin-bottom: 10px;
    white-space: nowrap;
  }
}

@media (max-width: 400px) {
  .hero__title {
    font-size: 1.5rem;
  }
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.95;
  padding-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero__subtitle {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .hero__subtitle {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .hero__subtitle {
    font-size: 12px;
  }
}

.hero__date {
  border-radius: 4px;
  background: #A67DE9;
  display: flex;
  height: 39px;
  padding: 0 10px;
  align-items: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--Color, #FFF);
}

.main {
  padding: 50px 0;
  background: linear-gradient(180deg, #6F38FA 0%, #841484 35%, #1F1B5D 90%);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .main {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .main {
    padding: 25px 0;
  }
}

.cam-sites {
  margin-bottom: 50px;
}

.cam-sites__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .cam-sites__list {
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .cam-sites__list {
    gap: 20px;
  }
}

.cam-sites__more {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .cam-sites__more .btn {
    width: max-content;
  }
}

.cam-card {
  overflow: hidden;
  transition: transform 0.3s ease;
}

.cam-card:hover {
  transform: translateY(-4px);
}

.cam-card--hidden {
  display: none;
}

.cam-card__badge {
  background: #A67DE9;
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px 10px 0 0;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
}

@media (max-width: 767px) {
  .cam-card__badge {
    font-size: 14px;
    padding: 5px 15px;
  }
}

.cam-card__body {
  padding: 20px 23px;
  border: 1px solid #fff;
  border-radius: 12px;
  border-top-left-radius: 0;
  transition: box-shadow 0.3s ease;
  background-color: #ffffff;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .cam-card__body {
    padding: 20px 20px;
  }
}

@media (max-width: 767px) {
  .cam-card__body {
    padding: 15px;
    flex-direction: row;
    display: flex;
    gap: 20px;
    justify-content: space-around;
    align-items: center;
  }
}

.cam-card__body:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.cam-card__info {
  display: flex;
  gap: 77px;
  align-items: center;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .cam-card__info {
    gap: 40px;
    justify-content: space-around;
  }
}

@media (max-width: 767px) {
  .cam-card__info {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

.cam-card__logo {
  width: 209px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 139px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .cam-card__logo {
    width: 160px;
    height: 110px;
  }
}

@media (max-width: 767px) {
  .cam-card__logo {
    width: 109px;
    height: 97px;
  }
}

.cam-card__logo.desktop {
  display: flex;
}

@media (max-width: 767px) {
  .cam-card__logo.desktop {
    display: none;
  }
}

.cam-card__logo.mobile {
  display: none;
}

@media (max-width: 767px) {
  .cam-card__logo.mobile {
    display: flex;
  }
}

.cam-card__logo img {
  width: 100%;
  height: auto;
}

.cam-card__details {
  flex: 1;
  min-width: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .cam-card__details {
    display: none;
  }
}

.cam-card__title {
  font-size: 32px;
  font-weight: 700;
  color: #252424;
  margin-bottom: 10px;
}

.cam-card__title.desktop {
  display: block;
}

@media (max-width: 767px) {
  .cam-card__title.desktop {
    display: none;
  }
}

.cam-card__title.mobile {
  display: none;
}

@media (max-width: 767px) {
  .cam-card__title.mobile {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .cam-card__title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .cam-card__title {
    font-size: 18px;
    margin-bottom: 0;
    line-height: normal;
  }
}

.cam-card__description {
  font-size: 16px;
  font-weight: 500;
  color: #252424;
  line-height: 1.5;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .cam-card__description {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .cam-card__description {
    display: none;
  }
}

.cam-card__rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

@media (max-width: 767px) {
  .cam-card__rating {
    width: 100%;
    align-items: center;
  }
}

.cam-card__action {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .cam-card__action {
    width: 100%;
    margin-top: 10px;
  }
}

.rating {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rating__score {
  font-size: 48px;
  font-weight: 800;
  color: #7b2ff7;
  letter-spacing: -2.4px;
  line-height: 1;
  display: flex;
  margin-right: 10px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .rating__score {
    font-size: 38px;
    letter-spacing: -1.9px;
    margin-right: 5px;
  }
}

@media (max-width: 767px) {
  .rating__score {
    font-size: 29px;
    margin-right: 10px;
    letter-spacing: -1.46px;
  }
}

.rating__score-divider {
  font-size: 30px;
  font-weight: 700;
  margin-left: 5px;
  color: #7b2ff7;
}

@media (max-width: 767px) {
  .rating__score-divider {
    font-size: 19px;
    letter-spacing: -1.46px;
  }
}

.rating__stars {
  display: flex;
  gap: 6px;
  width: 100%;
  height: 100%;
  flex-direction: column;
}

.rating__stars .stars {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .rating__stars .stars {
    height: 19px;
    display: flex;
    margin: 5px 0;
    align-items: center;
  }
}

.rating__stars .stars .star {
  width: 25.34px;
  height: 23.73px;
  margin-right: 4px;
}

@media (max-width: 767px) {
  .rating__stars .stars .star {
    width: 18px;
    height: 18px;
  }
}

.rating__stars .stars .star-half {
  width: 15px;
  height: 23.73px;
}

@media (max-width: 767px) {
  .rating__stars .stars .star-half {
    width: 10px;
    height: 18px;
  }
}

.rating__votes {
  gap: 6.42px;
  font-size: 20px;
  line-height: 1;
}

.rating__votes.desktop {
  display: flex;
}

@media (max-width: 767px) {
  .rating__votes.desktop {
    display: none;
  }
}

.rating__votes.mobile {
  display: none;
}

@media (max-width: 767px) {
  .rating__votes.mobile {
    display: flex;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .rating__votes {
    font-size: 16px;
    gap: 4px;
  }
}

@media (max-width: 767px) {
  .rating__votes {
    font-size: 12px;
    gap: 1px;
  }
}

.rating__count {
  font-weight: 700;
  color: #252424;
}

@media (max-width: 767px) {
  .rating__count {
    margin: 0 3px;
  }
}

.rating__label {
  font-weight: 400;
  color: #252424;
}

.rating__review {
  font-size: 14px;
  font-weight: 700;
  color: #7b2ff7;
  text-decoration: underline;
  text-underline-position: from-font;
}

@media (max-width: 767px) {
  .rating__review {
    font-size: 12px;
    display: none;
  }
}

.rating__review:hover {
  opacity: 0.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14.57px 38.86px;
  font-size: 17.49px;
  font-weight: 700;
  border-radius: 97px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .btn {
    padding: 12px 30px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .btn {
    padding: 7.76px 20.69px;
    font-size: 16px;
    width: 100%;
  }
}

.btn--primary {
  color: #ffffff;
  border-radius: 97.161px;
  background: var(--gradiant-01, linear-gradient(356deg, #7b2ff7 3.11%, #A67DE9 96.89%));
}

.btn--primary:hover {
  background: #7B2FF7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 47, 247, 0.3);
}

.btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn--secondary:hover {
  background: #A67DE9;
  color: #ffffff;
}

.content-section {
  margin-bottom: 50px;
  border-bottom: 1px solid #fff;
  padding-bottom: 50px;
}

.content-section:last-child {
  border-bottom: none;
}

.content-section__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .content-section__header {
    margin-bottom: 20px;
    justify-content: space-between;
  }
}

.content-section__title {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  letter-spacing: -1.6px;
  line-height: 1.3;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .content-section__title {
    font-size: 28px;
    letter-spacing: -1.4px;
  }
}

@media (max-width: 767px) {
  .content-section__title {
    font-size: 24px;
    letter-spacing: -1.2px;
  }
}

.content-section__toggle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.content-section__toggle svg {
  width: 40px;
  height: auto;
}

.content-section__toggle:hover {
  transform: scale(1.1);
}

.content-section__toggle.is-open {
  transform: rotate(180deg);
}

.content-section.has-toggle .content-section__body {
  max-height: 0;
  opacity: 0;
}

.content-section.has-toggle.is-open .content-section__body {
  max-height: 5000px;
  opacity: 1;
}

.content-section__body {
  max-width: 1205px;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 767px) {
  .content-section__body {
    max-width: 100%;
  }
}

.content-section__body .content-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.94;
  letter-spacing: -0.9px;
  color: #fff;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .content-section__body .content-text {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: -0.8px;
  }
}

@media (max-width: 767px) {
  .content-section__body .content-text {
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: -0.7px;
  }
}

.content-section__body .content-text p {
  margin-bottom: 1em;
  font-weight: 500;
}

.content-section__body .content-text p:last-child {
  margin-bottom: 0;
}

.content-section__body .content-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  text-transform: capitalize;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .content-section__body .content-text h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .content-section__body .content-text h3 {
    font-size: 16px;
  }
}

.content-section__body .content-text strong {
  font-weight: 700;
}

.content-section__body .content-text ul {
  list-style-position: inside;
  margin-bottom: 1rem;
}

.content-section__body .content-text li {
  font-size: 17px;
  margin-bottom: 0.5rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: #1D1637;
  padding: 72px 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .footer {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 31px 0;
  }
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer__logo {
  width: 322px;
}

@media (max-width: 767px) {
  .footer__logo {
    width: 256px;
  }
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  justify-content: start;
  align-items: center;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

@media (max-width: 767px) {
  .footer__column {
    gap: 15px;
  }
}

.footer__link {
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

@media (max-width: 767px) {
  .footer__link {
    font-size: 14px;
  }
}

.footer__copyright {
  font-size: 16px;
  line-height: 1.5;
  max-width: 350px;
  text-align: center;
}

@media (max-width: 767px) {
  .footer__copyright {
    font-size: 14px;
  }
}

.footer .link-disclosure {
  display: inline-block;
  color: #7b2ff7;
  text-decoration: none;
  text-align: center;
}

@media (max-width: 767px) {
  .footer .link-disclosure {
    font-size: 14px;
    margin: 0 auto;
  }
}

.footer .link-disclosure:hover {
  text-decoration: underline;
}

/* ===================================
     Utility Classes
     =================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sticky.mobile {
  display: flex !important;
}

.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%
}

.sticky a {
  border-radius: 0 !important;
  width: 100% !important
}

.cta {
  display: flex;
  align-items: center;
  height: 55px;
  justify-content: center;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1em;
  flex: 0 0 auto;
  color: var(--text-color);
  font-size: 24px;
  background: var(--primary-color);
  border-radius: 100px;
  width: 247px;
  height: 50px;
  transition: all 0.3s;
  text-decoration: none;
}

@keyframes wiggle {

  0%,
  7% {
    transform: rotateZ(0);
  }

  15% {
    transform: rotateZ(-15deg);
  }

  20% {
    transform: rotateZ(10deg);
  }

  25% {
    transform: rotateZ(-10deg);
  }

  30% {
    transform: rotateZ(6deg);
  }

  35% {
    transform: rotateZ(-4deg);
  }

  40%,
  100% {
    transform: rotateZ(0);
  }
}