:root {
  --green: #39ff14;
  --pink: #ff2bd6;
  --black: #000;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--green);
  font-family: Arial, sans-serif;
}

/* HOME */
#home {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.logo {
  color: var(--pink);
  font-size: 36px;
}

.row {
  display: flex;
  gap: 20px;
}

/* BUTTONS */
.btn {
  padding: 20px 30px;
  border: 4px solid var(--pink);
  font-weight: bold;
  cursor: pointer;
}

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

.btn.white {
  background: white;
  color: black;
}

/* MODALS */
.modal {
  position: fixed;
  inset: 20px;
  background: white;
  border: 10px solid var(--green);
  padding: 40px;
  overflow-y: auto;
  display: none;
  z-index: 10;
}

.modal.active {
  display: block;
}

.close {
  position: fixed;
  top: 30px;
  right: 30px;
  font-size: 24px;
}

.title {
  text-align: center;
}

.pink-text {
  color: var(--pink);
}

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

/* VIDEO CARDS */
.video-card {
  margin-bottom: 40px;
}

.video-card iframe {
  width: 100%;
  height: 360px;
}

/* SLIDER */
.slider {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.arrow {
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.slider-window {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease;
}

.case-card {
  min-width: 300px;
  background: var(--pink);
  color: white;
  padding: 20px;
  margin: 0 10px;
  text-align: center;
}
