body {
  background: -webkit-radial-gradient(ellipse at bottom, #0d3112 0%, #0c130d 100%);
  /* Safari */
  background: -moz-radial-gradient(ellipse at bottom, #0d3112 0%, #0c130d 100%);
  /* Firefox */
  background: radial-gradient(ellipse at bottom, #0d3112 0%, #0c130d 100%);
  font-family: 'Kode Mono', monospace;
  font-weight: bold;
  cursor: none;
}

.contact-container.glassmorphism {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

.contact-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.contact-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
}

.contact-item a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffc107 !important;
}

/* Payment Chips Styles */
.payment-chips {
  max-width: 1400px;
  margin: 0 auto;
}

.chip {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 25px;
  padding: 8px 16px;
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.chip:hover {
  background: rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

/* Player Counter Styles */
.player-counter {
  animation: pulse 2s infinite;
}

.counter-number {
  font-family: 'Kode Mono', monospace;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes countUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.glassmorphism {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  /* Safari */
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  min-height: 70%;
}

.glassmorphism-contacts {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  /* Safari */
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  /* Safari */
  -moz-transition: opacity 0.5s ease-in-out;
  /* Firefox */
  transition: opacity 0.5s ease-in-out;
}

.fade-in.active {
  opacity: 1;
}

.container {
  position: relative;
  z-index: 1;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100vw;
  background-color: #0c130c;
}

.switch-button {
  max-width: 400px;
  height: 48px;
  text-align: center;
  will-change: transform;
  z-index: 197 !important;
  cursor: pointer;
  -webkit-transition: .3s ease all;
  /* Safari */
  -moz-transition: .3s ease all;
  /* Firefox */
  transition: .3s ease all;
  border: 1px solid white;
  border-radius: 1.30rem !important;
}

.switch-button-case {
  display: inline-block;
  background: none;
  width: 50%;
  height: 100%;
  color: white;
  position: relative;
  border: none;
  -webkit-transition: .3s ease all;
  /* Safari */
  -moz-transition: .3s ease all;
  /* Firefox */
  transition: .3s ease all;
  text-transform: uppercase;
  letter-spacing: 5px;
  padding-bottom: 1px;
  font-size: 0.9rem !important;
}

.switch-button-case:hover {
  color: grey;
  cursor: pointer;
}

.switch-button-case:focus {
  outline: none;
}

.switch-button .active {
  color: #151515;
  background-color: white;
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  -webkit-transition: .3s ease-out all;
  /* Safari */
  -moz-transition: .3s ease-out all;
  /* Firefox */
  transition: .3s ease-out all;
  border-radius: 1.25rem !important;
}

.switch-button .active-case {
  color: #151515;
}

.btn {
  border-radius: 1.25rem !important;
  font-weight: 300;
}

/* Fade transition */
.fade-enter-active,
.fade-leave-active {
  -webkit-transition: opacity 0.5s ease;
  /* Safari */
  -moz-transition: opacity 0.5s ease;
  /* Firefox */
  transition: opacity 0.5s ease;
}

.fade-enter,
.fade-leave-to

/* .fade-leave-active in <2.1.8 */
  {
  opacity: 0;
}

/* Slide transition for column switching */
.slide-enter-active,
.slide-leave-active {
  -webkit-transition: all 0.6s ease;
  /* Safari */
  -moz-transition: all 0.6s ease;
  /* Firefox */
  transition: all 0.6s ease;
}

.slide-enter,
.slide-leave-to {
  opacity: 0;
  -webkit-transform: translateX(10px);
  /* Safari */
  -moz-transform: translateX(10px);
  /* Firefox */
  transform: translateX(10px);
}

.form-control {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.animated-width {
  -webkit-transition: width 0.5s ease;
  /* Safari */
  -moz-transition: width 0.5s ease;
  /* Firefox */
  transition: width 0.5s ease;
}

small {
  font-size: 0.4rem;
}

.contact-info,
.policies {
  font-size: 0.8rem
}

@media (min-width: 768px) {
  .full-width {
    width: 100%;
    /* Equivalent to col-12 */
  }

  .half-width {
    width: 50%;
    /* Equivalent to col-md-6 */
  }

  small {
    font-size: 0.65rem;
    color: #bebebe !important;
  }
}

.fade-in {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in;
  /* Safari */
  -moz-transition: opacity 0.5s ease-in;
  /* Firefox */
  transition: opacity 0.5s ease-in;
}

.hidden {
  opacity: 0;
  width: 0;
  -webkit-transition: opacity 0.5s ease-out;
  /* Safari */
  -moz-transition: opacity 0.5s ease-out;
  /* Firefox */
  transition: opacity 0.5s ease-out;
}

/* Fade transition for form switching */
.fade-enter-active,
.fade-leave-active {
  -webkit-transition: opacity 0.5s ease;
  /* Safari */
  -moz-transition: opacity 0.5s ease;
  /* Firefox */
  transition: opacity 0.5s ease;
}

.fade-enter,
.fade-leave-to

/* .fade-leave-active in versions below 2.1.8 */
  {
  opacity: 0;
}

.modal-dialog {
  min-width: 60% !important;
}

.modal-content {
  border-radius: 1.25rem !important;
}

.animated-text,
a {
  background: linear-gradient(to right, #ffcc00 0%, #d08504 50%, #ffcc00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Fallback for browsers that don't support text-fill-color */
  animation: gradientAnimation 2.5s cubic-bezier(.46, .03, .52, .96) infinite alternate;
  /* Apply the animation */
  background-size: 200% 100%;
  /* Make gradient larger for animation */
  text-decoration-color: #d08504;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.btn-yellow-border {
  border-color: #d08504 !important;
}

.footer {
  border-color: #d08504 !important;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #d4af37 0%, #b8941f 70%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 0 8px rgba(212, 175, 55, 0.6),
    0 0 16px rgba(212, 175, 55, 0.3);
  opacity: 0.9;
}

.cursor::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: cursorRing 2s linear infinite;
}

.cursor.hovering {
  transform: scale(1.8);
  background: radial-gradient(circle, #d4af37 0%, #ffd700 50%, #b8941f 100%);
  box-shadow:
    0 0 12px rgba(212, 175, 55, 0.8),
    0 0 24px rgba(212, 175, 55, 0.4),
    0 0 36px rgba(212, 175, 55, 0.2);
}

.cursor.hovering::before {
  border-color: rgba(212, 175, 55, 0.6);
  animation-duration: 1s;
}

.cursor.clicking {
  transform: scale(0.7);
  background: radial-gradient(circle, #ffd700 0%, #d4af37 100%);
  box-shadow:
    0 0 20px rgba(255, 215, 0, 1),
    0 0 40px rgba(212, 175, 55, 0.6);
}

/* Cursor Trail */
.cursor-trail {
  position: fixed;
  width: 6px;
  height: 6px;
  background: rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  animation: trailFade 0.8s ease-out forwards;
}

/* Animations */
@keyframes cursorRing {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.7;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0.7;
  }
}

@keyframes trailFade {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.2);
  }
}

@keyframes particleFloat {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-30px) scale(0.3);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .main-text {
    font-size: 1.4rem;
  }

  .main-card {
    padding: 2rem 1.5rem;
  }
}

.min-vh-100 {
  min-height: 100vh;
}

.overflow-y-scroll {
  overflow-y: auto;
}