@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0c0c0c;
  color: #ffffff;
  height: 100%;
  overflow-x: hidden;
}

/* ========== PARALLAX BACKGROUND ========== */
#parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('back.jpg') no-repeat center center;
  background-size: cover;
  z-index: 0;
  transition: background-position 0.1s ease-out;
  overflow: hidden;
}

#bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
}

/* Container sits above the background */
.container {
  position: relative;
  z-index: 2;
}


.modalq {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 999;
        }
        .modal-contentq {
            background: #1e293b;
            color: #fff;
            padding: 2rem;
            border-radius: 1rem;
            width: 90%;
            max-width: 420px;
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
            text-align: left;
        }
        .modal-contentq h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .modal-contentq p {
            font-size: 0.95rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }
        .modal-contentq input[type="email"] {
            width: 100%;
            padding: 0.75rem;
            margin-bottom: 1rem;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
        }
        .modal-contentq label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        .modal-contentq input[type="checkbox"] {
            width: 1rem;
            height: 1rem;
        }
        .modal-contentq button {
            background-color: #22c55e;
            color: #fff;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            width: 100%;
        }
        .modal-contentq button:hover {
            background-color: #16a34a;
        }



/* ========== MODAL STYLES ========== */
.custom-modal-content {
  background: rgba(25,25,25,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255, 0.1);
  border-radius: 16px;
  color: #fff;
  padding: 1rem 1rem;
}




.btn-close-white {
  filter: invert(100%);
}

.modal-title-custom {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.highlight-text {
  background: linear-gradient(90deg, rgba(58,198,174,1) 0%, rgba(90,83,255,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========== HEADINGS & SECTION TITLES ========== */
.section-heading {
  color: #e6e6e6;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #555;
  padding-bottom: 5px;
}

/* ========== PROGRESS BAR ========== */
.custom-progress {
  height: 36px;
  background-color: #333;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
}

.custom-progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(58,198,174,1) 0%, rgba(90,83,255,1) 100%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== BUTTON STYLES ========== */
.btn {
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Outline style (primary) */
.custom-btn-outline {
  color: #3ac6ae;
  background-color: transparent;
  border: 2px solid #3ac6ae;
  transition: all 0.3s ease;
}
.custom-btn-outline:hover {
  color: #0c0c0c;
  background-color: #3ac6ae;
  border-color: #3ac6ae;
}

/* Outline style (secondary) */
.custom-btn-outline-alt {
  color: #5a53ff;
  background-color: transparent;
  border: 2px solid #5a53ff;
  transition: all 0.3s ease;
}
.custom-btn-outline-alt:hover {
  color: #0c0c0c;
  background-color: #5a53ff;
  border-color: #5a53ff;
}

/* Gradient style for main actions */
.custom-btn-gradient {
  background: linear-gradient(90deg, rgba(58,198,174,1) 0%, rgba(90,83,255,1) 100%);
  color: #fff;
  border: none;
  transition: opacity 0.3s ease;
}
.custom-btn-gradient:hover {
  opacity: 0.8;
}

/* ========== STEP CONTENT ========== */
.step-content {
  transition: opacity 0.2s ease-in-out;
  padding: 20px 20px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

/* Make default paragraphs inside step-content white with spacing */
.step-content p {
  color: #fff;
  margin: 1rem 0;
  font-size: 1rem;
  line-height: 1.4;
}

/* Step2 text style */
.step2-text {
  color: #fff;
  margin: 1.5rem 0;
  font-size: 1rem;
  line-height: 1.4;
}

/* Step3 text style */
.step3-text {
  margin: 1.5rem 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}

/* ========== NETWORK TOGGLE BUTTONS (STEP 2) ========== */
.network-btn {
  font-size: 1rem;
  background-color: transparent;
  border: 2px solid #888;
  color: #fff;
  transition: all 0.3s ease;
}
.network-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.network-btn.active {
  background: linear-gradient(90deg, rgba(58,198,174,1) 0%, rgba(90,83,255,1) 100%);
  border: none;
  color: #fff;
}

/* ========== CUSTOM FORM INPUTS (Steps 3..9) ========== */
.custom-form-input {
  background-color: #1b1b1b;
  color: #fff;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}
.custom-form-input:focus {
  outline: none;
  border-color: #3ac6ae;
  box-shadow: 0 0 0 2px rgba(58, 198, 174, 0.3);
}
input[type="file"].custom-form-input {
  padding: 0.5rem; /* a bit smaller for file inputs */
}

/* Range slider styling */
.custom-range {
  accent-color: #3ac6ae;
}
.custom-range:focus {
  outline: none;
}

/* Switch styling (mintable, blacklist, upgradable, autoRebalance) */
.custom-switch .form-check-input {
  width: 3rem;
  height: 1.5rem;
}
.custom-switch .form-check-input:checked {
  background-color: #3ac6ae;
  border-color: #3ac6ae;
}
.custom-switch .form-check-input:focus {
  box-shadow: 0 0 0 2px rgba(58,198,174,0.2);
}
.custom-switch .form-check-label {
  margin-left: 0.5rem;
  cursor: pointer;
}

/* Small disclaimers in steps (italic white text) */
.small-desc {
  display: block;
  color: #fff;
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  opacity: 0.9;
}

/* ========== WALLET BUTTONS (STEP 6) ========== */
.wallet-btn {
  font-size: 0.9rem;
  border: 2px solid #888;
  background-color: transparent;
  color: #fff;
  transition: all 0.3s ease;
}
.wallet-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.wallet-btn.active {
  background: linear-gradient(90deg, rgba(58,198,174,1) 0%, rgba(90,83,255,1) 100%);
  border: none;
  color: #fff;
}

/* Step 9 creative style additions */
.summary-mainnet {
  background-color: rgba(25,25,25,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}


/* Example (OPTIONAL): special styling for final Congrats modal text */
#finalCongratsModal .step3-text {
  font-size: 1.1rem;
  color: #e5ffe5; /* Light greenish tint, for instance */
}

/* Scrollbars (optional) */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #3ac6ae;
  border-radius: 4px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a;
}
