/* ===========================================
   VENTUS WEBSITE - CSS STYLESHEET
   Converted from React + Tailwind to Vanilla CSS
   =========================================== */
/* CSS RESET & BASE */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Rubik', sans-serif;
  background-color: #0f1a2e;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img,
video {
  max-width: 100%;
  height: auto;
  display: block; }

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit; }

a {
  text-decoration: none;
  color: inherit; }

ul {
  list-style: none; }

/* UTILITY CLASSES */
.italic {
  font-style: italic; }

.italic-bold {
  font-style: italic;
  font-weight: 700; }

.divider {
  width: 200px;
  opacity: 0.8; }

@media (min-width: 768px) {
  .divider {
    width: 309px; } }
/* KEYFRAME ANIMATIONS */
@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@keyframes bounce {
  0%,
  100% {
    transform: translateY(-5%); }
  50% {
    transform: translateY(5%); } }
@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px); } }
@keyframes pulse {
  0%,
  100% {
    opacity: 1; }
  50% {
    opacity: 0.6; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #0f2545;
  overflow: hidden; }

@media (min-width: 768px) {
  .hero-section {
    height: 1000px; } }
.hero-background {
  position: absolute;
  inset: 0;
  bottom: 0;
  height: 100%; }

.hero-ocean {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom; }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; }

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 43, 0.3) 0%, rgba(0, 0, 0, 0) 50%, #0a1628 100%); }

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto; }

.hero-title-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 100%;
  max-width: 512px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 20;
  padding: 0 16px;
  /*animation: slideIn 1s ease-out;*/ }

@media (min-width: 768px) {
  .hero-title-section {
    transform: translate(-50%, 0);
    top: 205px;
    left: calc(50% - 527px);
    padding: 0; } }
.hero-logo {
  margin-bottom: 16px;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 503 / 167;
  position: relative;
  margin-bottom: -10px;}

@media (min-width: 768px) {
  .hero-logo {
    max-width: 550px; } }
.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain; }

.hero-subtitle {
  color: #16236d;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  font-family: 'Rubik', sans-serif;
  text-align: center;
  white-space: nowrap; }

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 24px; } }
.hero-title-group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center; }

.hero-new-world {
  font-size: 48px;
  line-height: 1.0;
  color: white;
  font-family: 'Sansita One', sans-serif;
  letter-spacing: -1.9px;
  filter: drop-shadow(0 4px 30px rgba(255, 255, 255, 0.6));
  -webkit-text-stroke: 2px #16236d; }

@media (min-width: 768px) {
  .hero-new-world {
    font-size: 90px;
    line-height: 90px; } }
.hero-ventus {
  width: max-content;
  padding: 0 16px;
  font-size: 72px;
  line-height: 1.0;
  font-family: 'Sansita One', sans-serif;
  letter-spacing: -3px;
  color: transparent;
  background: linear-gradient(to right, #147ACA 0%, #000B9E 45%, #18699F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 70px rgba(255, 255, 255, 0.6));
  -webkit-text-stroke: 2px white;
  margin-top: -8px;
  white-space: nowrap;
  padding-bottom: 16px; }

@media (min-width: 768px) {
  .hero-ventus {
    font-size: 150px;
    line-height: 150px;
    letter-spacing: -6.8px;
    margin-top: -16px; } }
.hero-date-box {
  position: relative;
  margin-top: -8px;
  width: 100%;
  max-width: 320px;
  height: auto;
  padding: 16px 0;
  background-color: rgba(10, 22, 40, 0.6);
  border-radius: 10px;
  border: 1px solid rgba(255, 185, 0, 0.4);
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  backdrop-filter: blur(4px); }

@media (min-width: 768px) {
  .hero-date-box {
    max-width: none;
    width: 462px;
    height: 95px;
    margin-top: -16px; } }
.date-label {
  color: #b0c4de;
  font-size: 12px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-family: 'Rubik', sans-serif; }

@media (min-width: 768px) {
  .date-label {
    font-size: 14px; } }
.date-value {
  color: white;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif; }

@media (min-width: 768px) {
  .date-value {
    font-size: 30px; } }
.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: floatUp 1.5s ease-in-out infinite; }

@media (min-width: 768px) {
  .hero-scroll-indicator {
    bottom: 50px;
    gap: 12px; } }
.scroll-text {
  color: #b0c4de;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  font-family: 'Rubik', sans-serif; }

@media (min-width: 768px) {
  .scroll-text {
    font-size: 12px; } }
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent 0%, #ffb900 50%, transparent 100%); }

@media (min-width: 768px) {
  .scroll-line {
    height: 80px; } }
/* INFO SECTION */
.info-section {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #0f1f38;
  overflow: hidden; }

.info-background {
  position: absolute;
  inset: 0;
  z-index: 0; }

.info-background img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.info-decoration-line {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 15px;
  z-index: 10;
  background-repeat: repeat-x;
  background-size: 730px 15px; }

.info-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px; }

.info-header {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px; }

.info-title-wrapper {
  position: relative;
  margin-bottom: 32px;
  text-align: center; }

.info-title {
  color: white;
  font-size: 36px;
  font-family: 'Sansita One', sans-serif;
  line-height: 42px;
  text-align: center;
  filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.5)); }

@media (min-width: 768px) {
  .info-title {
    font-size: 48px;
    line-height: 48px; } }
.divider-wrapper {
  margin-top: 16px;
  display: flex;
  justify-content: center; }

.info-date-pill {
  margin-bottom: 24px;
  background-color: rgba(15, 37, 69, 0.6);
  border: 1px solid rgba(255, 185, 0, 0.3);
  border-radius: 9999px;
  height: auto;
  min-height: 50px;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15); }

.info-date-pill p {
  color: #ffca28;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  text-align: center;
  line-height: 32px; }

@media (min-width: 768px) {
  .info-date-pill p {
    font-size: 24px; } }
.info-description-box {
  position: relative;
  width: 100%;
  max-width: 976px;
  background-color: rgba(15, 23, 43, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1); }

@media (min-width: 768px) {
  .info-description-box {
    padding: 25px 121px; } }
.info-description-box p {
  color: #e2e8f0;
  font-size: 20px;
  font-family: 'Rubik', sans-serif;
  text-align: center;
  line-height: 34px; }

@media (min-width: 768px) {
  .info-description-box p {
    font-size: 24px; } }
/* Video Section */
.info-video-container {
  position: relative;
  width: 100%;
  max-width: 976px;
  height: 300px;
  margin-bottom: 60px;
  box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.5);
  border-radius: 10px; }

@media (min-width: 768px) {
  .info-video-container {
    height: 549px; } }
.info-video-wrapper {
  width: 100%;
  height: 100%;
  background-color: black;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 185, 0, 0.5);
  box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer; }

.video-overlay {
  position: absolute;
  inset: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0.9;
  z-index: 10; }

.video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  pointer-events: none; }

.video-play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20; }

.play-circle {
  position: relative;
  z-index: 10;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  border: 2px solid #ffb900;
  box-shadow: 0px 0px 50px 0px rgba(255, 185, 0, 0.5);
  display: flex;
  align-items: center;
  justify-center: center;
  backdrop-filter: blur(4px);
  transition: transform 0.3s; }

.play-circle:hover {
  transform: scale(1.1); }

.play-icon {
  width: 40px;
  height: 40px;
  margin-left: 27px; }

.play-circle:hover .play-icon {
  fill: #ffb900; }

/* Info Cards Grid */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1352px;
  padding-bottom: 100px; }

@media (min-width: 1024px) {
  .info-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px; } }
.info-card {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(254, 154, 0, 0.3);
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 314 340' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><rect x='0' y='0' height='100%' width='100%' fill='url(%23grad)' opacity='1'/><defs><radialGradient id='grad' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(15.7 0 0 17 157 170)'><stop stop-color='rgba(31,81,147,1)' offset='0'/><stop stop-color='rgba(19,57,104,1)' offset='0.5'/><stop stop-color='rgba(7,32,62,1)' offset='1'/></radialGradient></defs></svg>"), linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
  cursor: pointer;
  transition: transform 0.3s; }

@media (min-width: 768px) {
  .info-card {
    height: 340px; } }
.info-card:hover {
  transform: translateY(-12px); }

.card-corners .corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: #ffb900;
  opacity: 0.6;
  pointer-events: none; }

.corner-tl {
  top: 0;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
  border-top-left-radius: 10px; }

.corner-tr {
  top: 0;
  right: 0;
  border-top: 2px solid;
  border-right: 2px solid;
  border-top-right-radius: 10px; }

.corner-bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
  border-bottom-left-radius: 10px; }

.corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-bottom-right-radius: 10px; }

.card-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.card-image-wrapper {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px; }

@media (min-width: 768px) {
  .card-image-wrapper {
    top: 44px;
    width: 191px;
    height: 191px; } }
.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; }

.card-title-wrapper {
  position: absolute;
  bottom: 24px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 8px; }

@media (min-width: 768px) {
  .card-title-wrapper {
    bottom: 32px;
    padding: 0 16px; } }
.card-title-wrapper .card-title {
  color: #eee;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 22px;
  white-space: pre-wrap;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  width: 100%;
  filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.15)); }

@media (min-width: 768px) {
  .card-title-wrapper .card-title {
    font-size: 20px;
    line-height: 25px; } }
/* FEATURES SECTION */
.features-section {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #0c1a2f;
  overflow: hidden;
  padding-bottom: 100px; }

.features-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: auto; }

.features-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1; }

.features-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, #0c1a2f, transparent, #0c1a2f); }

.features-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2631px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay; }

.features-texture img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.features-captain {
  display: none; }

@media (min-width: 1280px) {
  .features-captain {
    display: block;
    position: absolute;
    right: -150px;
    bottom: 0;
    width: 1000px;
    z-index: 0;
    pointer-events: none; }

  .features-captain img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5)); } }
.features-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 60px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: center; }

.features-header {
  position: relative;
  margin-bottom: 48px;
  text-align: center; }

.features-title {
  color: white;
  font-size: 36px;
  font-family: 'Sansita One', sans-serif;
  line-height: 42px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.25)); }

@media (min-width: 768px) {
  .features-title {
    font-size: 48px;
    line-height: 48px; } }
.features-header .divider {
  margin: 0 auto; }

.features-main {
  position: relative;
  width: 100%;
  max-width: 1280px; }

.features-box {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 976px;
  background-color: rgba(15, 23, 43, 0.8);
  border: 2px solid rgba(255, 185, 0, 0.3);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px; }

@media (min-width: 768px) {
  .features-box {
    padding: 50px; } }
.features-intro {
  text-align: center;
  max-width: 800px; }

.features-subtitle {
  color: #fef3c6;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  margin-bottom: 16px;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-align: center; }

@media (min-width: 768px) {
  .features-subtitle {
    font-size: 38px; } }
.features-text {
  color: #eee;
  font-size: 18px;
  font-family: 'Rubik', sans-serif;
  line-height: 29px; }

.features-text p {
  margin-bottom: 8px; }

.feature-cards-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px; }

.feature-card {
  position: relative;
  width: 100%;
  min-height: 120px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 185, 0, 0.3);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); }

@media (min-width: 768px) {
  .feature-card {
    flex-direction: row; } }
.feature-card:hover {
  background-color: rgba(255, 255, 255, 0.05); }

.feature-card-corners .corner-small {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: #ffb900;
  opacity: 0.5; }

.corner-tl-small {
  top: 0;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
  border-top-left-radius: 10px; }

.corner-br-small {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-bottom-right-radius: 10px; }

.feature-card-icon {
  position: relative;
  flex-shrink: 0;
  width: 113px;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: center; }

.icon-glow {
  position: absolute;
  inset: 0;
  background-color: #ffb900;
  opacity: 0.1;
  filter: blur(24px);
  border-radius: 50%; }

.feature-card-icon img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #9e9e9e; }

.feature-card-text {
  flex: 1;
  text-align: center; }

@media (min-width: 768px) {
  .feature-card-text {
    text-align: left; } }
.feature-card-text h4 {
  color: #79d0ff;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  margin-bottom: 8px;
  line-height: 1.2; }

@media (min-width: 768px) {
  .feature-card-text h4 {
    font-size: 26px; } }
.feature-card-text p {
  color: #eee;
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
  line-height: 1.625; }

@media (min-width: 768px) {
  .feature-card-text p {
    font-size: 18px; } }
.features-info-blocks {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px; }

.features-info-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto; }

.features-info-block p {
  color: #e2e8f0;
  font-size: 18px;
  font-family: 'Rubik', sans-serif;
  line-height: 29px; }

.features-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  position: relative; }

.features-sail-button {
  position: relative;
  width: 646px;
  max-width: 100%;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 20;
  cursor: pointer;
  margin-top: -20px;
  transition: transform 0.3s; }

.features-sail-button:hover {
  transform: scale(1.05); }

.sail-button-bg {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden; }

.sail-button-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.sail-button-text {
  position: relative;
  z-index: 10;
  color: #fef3c6;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  text-align: center;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.8)); }

@media (min-width: 768px) {
  .sail-button-text {
    font-size: 32px; } }
.features-screenshot {
  position: relative;
  width: 100%;
  max-width: 496px;
  margin-top: 16px;
  z-index: 10; }

.screenshot-wrapper {
  width: 100%;
  border: 2px solid rgba(255, 185, 0, 0.6);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  background-color: black; }

.screenshot-wrapper img {
  width: 100%;
  height: auto;
  display: block; }

.features-note {
  position: relative;
  width: 730px;
  max-width: 100%;
  margin-top: 16px; }

.note-box {
  background-color: rgba(15, 23, 43, 0.6);
  border: 1px solid rgba(255, 185, 0, 0.2);
  border-radius: 10px;
  padding: 24px;
  text-align: left; }

.note-box p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.625; }

/* REWARDS SECTION */
.rewards-section {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #0c1a2f;
  overflow: hidden;
  padding-bottom: 100px; }

.rewards-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: auto; }

.rewards-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1; }

.rewards-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, #0c1a2f, rgba(0, 0, 0, 0), #0c1a2f);
  opacity: 0.8; }

.rewards-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2960px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: overlay; }

.rewards-texture img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.rewards-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 60px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center; }

.rewards-header {
  position: relative;
  margin-bottom: 48px;
  text-align: center;
  z-index: 20; }

.rewards-title {
  color: white;
  font-size: 36px;
  font-family: 'Sansita One', sans-serif;
  line-height: 42px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.25)); }

@media (min-width: 768px) {
  .rewards-title {
    font-size: 48px;
    line-height: 48px; } }
.rewards-header .divider {
  margin: 0 auto; }

.rewards-subtitle {
  margin-top: 24px;
  color: #e2e8f0;
  font-size: 24px;
  font-family: 'Rubik', sans-serif;
  text-align: center;
  max-width: 872px;
  margin-left: auto;
  margin-right: auto;
  line-height: 34px; }

.rewards-main {
  position: relative;
  width: 100%;
  max-width: 1280px; }

.rewards-character {
  display: none; }

@media (min-width: 1280px) {
  .rewards-character {
    display: block;
    position: absolute;
    left: -700px;
    top: 750px;
    width: 1335px;
    z-index: 0;
    pointer-events: none; }

  .rewards-character img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5)); } }
.rewards-box {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 976px;
  background-color: rgba(30, 41, 59, 0.8);
  border: 2px solid rgba(255, 185, 0, 0.3);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px; }

@media (min-width: 768px) {
  .rewards-box {
    padding: 50px; } }
.rewards-preregister,
.rewards-daily,
.rewards-buffs {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%; }

.rewards-section-title {
  color: #fef3c6;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.2; }

@media (min-width: 768px) {
  .rewards-section-title {
    font-size: 38px; } }
.rewards-section-text {
  color: #e2e8f0;
  font-size: 18px;
  text-align: center;
  font-family: 'Rubik', sans-serif;
  line-height: 29px;
  max-width: 800px;
  margin-bottom: 32px; }

.rewards-treasure-box {
  position: relative;
  width: 100%;
  max-width: 710px;
  height: 300px;
  margin-bottom: 32px; }

.treasure-inner {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #d97706 0%, #7c2d12 100%);
  border-radius: 10px;
  border: 2px solid rgba(255, 185, 0, 0.6);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden; }

.treasure-glow {
  position: absolute;
  top: -852px;
  left: -647px;
  width: 2000px;
  height: 2000px;
  opacity: 0.5;
  mix-blend-mode: screen;
  animation: spin 10s linear infinite; }

.treasure-glow img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.treasure-chests {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 354px;
  height: 354px; }

.treasure-chests img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto; }

.treasure-question {
  position: absolute;
  top: 109px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 78px;
  font-family: 'Sansita One', sans-serif;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
  -webkit-text-stroke: 3px #000;
  animation: bounce 3s infinite; }

.rewards-note {
  width: 100%;
  max-width: 768px;
  background-color: rgba(15, 23, 43, 0.6);
  border: 1px solid rgba(255, 185, 0, 0.2);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 32px; }

.rewards-note ul {
  list-style: none; }

.rewards-note li {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 8px; }

.rewards-note p {
  color: #94a3b8;
  font-size: 14px;
  text-align: left;
  line-height: 20px; }

.rewards-button {
  position: relative;
  width: 100%;
  max-width: 646px;
  height: 106px;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0 auto;
  transition: transform 0.3s; }

.rewards-button:hover {
  transform: scale(1.05); }

.rewards-button .button-bg {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden; }

.rewards-button .button-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.rewards-button .button-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fef3c6;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  text-align: center;
  padding: 0 16px;
  line-height: 1.2;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.8)); }

@media (min-width: 768px) {
  .rewards-button .button-text {
    font-size: 32px; } }
.rewards-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 185, 0, 0.3), transparent); }

.rewards-daily-image {
  position: relative;
  width: 100%;
  max-width: 710px;
  height: 300px;
  border-radius: 10px;
  border: 2px solid rgba(255, 185, 0, 0.6);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }

.daily-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; }

.sparkle {
  position: absolute;
  opacity: 0.8;
  mix-blend-mode: screen;
  pointer-events: none; }

.sparkle-1 {
  top: 32px;
  left: 50px;
  width: 127px;
  height: 106px; }

.sparkle-2 {
  bottom: 50px;
  right: 50px;
  width: 140px;
  height: 80px;
  transform: rotate(180deg); }

.sparkle img {
  width: 100%;
  height: 100%;
  object-fit: contain; }

.rewards-buffs-image {
  position: relative;
  width: 100%;
  max-width: 710px;
  height: 300px;
  border-radius: 10px;
  border: 2px solid rgba(255, 185, 0, 0.6);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }

.buffs-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6; }

.buffs-ships {
  position: absolute;
  inset: 0; }

.buffs-ships img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.buffs-glow {
  position: absolute;
  top: -17px;
  left: -135px;
  width: 854px;
  height: 387px;
  mix-blend-mode: plus-lighter;
  pointer-events: none; }

.buffs-glow img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

/* DISCORD SECTION */
.discord-section {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #0c1a2f;
  overflow: hidden;
  padding-bottom: 100px; }

@media (max-width: 768px) {
  .discord-section {
    padding-bottom: 50px; } }
.discord-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: auto; }

@media (max-width: 768px) {
  .discord-background {
    margin-top: -460px; } }
.discord-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1; }

.discord-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, #0c1a2f, rgba(0, 0, 0, 0), #0c1a2f);
  opacity: 0.8; }

.discord-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2072px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay; }

.discord-texture img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

/* Removed .discord-desktop - no longer needed */
.discord-layout {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: auto;
  max-width: 1920px;
  margin: 0 auto;
  padding: 40px 16px 0;
  z-index: 10; }

@media (min-width: 768px) {
  .discord-layout {
    min-height: 1530px; } }
.discord-content-column {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 0;
  align-items: center;
  width: 100%;
  max-width: 1010px;
  position: relative;
  z-index: 30; }

@media (min-width: 768px) {
  .discord-content-column {
    gap: 390px;
    padding-top: 40px; } }
.discord-character {
  display: none; }

@media (min-width: 768px) {
  .discord-character {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    top: 40px;
    width: 1249px;
    max-width: none;
    height: auto;
    z-index: 20;
    pointer-events: none; }

  .discord-character img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5)); } }
.discord-top-section,
.discord-bottom-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%; }

.discord-spacer {
  height: 0; }

.discord-header {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; }

.discord-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 16px; }

.discord-logo img {
  width: 150px;
  height: auto;
  margin-bottom: -30px; }

@media (max-width: 768px) {
  .discord-logo img {
    width: 120px;
    height: auto; } }
.discord-title {
  color: white;
  font-size: 28px;
  font-family: 'Sansita One', sans-serif;
  line-height: 34px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.25));
  text-align: center; }

@media (min-width: 768px) {
  .discord-title {
    font-size: 48px;
    line-height: 48px; } }
.discord-divider-wrapper {
  display: flex;
  justify-content: center; }

.discord-divider-wrapper img {
  width: 200px;
  opacity: 0.8; }

@media (min-width: 768px) {
  .discord-divider-wrapper img {
    width: 309px; } }
.discord-info-box {
  background-color: rgba(15, 23, 43, 0.8);
  border: 1px solid rgba(255, 185, 0, 0.2);
  border-radius: 10px;
  padding: 16px;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  text-align: center; }

@media (min-width: 768px) {
  .discord-info-box {
    padding: 24px; } }
.discord-info-box p {
  color: #e2e8f0;
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  line-height: 22px;
  margin-bottom: 12px; }

@media (min-width: 768px) {
  .discord-info-box p {
    font-size: 18px;
    line-height: 26px; } }
.discord-button-wrapper {
  display: flex;
  justify-content: center;
  width: 100%; }

.discord-button {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 106px;
  cursor: pointer;
  transition: transform 0.3s; }

@media (min-width: 768px) {
  .discord-button {
    height: 106px; } }
/* Single button modifier removed as base height is now correct */
.discord-button:hover {
  transform: scale(1.05); }

.discord-button .button-bg {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden; }

.discord-button .button-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.discord-button .button-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px; }

.button-title {
  color: #fef3c6;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  text-align: center;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.8));
  line-height: 1.2; }

@media (min-width: 768px) {
  .button-title {
    font-size: 24px; } }
.button-subtitle {
  color: #fef3c6;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  text-align: center;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.8));
  line-height: 1.2; }

@media (min-width: 768px) {
  .button-title {
    font-size: 32px; } }
/* Removed .discord-mobile and related unused styles */
/* REGISTER FORM SECTION */
.register-section {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #0c1a2f;
  overflow: hidden;
  padding-bottom: 100px; }

.register-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: auto; }

.register-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1; }

.register-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2036px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: overlay; }

.register-texture img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.register-captain {
  display: none; }

@media (min-width: 1280px) {
  .register-captain {
    display: block;
    position: absolute;
    left: -240px;
    top: 20px;
    width: 1000px;
    z-index: 0;
    pointer-events: none; }

  .register-captain img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5)); } }
.register-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1072px;
  margin: 0 auto;
  padding-top: 60px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center; }

.register-header {
  position: relative;
  margin-bottom: 48px;
  text-align: center; }

.register-title {
  color: #fffb00;
  font-size: 36px;
  font-family: 'Sansita One', sans-serif;
  line-height: 42px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.25));
  animation: scaleup 2s linear infinite; }

@keyframes scaleup {
  0%,
  100% {
    transform: scale(1.2); }
  50% {
    transform: scale(1); } }
@media (min-width: 768px) {
  .register-title {
    font-size: 48px;
    line-height: 48px; } }
.register-header .divider {
  margin: 0 auto; }

.register-form-container {
  position: relative;
  width: 100%;
  max-width: 1072px; }

.register-form-wrapper {
  position: relative;
  width: 100%;
  border: 2px solid rgba(255, 185, 0, 0.3);
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); }

@media (min-width: 768px) {
  .register-form-wrapper {
    padding: 50px; } }
.form-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(8px); }

.form-bg-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(31, 81, 147, 0.8), rgba(19, 57, 104, 0.8), rgba(7, 32, 62, 0.8));
  opacity: 0.6; }

.form-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: #ffb900;
  opacity: 0.8;
  z-index: 10; }

.form-corner.corner-tl {
  top: 0;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
  border-top-left-radius: 16px; }

.form-corner.corner-tr {
  top: 0;
  right: 0;
  border-top: 2px solid;
  border-right: 2px solid;
  border-top-right-radius: 16px; }

.form-corner.corner-bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
  border-bottom-left-radius: 16px; }

.form-corner.corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-bottom-right-radius: 16px; }

.form-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 24px; }

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%; }

@media (min-width: 768px) {
  .form-fields {
    flex-direction: row; } }
.form-input-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 185, 0, 0.3);
  border-radius: 10px;
  padding: 0 16px;
  height: 60px; }

@media (max-width: 768px) {
  .form-input-wrapper {
    padding: 17px 16px; } }
.input-icon {
  width: 24px;
  height: 24px;
  color: #94a3b8;
  margin-right: 12px; }

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 16px;
  font-family: 'Rubik', sans-serif; }

.form-input::placeholder {
  color: #64748b; }

.form-submit-button {
  position: relative;
  width: 100%;
  height: 60px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s; }

@media (min-width: 768px) {
  .form-submit-button {
    width: 192px; } }
.form-submit-button:hover {
  transform: scale(1.05); }

.submit-bg {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden; }

.submit-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.submit-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fef3c6;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.8)); }

.form-success {
  text-align: center;
  padding: 40px; }

.form-success h3 {
  color: #4ade80;
  font-size: 32px;
  font-family: 'Rubik', sans-serif; }

.form-error {
  color: #ef4444;
  font-size: 14px;
  text-align: center; }

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer; }

.checkbox-box {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 185, 0, 0.5);
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.3);
  flex-shrink: 0; }

.checkbox-check {
  position: absolute;
  inset: 2px;
  background-color: #ffb900;
  border-radius: 2px; }

.checkbox-label {
  color: #cbd5e1;
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  line-height: 1.5; }

.form-info-box {
  background-color: rgba(15, 23, 43, 0.6);
  border: 1px solid rgba(255, 185, 0, 0.2);
  border-radius: 10px;
  padding: 24px; }

.info-items {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.info-item {
  display: flex;
  gap: 12px; }

.info-bullet {
  width: 6px;
  height: 6px;
  background-color: #ffb900;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px; }

.info-item p {
  color: #cbd5e1;
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  line-height: 20px;
  margin-bottom: 4px; }

.form-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; }

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0.8; }

.social-link:hover {
  transform: scale(1.2);
  opacity: 1; }

.social-link svg {
  width: 100%;
  height: 100%;
  fill: #cbd5e1; }

.social-link:hover svg {
  fill: #ffb900; }

/* FOOTER SECTION */
.footer-section {
  position: relative;
  width: 100%;
  background-color: #000;
  border-top: 1px solid #333; }

.footer-content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 16px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px; }

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    padding: 0 40px;
    height: 91px;
    gap: 0; } }
.footer-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  order: 1; }

.logo-papaya {
  height: 27px;
  width: auto; }

.logo-koei {
  height: 28px;
  width: auto; }

.footer-copyright {
  order: 3;
  text-align: center; }

@media (min-width: 768px) {
  .footer-copyright {
    order: 2;
    flex: 1; } }
.footer-copyright p {
  color: #94a3b8;
  font-size: 12px;
  font-family: 'Rubik', sans-serif;
  line-height: 1.5; }

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  order: 2; }

@media (min-width: 768px) {
  .footer-links {
    order: 3; } }
.footer-links a {
  color: #94a3b8;
  font-size: 12px;
  font-family: 'Rubik', sans-serif;
  text-transform: uppercase;
  transition: color 0.3s; }

.footer-links a:hover {
  color: #fff; }

.footer-divider {
  width: 1px;
  height: 14px;
  background-color: #333; }

/* PRE-REGISTER BADGE */
.pre-register-badge {
  position: fixed;
  bottom: 144px;
  right: 24px;
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.5s, transform 0.3s;
  pointer-events: none; }

.pre-register-badge.badge-visible {
  opacity: 1;
  pointer-events: all; }

.pre-register-badge:hover {
  transform: scale(1.1); }

.badge-wrapper {
  position: relative;
  /* width: 180px;
  height: 180px; */ }

.badge-wrapper img {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  object-fit: contain; }

.badge-ring {
  position: absolute;
  inset: 10px;
  z-index: 10;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px dashed #FFB900;
  animation: rotate 10s linear infinite;
  margin-top: -10px;
  margin-left: -10px; }

@keyframes rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
/* VIDEO MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s; }

.video-modal.active {
  opacity: 1;
  pointer-events: all; }

.modal-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); }

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 32px;
  z-index: 10;
  transition: transform 0.3s; }

.modal-close:hover {
  transform: scale(1.2); }

.modal-video {
  width: 100%;
  height: 100%;
  border: none; }

/* RESPONSIVE OVERRIDES */
@media (max-width: 767px) {
  .hero-title-section {
    padding: 0 24px; }

  .info-title {
    font-size: 32px;
    line-height: 38px; }

  .features-title,
  .rewards-title,
  .discord-title,
  .register-title {
    font-size: 32px;
    line-height: 38px; } }

/*# sourceMappingURL=uwo_pre_register_202603_1.css.map */
