@import url("https://rsms.me/inter/inter.css");
@import url("https://fonts.cdnfonts.com/css/gg-sans-2");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
*::after,
*::before {
  box-sizing: border-box;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

:root {
  --custom-gradient-color-1: #a9c9ff;
  --custom-gradient-color-2: #ffbbec;
  --custom-gradient-color-3: #ffc3a0;
}

body {
  background: linear-gradient(135deg, #00000c 0%, #010012 100%);
  color: #f9fafb;
  font-family: "Inter", system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.text-link {
}

/* Grid pattern background */
.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
  opacity: 0.4;
  animation: gridMove 30s infinite linear;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}

/* Hero section */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ensures top and bottom spacing */
  min-height: 100vh;
  padding: 6rem 2rem 3rem;
  z-index: 3;
}
.hero-section .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.skye-icon {
  width: 120px;
}
.hero-heading {
  width: 100%;
  text-align: center;
  font-size: 70px;
  font-weight: 700;
  line-height: 85px;
  font-style: normal;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.8);

  background: linear-gradient(to right, #bdc6df, #ffffff, #bdc6df);
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headingGradient 1.8s ease forwards;
}

.gradient-text {
  background: -webkit-linear-gradient(#bae8f9, #c987fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 20px;
  color: rgba(241, 247, 254, 0.71);
  line-height: 28px;
  max-width: 700px;
  font-weight: 400;
  font-style: normal;
  margin: 0 auto 2.5rem;
}

@keyframes headingGradient {
  to {
    background-position: 0% 0;
  }
}

@keyframes gradient-slide {
  0% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
/* Button styling */
.btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  border: none;
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1.1rem 2.5rem;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.btn-explore:hover {
  transform: translateY(-5px);
}

.btn-explore:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
  z-index: -1;
}

.btn-explore:hover:before {
  left: 100%;
}

/* Decorative elements */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.circle-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 162, 239, 0.212) 0%,
    transparent 70%
  );
  top: 2%;
  left: 0%;
  animation: pulse 8s infinite alternate;
}

.circle-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(160, 220, 255, 0.212) 0%,
    transparent 70%
  );
  bottom: 25%;
  right: 0%;
  animation: pulse 6s infinite alternate-reverse;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.4;
  }
}
.hero-content {
  max-width: 900px;
  height: 500px; /* Or max-height if you want flexibility */
  overflow-y: auto;
  padding: 3rem;
  border-radius: 24px;
  background: rgba(15, 15, 17, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  text-align: left; /* Make the list and text align properly */
}

.hero-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

/* Optional: style scrollbar for a cleaner look */
.hero-content::-webkit-scrollbar {
  width: 8px;
}
.hero-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.hero-content::-webkit-scrollbar-track {
  background: transparent;
}
.hero-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-content li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.hero-content {
  position: relative;
}

.hero-content-tutorial {
  position: relative;
}
.hero-content-tutorial::-webkit-scrollbar {
  width: 8px;
}
.hero-content-tutorial::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.hero-content-tutorial::-webkit-scrollbar-track {
  background: transparent;
}
.hero-content-tutorial ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-content-tutorial li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.hero-content-tutorial {
  max-width: 900px;
  overflow-y: auto;
  padding: 2rem;
  border-radius: 24px;
  background: rgba(15, 15, 17, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  text-align: center; /* Make the list and text align properly */
}

.hero-content-tutorial:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.hero-subtext-tutorial {
  font-size: 20px;
  color: rgba(241, 247, 254, 0.71);
  line-height: 20px;
  max-width: 700px;
  font-weight: 400;
  font-style: normal;
}

.skyeterms {
  color: rgba(241, 247, 254, 0.71);
  text-decoration: none;
  transition: color 0.3s ease;
}
.skyeterms:hover {
  color: #fff;
  text-decoration: none;
}
.discord-channel {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 6px;
}
.stripewrapper {

}
.colorlist {
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 24px;
  padding: 15px 10px 10px; /* top padding for space under label */
  width: 320px;
  margin: 0 auto;
  position: relative; /* allows label positioning */
  text-align: center;
}

.availablecolors {
  position: absolute;
  top: -8px; /* move label upward to overlap border */
  left: 50%;
  transform: translateX(-50%);
  background: #000; /* match your background color */
  padding: 0 8px;
  font-weight: 600;
  font-size: 10px;
  width: 200px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #ffffff;
}

.turbo-features {
  list-style: none; /* removes ugly dots */
  padding-left: 0; /* removes left indent */
}
.turbo-features li {
  margin-bottom: 0.5rem;
  color: #fff;
  display: flex;
  align-items: center;
}
/* Responsive design */
@media (max-width: 768px) {
  .hero-content {
    padding: 2rem 1.5rem;
  }

  .btn-explore {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }

  .circle-1,
  .circle-2 {
    display: none;
  }
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.text-footer {
  color: rgba(241, 247, 254, 0.71);
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  font-size: 14px;
}

.text-footer-link {
  color: rgba(241, 247, 254, 0.71);
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-footer-link:hover {
  color: #fff;
  text-decoration: none;
}

.separator {
  color: rgba(255, 255, 255, 0.2); /* dark gray */
  margin: 0 0.4em; /* space around the separator */
}
.btn-turbo-t {
  background-image: linear-gradient(
    270deg,
    #ff7700,
    #ff0051,
    #000,
    #ff7700,
    #ff0051
  );
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradient-loop 6s ease infinite;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-turbo-mini {
  background: #fff;
}

.btn-turbo-mini:hover {
  background: #fff;
  text-decoration: none;
  color: #000;
}

@keyframes gradient-loop {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Modal customizations */
.modal-content {
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(115, 70, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.modal-header {
  padding: 1.2rem 1.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1rem 1.5rem;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .hero-subtext {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .btn-explore {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }

  .modal-dialog {
    margin: 1rem;
  }

  .modal-content {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .hero-heading {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .skye-icon {
    width: 90px;
  }

  .modal-title {
    font-size: 1.25rem;
  }

  .btn-explore {
    width: 90%;
    padding: 0.8rem;
  }
}
/* General Modal Overrides */
.modal-content {
  background-color: #000000 !important;
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.modal-header,
.modal-footer {
  background-color: #000000;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.modal-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #ffffff;
}

.modal-body {
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Close button */
.btn-close-white {
  filter: brightness(0.7) invert(1);
}

/* Accept/Action button */
.modal-footer .btn-primary {
  background-color: #5865f2;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.modal-footer .btn-primary:hover {
  background-color: #4752c4;
}

/* Cancel button */
.modal-footer .btn-secondary {
  background-color: #2e2e33;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 500;
  color: #ddd;
}

.modal-footer .btn-secondary:hover {
  background-color: #3a3a3e;
}

/* Custom list styles in modal */
.modal-body ul {
  padding-left: 1.2rem;
}

.modal-body ul li {
  margin-bottom: 0.5rem;
}

/* Info Alert */
.alert-info {
  background-color: #2e3a5c;
  border-color: #3a4d77;
  color: #dce3f1;
  font-size: 0.9rem;
}

/* Icons inside modal titles */
.modal-title i {
  color: #facc15; /* Discord yellow */
}

/* Scrollable Terms of Service Modal */
#tosModal .modal-body {
  max-height: 60vh; /* Adjust as needed for screen size */
  overflow-y: auto;
  padding-right: 1rem; /* Prevent text from hiding under scrollbar */
}

/* Custom scrollbar styling (WebKit-based browsers) */
#tosModal .modal-body::-webkit-scrollbar {
  width: 8px;
}

#tosModal .modal-body::-webkit-scrollbar-track {
  background: #020202;
  border-radius: 4px;
}

#tosModal .modal-body::-webkit-scrollbar-thumb {
  background-color: #b86ea2;
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: content-box;
}

#tosModal .modal-body::-webkit-scrollbar-thumb:hover {
  background-color: #666;
}

#tosModal h5 {
  font-size: 15px;
  color: rgb(207, 163, 207);
  font-weight: 600;
}

#tosModal p {
  font-size: 14px;
  color: rgb(255, 255, 255);
}

#tosModal li {
  font-size: 12px;
  color: rgba(214, 205, 205, 0.8);
}

@media (max-width: 400px) {
  .modal-dialog {
    max-width: 100%;
    margin: 0.5rem;
  }

  .modal-content {
    border-radius: 8px;
  }
}

.video-container {
  position: relative;
  width: 100%; /* full width of parent */
  max-width: 300px; /* max width for bigger screens */
  aspect-ratio: 16 / 9; /* keep 16:9 ratio automatically */
  border-radius: 16px;
  outline: 2px solid transparent;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto; /* center horizontally */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: #000;
  border: 2px solid #000;
  border-radius: 14px;
}

/* Glow effect on hover */
.video-container:hover {
  box-shadow: 0 0 15px rgba(223, 178, 255, 0.5),
    0 0 30px rgba(223, 178, 255, 0.3);
  transition: all 0.3s ease;
  transform: scale(1.01);
}

/* Optional: tweak margin on very small screens */
@media (max-width: 320px) {
  .video-container {
    max-width: 100%; /* let it use full width if tiny screen */
  }
}

.discord-message {
  max-width: 520px;
  display: flex;
  gap: 12px;
  font-family: "gg sans", sans-serif;
  margin: 0 auto; /* Centers horizontally */
  text-align: left; /* Keeps inside content left-aligned */
}

/* Author avatar */
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  flex-shrink: 0;
}

/* Message content */
.message-content {
  flex-grow: 1;
}

/* Author line */
.author-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.2;
}

.author-name {
  color: transparent;
  background: linear-gradient(
    270deg,
    var(--custom-gradient-color-1),
    var(--custom-gradient-color-2),
    var(--custom-gradient-color-3),
    var(--custom-gradient-color-1)
  );
  background-size: 600% 600%;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 3s ease;
  cursor: pointer;
  text-decoration: none;
  text-decoration-color: var(--custom-gradient-color-1);
  font-size: 16px;
  font-family: "gg sans medium", sans-serif;
}

.author-name:hover {
  animation: gradientLoop 5s ease infinite;
}

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

.bot-badge {
  background: #5865f2;
  color: #fff;
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 4px;
  user-select: none;
  text-transform: uppercase;
  font-family: "gg sans", sans-serif;
}

.timestamp {
  margin-right: auto;
  font-size: 12px;
  font-family: "gg sans semibold", sans-serif;
  color: #72767d;
}

/* Embed */
.discord-embed {
  margin-top: 4px;
  background: #131416;
  border-left: 4px solid #dfb2ff; /* red border */
  border-radius: 3px;
  display: flex;
  padding: 12px 16px;
  gap: 12px;
  font-size: 14px;
  line-height: 1.3;
  outline: 1px solid rgba(255, 255, 255, 0.2);
}

/* Embed text part */
.embed-text {
  flex-grow: 1;
  text-align: left;
  font-size: 14px;
  color: #dbdcdf;
  font-family: "gg sans medium", sans-serif;
}

.embed-title {
  font-weight: 600;
  color: #d8d8db;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-family: "gg sans", sans-serif;
  font-size: 16px;
}

.embed-title img {
  width: 20px;
  height: 20px;
}

.embed-description {
  color: #dbdcdf;
}

/* Embed thumbnail */
.embed-thumbnail img {
  width: 80px;
  height: 80px;
}

/* Embed footer */
.embed-footer {
  margin-top: 12px;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 8px;
  color: #d8d9dc;
  font-size: 12px;
  font-family: "gg sans normal", sans-serif;
}

.embed-footer img {
  width: 20px;
  height: 20px;
  border-radius: 12px;
}

/* Buttons container */
.embed-buttons {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}

/* Discord style buttons */
.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-family: "gg sans medium", sans-serif;
  border: none;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.15s ease-in-out;
}

.btn-blurple {
  background-color: #5865f2;
  color: white;
  opacity: 0.5;
  cursor: default;
  border: 1px solid #6571f3;
}
.btn-blurple:hover {
  background-color: #5865f2;
  color: white;
}

.btn-success {
  background-color: #00863a;
  color: white;
  border: 1px solid #148d48;
  animation: pulse-success 1.5s infinite;
}

.btn-success:hover {
  background-color: #047e37;
}

.btn-cancel {
  background-color: #232426;
  color: white;
  border: 1px solid #35363a;
  cursor: default !important;
  opacity: 0.5;
}
.btn-cancel:hover {
  background-color: #232426;
}
/* Button emoji */
.btn-discord img {
  width: 18px;
  height: 18px;
}

@keyframes pulse-success {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 134, 58, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 134, 58, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 134, 58, 0);
  }
}

@keyframes pulse-blurple {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(88, 101, 242, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(88, 101, 242, 0);
  }
}

.payment-card {
  border-radius: 1rem;
  background-color: #131416;
  padding: 10px;
  text-align: left !important;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "gg sans normal", sans-serif;
}

.card-header {
  background: transparent;
  border: none;
}

.skye-title-modal {
  font-size: 24px !important;
  font-family: "gg sans semibold", sans-serif;
}

/* Required field asterisk */
.payment-card .required {
  color: #f17774;
  font-weight: normal;
}

/* Custom Purple Button */
.btn-blurple2 {
  background-color: #5865f2;
  color: white;
  cursor: pointer !important;
  border: 1px solid #6571f3;
  animation: pulse-blurple 1.5s infinite;
}
.btn-blurple2:hover {
  background-color: #5865f2;
  color: white;
}

/* Alert Styling (slightly softer yellow) */
.payment-card .alert-warning {
  background-color: #b66c0c1c;
  color: #fff;
  border: 1px solid #ce9c5c;
  font-size: 14px;
  font-family: "gg sans normal", sans-serif;
  border-radius: 0.5rem;
}

.skyekey {
  font-family: "gg sans semibold", sans-serif;
  font-size: 16px;
  color: #e3e3e6;
}

/* Hover effect */
.form-control:hover {
  border-color: #3c3c41; /* Gold border on hover */
}

/* Focus effect (when clicked or typed in) */
.form-control:focus {
  border-color: #3687e9; /* Darker gold when active */
  box-shadow: none;
}

/* Placeholder styling */
.form-control::placeholder {
  color: #74757e; /* Softer gold text */
  font-family: "gg sans normal", sans-serif;
  font-size: 16px;
}

/* Placeholder fades when input is focused */
.form-control:focus::placeholder {
  opacity: 0.4;
}
#skyeKey {
  background: #121214;
  font-family: "gg sans normal", sans-serif;
  border-color: #3c3c41;
  padding: 0.4rem 0.7rem; /* Bigger inside spacing */
  font-size: 1.125rem; /* Bigger text */ /* Taller input box */
}

.btn-discord-modal {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  width: 100%;
  font-size: 16px;
  font-family: "gg sans medium", sans-serif;
  border: none;
  user-select: none;
  transition: background-color 0.15s ease-in-out;
}
/* Add these at the end of app.css */

/* Mobile-first adjustments */
@media (max-width: 768px) {
  /* Typography adjustments */
  .hero-heading {
    font-size: 2.5rem !important;
    line-height: 3rem !important;
  }

  .hero-subtext {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  /* Layout adjustments */
  .hero-section {
    padding: 3rem 1rem 2rem !important;
  }

  .hero-content,
  .hero-content-tutorial {
    padding: 1.5rem;
    max-width: 100%;
    height: auto;
    max-height: none;
  }

  .discord-message {
    flex-direction: column;
    align-items: flex-start;
  }

  .author-avatar {
    margin-bottom: 12px;
  }

  /* Button adjustments */
  .btn-explore {
    padding: 1rem 1.8rem;
    font-size: 1.1rem;
  }

  /* Modal adjustments */
  .modal-content {
    margin: 1rem;
  }

  .payment-card {
    max-width: 100%;
    padding: 15px;
  }

  /* Tutorial steps adjustments */
  .hero-content-tutorial {
    margin-bottom: 1.5rem;
  }

  .video-container {
    max-width: 100%;
  }

  /* Footer adjustments */
  .text-footer {
    font-size: 12px;
  }

  .separator {
    margin: 0 0.3em;
  }
}

/* Small mobile devices */
@media (max-width: 576px) {
  .hero-heading {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
  }

  .skye-icon {
    width: 90px;
  }

  .btn-explore {
    width: 100%;
    padding: 0.9rem;
  }

  .modal-title {
    font-size: 1.25rem;
  }

  .colorlist {
    width: 100%;
  }

  .discord-channel {
    display: block;
    margin-top: 8px;
  }

  .hero-content-tutorial .btn-blurple2,
  .hero-content-tutorial .btn-cancel {
    padding: 8px 12px;
    font-size: 14px;
  }
}

.social-skye {
  color: rgba(241, 247, 254, 0.71);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 22px;
}
.social-skye:hover {
  color: #fff;
  text-decoration: none;
}
/* Language Switcher */
.dropdown-menu {
  background-color: #131416;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
  color: #dbdcdf;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #1e1f22;
  color: #fff;
}

#languageDropdown {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}
.btn-lang {
  border-radius: 10px;
  font-size: 22px;
  color: rgba(241, 247, 254, 0.71);
  border: none;
}

/* Button wrapper with border */
.btn-turbo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
    padding: 1.1rem 2.5rem;
  border-radius: 16px;
  text-decoration: none;;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
  transition: transform 0.3s ease; /* smooth lift */
}

/* Black background layer inside border */
.btn-turbo::after {
  content: "";
  position: absolute;
  inset: 2px; /* border thickness */
  border-radius: 14px;
  background: #000;
  z-index: 1;
  transition: background 0.3s ease;
}

/* Border gradient */
.btn-turbo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(270deg, #84c8ff, #d56bff, #fff, #84c8ff, #d56bff);
  background-size: 300% 300%;
  animation: gradient-loop 6s ease infinite;
  z-index: 0;
  transition: all 0.3s ease;
}

/* Hover shine effect */
.btn-turbo-shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.0), rgba(255, 72, 0, 0.2), rgba(255,255,255,0.0));
  transform: skewX(-20deg);
  z-index: 2;
  pointer-events: none;
  transition: all 6s ease;
}

/* Text gradient */
.btn-turbo-inner {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
    font-size: 19px;
    line-height:29px;
  font-weight: 500;

  background-image: linear-gradient(270deg, #84c8ff, #d56bff, #fff, #84c8ff, #d56bff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-loop 6s ease infinite;
  transition: all 0.3s ease;
}

/* Hover lift & shine animation */
.btn-turbo:hover {
  transform: translateY(-5px);
}

.btn-turbo:hover .btn-turbo-shine {
  left: 125%;
  transition: all 0.8s ease;
}

/* Gradient animation */
@keyframes gradient-loop {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (max-width: 768px){
.btn-turbo{padding:1rem 2rem;font-size:1.1rem;}
}
@media (max-width: 768px){
.btn-turbo{padding:0.9rem 1.8rem;font-size:1rem;}
}
@media (max-width: 576px){
.btn-turbo{width:90%;padding:0.8rem;}
}
@media (max-width: 768px){
.btn-turbo{padding:1rem 1.8rem;font-size:1.1rem;}
}
@media (max-width: 576px){
.btn-turbo{width:100%;padding:0.9rem;}