:root {
  --bg-color: #2c1b38;
  --main-text: #ffffff;
  --second-text: #eeeeee;
  --third-text: #dddddd;
  --star-display: block;
  --se-pink: #6e4e5e;
  --se-orange: #7e5d55;
  --se-darkpink: #6d4656;
  --se-purple: #927291;

  --logo-bg: #5c4370;

  --carousel-shadow: rgba(0, 0, 0, 0.5);
}

.lightmode {
  --bg-color: #fff5f5;
  --main-text: #000000;
  --second-text: #2f2f2f;
  --third-text: #565656;
  --star-display: none;
  --se-pink: #dfc3c3;
  --se-orange: #e3c3ae;
  --se-darkpink: #e1bebe;
  --se-purple: #d4bfcf;

  --logo-bg: #452e56;

  --carousel-shadow: rgba(0, 0, 0, 0.5);
}

* {
  margin: 0px;
  padding: 0px;
  transition: 0.5s ease-in-out;
  /*color: var(--main-text);*/
}
@font-face {
  font-family: "Curly";
  src: url("./fonts/HelloMorgan.ttf");
}
@font-face {
  font-family: "Alice";
  src: url("./fonts/Alice-Regular.ttf");
}
@font-face {
  font-family: "French Canon";
  src: url("./fonts/IMFellFrenchCanonSC-Regular.ttf");
}

#theme-switch {
  height: 50px;
  width: 50px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--bg-color);
  /* display: flex; */
  display: none;
  justify-content: center;
  align-items: center;

  /* margin-left: 30px; margin-top: 30px; */
  position: fixed;
  z-index: 20;
  left: 30px;
  top: 30px;
}

#theme-switch svg {
  fill: var(--main-text);
}

#theme-switch svg:last-child {
  display: none;
}
.lightmode #theme-switch svg:first-child {
  display: none;
}
.lightmode #theme-switch svg:last-child {
  display: block;
}

html,
body {
  position: relative;
  font-family: "Alice", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-color);
  overscroll-behavior-y: none;
  cursor:
    url("./images/spadecursor.svg") 6 6,
    auto;
}

.dot-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size:
    28px 28px,
    60px 60px;
  background-position:
    0 0,
    10px 10px;
  transition: transform 0.2s ease;
  will-change: transform;
}

a,
button {
  cursor:
    url("./images/clubcursor.png") 10 10,
    auto;
}

@media (hover: none) and (pointer: coarse) {
  html,
  body {
    cursor: auto;
  }
}

a:link {
  color: var(--third-text);
}

/* Nav bar */

nav {
  font-family: "Alice", sans-serif;
  padding: 25px 0px 25px 0px;
  margin: 0 auto;
  text-align: center;
  width: auto;
  position: relative;
  top: 0;
}

nav ul {
  display: inline-block;
  list-style-type: none;
}

nav li {
  display: inline-block;
  padding: 5px 10px;
  margin: 0px 20px;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
nav li:hover {
  transform: scale(1.05);
  /* text-shadow: brown 0px 0px 10px; */
}

nav li a {
  color: var(--main-text);
  text-decoration: none;
  color: var(--main-text);
}

nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--second-text);
  opacity: 0;
  transform: scaleX(0.9);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

nav li:hover a::after {
  opacity: 0.5;
  transform: scaleX(1);
}

/* Landing Page Background */

.landingPageBackground {
  margin-top: -10vh;
  position: absolute;
  width: 100vw;
  height: auto;
  /*Change later*/
}
.shootingStar {
  display: var(--star-display);
  position: absolute;
  width: 35px;
  top: -30px;
  left: 600px;
  filter: drop-shadow(0px 0px 2px white);
  animation: starAnimation 15s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 3s
    infinite;
  z-index: 1;
}

@keyframes starAnimation {
  from {
    translate: 0 0;
    scale: 1;
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  to {
    translate: -275px 275px;
    scale: 0 0;
    opacity: 0;
  }
}
/* Title */

#title {
  min-height: 800px;
  background-color: var(--bg-color);
}

.logo {
  display: block;
  margin: 30px auto;
  display: flex;
  justify-content: center;
  perspective: 1200px;
  z-index: 99999;
}

.logo img {
  height: 500px;
  position: absolute;
  z-index: 2;
}

.logo-circle {
  width: 460px;
  height: 460px;
  /* background: #d9d9d9; */
  background: var(--logo-bg);
  border-radius: 50%;
  z-index: 1;
  /* animation: ease 3s shadow infinite; */
}

.logoTop {
  position: absolute;
  width: 500px;
  transform-style: preserve-3d;
  transform: translateX(-50%) translateY(0);
  opacity: 0.85;
  filter:
    /* drop-shadow(5px 5px 10px rgba(0,0,0,0.5)) */ drop-shadow(
      5px 5px 10px brown
    )
    blur(0.25px);
  animation:
    cardsFloat 18s ease-in-out infinite,
    cardsDrift 26s ease-in-out infinite,
    cardsScale 22s ease-in-out infinite;
}

@keyframes cardsFloat {
  0%,
  100% {
    transform: translateX(-3%) translateY(0);
  }
  50% {
    transform: translateX(-3%) translateY(-10px);
  }
}

@keyframes cardsDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 50px -10px;
  }
}

@keyframes cardsScale {
  0%,
  100% {
    scale: 1;
  }
  50% {
    scale: 1.035;
  }
}

.title-text {
  margin: 0 auto;
  margin-top: -5vh;
  text-align: center;
  font-family: "Curly", sans-serif;
  color: var(--main-text);
  text-shadow: 0px 0px 10px lightgray;
}
.wiggle {
  animation: wiggle 5s ease-in-out infinite 3s;
}
.countdown{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--second-text);
}
.countdown-label{
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}
.countdown-time{
  font-size: 28px;
  font-family: "French Canon", "Alice", serif;
  color: var(--main-text);
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }

}

@media (prefers-reduced-motion: reduce) {
  .wiggle {
    animation: none;
  }
}

.title-text h2 {
  font-size: 40px;
  color: var(--main-text);
  letter-spacing: 0.5px;
}

.title-text h3 {
  margin-top: 10px;
  font-size: 48px;
  color: var(--main-text);
  letter-spacing: 1px;
}

.float {
  animation: ease moving 3s infinite;
}

@keyframes shadow {
  from {
    box-shadow: 0px 10px 15px 0px gray;
  }
  60% {
    box-shadow: 0px 2px 15px 0px gray;
  }
  to {
    box-shadow: 0px 10px 15px 0px gray;
  }
}
@keyframes moving {
  from {
    transform: translateY(0px);
  }
  60% {
    transform: translateY(8px);
  }
  to {
    transform: translateY(0px);
  }
}
@keyframes movingCards {
  from {
    transform: translateY(0px);
  }
  60% {
    transform: translateY(8px);
  }
  to {
    transform: translateY(0px);
  }
}
.pageDivider {
  width: 100vw;
  margin: auto;
  --divider-color: rgb(236, 218, 241);
  /* --divider-color: rgba(200,180,255,0.7); */
  filter:
  drop-shadow(0.5px 0 0 var(--divider-color))
  drop-shadow(-0.5px 0 0 var(--divider-color))
  drop-shadow(0 0.5px 0 var(--divider-color))
  drop-shadow(0 -0.5px 0 var(--divider-color));
  transform-origin: center;
  transition: transform 0.4s ease, filter 0.4s ease;
}
/* Schedule */

/* Schedule-header */
#schedule {
  padding-top: 300px;
}

@media (max-width: 640px) {
  #schedule {
    padding-top: 300px;
  }
}
.schedule-header {
  z-index: 99;
  text-align: center;
  margin-bottom: 60px;
  color: var(--main-text);
}

.schedule-header h2 {
  font-size: 48;
  margin-bottom: 10px;
  color: var(--main-text);
  z-index: 99;
}

.schedule-header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.schedule-header-text {
  font-size: 20px;
  display: inline-block;
  padding: 10px;
}

.divider {
  height: 50px;
  width: 3px;
  background-color: var(--second-text);
}

/* Schedule body */

.schedule-body {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  position: relative;
}

.schedule-elem {
  padding: 30px 50px;
  display: inline-block;
  width: 30%;
  min-width: 400px;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position:relative;
  transform: translateX(calc(var(--x-offset-target, 0px) * var(--x-offset-progress, 0)));
  will-change: transform;
}
.schedule-elem::before {
  content: "♠";
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 18px;
  opacity: 0.35;
}
.schedule-elem::after {
  content: "♠";
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-size: 18px;
  opacity: 0.35;
  transform: rotate(180deg);
}

.se-pink {
  background-color: var(--se-pink);
}

.se-orange {
  background-color: var(--se-orange);
}

.se-darkpink {
  background-color: var(--se-darkpink);
}

.se-title {
  margin-bottom: 30px;
  color: var(--main-text);
}

.se-title h3 {
  font-size: 28px;
}

.se-title h4 {
  font-size: 20px;
}

.se-textblock {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--second-text);
}

.se-textblock p {
  padding: 2px;
}

.schedule-sticker {
  position: absolute;
  width: 350px;
  height: auto;
  pointer-events: none;
  opacity: 0.9;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
  transition: transform 0.6s ease;
}

@media (max-width: 700px) {
  .schedule-elem {
    --x-offset: 0px;
  }
  .schedule-sticker {
    display: none;
  }
}
.logoCompetitionWinners {
  padding: 150px 0 75px 0;
}
.stickerWinners{
  text-align: center;
}
.stickerWinners{
  display: flex;
  justify-content: center;
  gap: 60px;
}
.stickerWinners h1{
  font-size: 26px;
  color: rgb(233, 193, 233);
}
.stickerWinners p {
  font-size: 20px;
  color: var(--third-text);
  margin-bottom: 7px;
  font-family:'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}
.stickers {
  margin: auto;
  padding: 30px 0 75px 0;
  display: flex;
  align-items: center;
  width: 800px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
.stickerBorder {
  filter:
  drop-shadow(1px 0 0 #8971a2)
  drop-shadow(-1px 0 0 #8971a2)
  drop-shadow(0 1px 0 #8971a2)
  drop-shadow(0 -1px 0 #8971a2)
  drop-shadow(1px 1px 0 #8971a2)
  drop-shadow(-1px -1px 0 #8971a2)
  drop-shadow(1px -1px 0 #8971a2)
  drop-shadow(-1px 1px 0 #8971a2);
}
.stickers img {
  width: 225px;
  opacity: 0;
  animation-play-state: paused;
}
.stickers img:hover{
  scale: 1.05;
}
.stickers.pop-in img{
  animation-play-state: running;
}
.stickers.pop-in img {
  opacity: 1;
  transform: scale(1);
  animation: stickerPop 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.stickers img:nth-child(1){
  animation: 0.7s stickerPop 0.7s cubic-bezier(0.16, 1, 0.3, 1) both,
    2.5s firstSticker infinite 1.1s;
}
.stickers img:nth-child(2){
  animation: 0.7s stickerPop 0.85s cubic-bezier(0.16, 1, 0.3, 1) both,
    3.5s secondSticker infinite 1.25s;
}
.stickers img:nth-child(3){
  animation: 0.7s stickerPop 1s cubic-bezier(0.16, 1, 0.3, 1) both,
    2s thirdSticker infinite 1.4s;
}
.stickers img:nth-child(4){
  animation: 0.7s stickerPop 1.15s cubic-bezier(0.16, 1, 0.3, 1) both,
    2s fourthSticker infinite 1.55s;
}
.stickers img:nth-child(5){
  animation: 0.7s stickerPop 1.3s cubic-bezier(0.16, 1, 0.3, 1) both,
    3.5s firstSticker infinite 1.7s;
}
@keyframes stickerPop {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(18px);
  }
  70% {
    opacity: 1;
    transform: scale(1.06) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes firstSticker {
    from {transform: translateY(0px) rotate(0deg)}
    60% {transform: translateY(8px) rotate(-5deg)}
    to {transform: translateY(0px) rotate(0deg)}
}

@keyframes secondSticker {
    from {transform: translateY(8px) rotate(-10deg)}
    60% {transform: translateY(16px) rotate(5deg)}
    to {transform: translateY(8px) rotate(-10deg)}
}
@keyframes thirdSticker {
    from {transform: translateY(0px) rotate(0deg)}
    60% {transform: translateY(8px) rotate(5deg)}
    to {transform: translateY(0px) rotate(0deg)}
}
@keyframes fourthSticker {
    from {transform: translateY(0px) rotate(0deg)}
    60% {transform: translateY(8px) rotate(5deg)}
    to {transform: translateY(0px) rotate(0deg)}
}

.lcHeader {
  text-align: center;
  color: var(--main-text);
}

/* staff */

.whatis {
  padding: 0vh 10vw 8vh 10vw;
}

.whatIsBody {
  display: flex;
  flex-direction: column;
  align-items: space-around;
  gap: 0vh;
}
.whatIsImages {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wFrame {
  position: relative;
}

.wFrame img {
  animation: 3s moving infinite;
  height: 300px;
  width: auto;
}

.whatIsText {
  padding: 2vh 20vw 2vh 20vw;
  display: flex;
  flex-direction: column;
  gap: 3vh;
}
.whatIsHeader {
  font-size: 45px;
  text-align: center;
  color: var(--main-text);
}
.whatIsContents {
  font-size: 20px;
  color: var(--second-text);
}
.staff {
  position: relative;
  padding: 10vh 20vw 10vh 20vw;
  text-align: center;
  --edge: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.veerAlice {
  transform-origin: 50% 90%;
  animation: silly 4s ease-in-out infinite;
}
.veerAlice:hover {
  animation-duration: 1.2s;
}

.veerAlice1 {
  position: absolute;
  top: 450px;
  left: 200px;
  width: 200px;
}
.veerAlice2 {
  animation-delay: 1s;
  position: absolute;
  top: 200px;
  right: 200px;
  width: 200px;
}
@keyframes silly {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) rotate(-1deg);
  }
  50% {
    transform: translateY(0) rotate(1deg);
  }
  75% {
    transform: translateY(-2px) rotate(-0.5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
.staffGrid {
  display: grid;
  justify-content: center;
  align-items: center;
  width: 50vw;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  column-gap: 20px;
  row-gap: 10px;
  padding: 25px 0 75px 0;
}
.staffMember {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 99;
}

.staffHeader {
  color: var(--main-text);
}
.staffMember:nth-child(8), .staffMember:nth-child(8), .staffMember:nth-child(13){
  opacity: 0;
}
.staffGrid .staffHonk{
  height: 450px;
  width: auto;
  position: absolute;
  /* translate: 550px -110px; */
  translate: 0px -150px;
  right: -20px;
}
@media(max-width: 1000px){
  .staffHonk{
    display: none;
  }
}
.staffName {
  color: var(--main-text);
  font-weight: 800;
  font-size: 20px;
}

.staffTitle {
  color: var(--second-text);
}

.staffFrame {
  transition: 0.5s ease-in-out;
}
.staffFrame:hover {
  scale: 1.05;
}
.staffFrame.flip{
  perspective: 1000px;
  width: 175px;
  height: 175px;
  overflow: hidden;
}
.staffFrame.flip .flip-inner{
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
.staffFrame.flip:hover .flip-inner{
  transform: rotateY(180deg);
}
.staffFrame.flip .staffPhoto{
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 12px;
}
.staffFrame.flip .staffPhoto.back{
  transform: rotateY(180deg);
}
.staffGrid img {
  width: 175px;
  height: 175px;
}

@media (max-width: 720px) {
  .logo img {
    height: 360px;
  }
  .logoTop {
    width: 360px;
  }
  .logo-circle {
    width: 330px;
    height: 330px;
  }
  .whatis {
    padding: 2vh 6vw 8vh 6vw;
  }
  .whatIsBody {
    gap: 4vh;
  }
  .whatIsImages {
    flex-direction: column;
    gap: 2vh;
  }
  .whatIsText {
    padding: 2vh 6vw;
  }
  .whatIsHeader {
    font-size: 32px;
  }
  .whatIsContents {
    font-size: 18px;
    line-height: 1.5;
  }
  .stickers {
    width: 95vw;
    gap: 28px;
    padding: 20px 0 50px 0;
  }
  .stickers img {
    width: 160px;
  }
  .stickerWinners {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
  }
  .staffGrid {
    width: 90vw;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    grid-template-rows: auto;
    column-gap: 16px;
    row-gap: 18px;
    padding: 20px 0 60px 0;
  }
  .staffMember:first-child .staffFrame {
    margin: 0 auto;
  }
  .staffFrame {
    margin: 0 auto;
  }
  .staffGrid img,
  .staffFrame.flip,
  .staffFrame.flip .staffPhoto {
    width: 140px;
    height: 140px;
  }
  .staffName {
    font-size: 16px;
  }
  .staffTitle {
    font-size: 14px;
  }
  .staffMember:nth-child(8),
  .staffMember:nth-child(13){
    display: none;
  }
}

@media (max-width: 520px) {
  .logo img {
    height: 300px;
  }
  .logoTop {
    width: 300px;
  }
  .logo-circle {
    width: 280px;
    height: 280px;
  }
  .stickers {
    gap: 22px;
  }
  .stickers img {
    width: 140px;
  }
  .staffGrid {
    width: 92vw;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    row-gap: 14px;
  }
  .staffFrame {
    margin: 0 auto;
  }
  .staffGrid img,
  .staffFrame.flip,
  .staffFrame.flip .staffPhoto {
    width: 128px;
    height: 128px;
  }
  .staffMember:nth-child(8),
  .staffMember:nth-child(13){
    display: none;
  }
}
.staffFooter {
  width: 250px;
  color: var(--second-text);
}
.borderPng {
  position: absolute;
  width: 4.5vw;
  height: 4.5vw;
}
.borderPng:nth-child(1) {
  top: var(--edge);
  left: var(--edge);
}

/* Top Right */
.borderPng:nth-child(2) {
  top: var(--edge);
  right: var(--edge);
}

/* Bottom Left */
.borderPng:nth-child(3) {
  bottom: var(--edge);
  left: var(--edge);
}

/* Bottom Right */
.borderPng:nth-child(4) {
  bottom: var(--edge);
  right: var(--edge);
}

.past-sites {
  padding: 70px 0;
  display: grid;
  gap: 28px;
  place-items: center;
}
.past-title {
  font-size: 32px;
  letter-spacing: 0.5px;
  color: var(--main-text);
}

.coverflow {
  position: relative;
  width: min(920px, 92vw);
  height: 360px;
  display: grid;
  place-items: center;
  padding-top: 3vh;
}

.cf-stage {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px; /* depth */
  transform-style: preserve-3d;
}

/* cards positioned by JS with translate/scale/opacity */
.cf-card {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(560px, 72vw);
  aspect-ratio: 16 / 9;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  text-decoration: none;
  /* background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 22px 60px rgba(0,0,0,.20); */
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    transform 650ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 650ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 650ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cf-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  transition: 0.3s ease-in-out;
  filter: drop-shadow(5px 5px 5px var(--carousel-shadow));
}
.cf-card img:hover {
  transform: scale(1.05);
  filter: drop-shadow(5px 5px 15px 5px var(--carousel-shadow));
}

@media (max-width: 640px) {
  .coverflow {
    width: 94vw;
    height: 200px;
    padding-top: 1vh;
  }
  .cf-card {
    width: 88vw;
    top: 52%;
    border-radius: 10px;
  }
  .cf-card img {
    padding: 0;
    border: none;
    border-radius: 10px;
  }
  .cf-title,
  .past-title,
  .cf-dots {
    text-align: center;
  }
  .cf-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  #cf-prev,
  #cf-next,
  .cf-arrow {
    transform: scale(0.85);
  }
  .past-sites {
    padding: 48px 0;
  }
}

/* big side arrows */
.cf-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 60;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);

  font-size: 26px;
  line-height: 1;
}
.cf-arrow.left {
  left: -8px;
}
.cf-arrow.right {
  right: -8px;
}

/* dots + small arrows under (like screenshot) */
.cf-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  user-select: none;
}

.cf-small-arrow {
  border: 0;
  background: transparent;
  font-size: 18px;
  color: var(--main-text);

  opacity: 0.6;
}
.cf-small-arrow:hover {
  opacity: 1;
}

.cf-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cf-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: var(--third-text);
}
.cf-dot[aria-current="true"] {
  width: 8px;
  height: 8px;
  background: rgba(80, 90, 255, 0.95);
}

/* optional: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .cf-card {
    transition: none;
  }
}

