/* Registration section */
.tm-registration-section {
  background: linear-gradient(180deg, #0d1e35 0%, #0a1628 100%);
  position: relative;
}

.tm-registration-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,180,41,0.3), transparent);
}

.reg-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.reg-subtitle {
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* Card */
.tm-registration-section .card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.tm-registration-section .card-body {
  padding: 2.8rem 3rem;
}

/* Labels */
.tm-registration-section label {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Inputs */
.tm-registration-section .form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  height: auto;
  line-height: 1.5;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.tm-registration-section .form-control::placeholder {
  color: rgba(255,255,255,0.2);
}

.tm-registration-section .form-control:focus {
  background: rgba(255,255,255,0.09);
  border-color: rgba(240,180,41,0.5);
  box-shadow: 0 0 0 3px rgba(240,180,41,0.1);
  color: #fff;
  outline: none;
}

/* Select */
.tm-registration-section select.form-control {
  cursor: pointer;
  height: calc(2.5rem + 2px);
  padding: 0.5rem 1rem;
}

.tm-registration-section select.form-control option {
  background: #0d1e35;
  color: #fff;
}

/* Input groups */
.tm-registration-section .input-group-text {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  border-radius: 10px 0 0 10px;
  color: rgba(255,255,255,0.4);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.tm-registration-section .input-group .form-control {
  border-left: none;
  border-radius: 0 10px 10px 0;
}

.tm-registration-section .input-group:focus-within .input-group-text {
  border-color: rgba(240,180,41,0.5);
  color: #f0b429;
}

.tm-registration-section .input-group:focus-within .form-control {
  border-color: rgba(240,180,41,0.5);
}

/* Divider between field groups */
.reg-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 1.5rem 0;
}

/* Checkbox */
.tm-registration-section .form-check-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.tm-registration-section .form-check-label a {
  color: #f0b429;
  text-decoration: none;
  font-weight: 600;
}

.tm-registration-section .form-check-label a:hover {
  color: #ffc93c;
  text-decoration: underline;
}

/* Submit button */
.reg-submit-btn {
  background: linear-gradient(135deg, #f0b429, #e8952a);
  border: none;
  color: #0a1628 !important;
  font-weight: 700;
  padding: 0.9rem;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(240,180,41,0.25);
}

.reg-submit-btn:hover {
  background: linear-gradient(135deg, #ffc93c, #f0a500);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,180,41,0.45);
  color: #0a1628 !important;
}

/* Footer links */
.tm-registration-section p {
  color: rgba(255,255,255,0.4);
}

.tm-registration-section p a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.tm-registration-section p a:hover {
  color: #f0b429;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 767px) {
  .tm-registration-section .card-body {
    padding: 1.8rem 1.4rem;
  }
  .reg-title { font-size: 1.8rem; }
  .tm-registration-section .form-control { font-size: 0.9rem; }
  .reg-submit-btn { padding: 0.85rem; font-size: 0.9rem; }
}


/* Pricing section */
.tm-pricing-section {
  position: relative;
}

/* Pricing cards */
.tm-pricing-section .pricing-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(100, 100, 100, 0.3);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #333;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tm-pricing-section .pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(100, 100, 100, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Featured card */
.tm-pricing-section .pricing-card-featured {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 193, 7, 0.6);
  transform: scale(1.05);
}

.tm-pricing-section .pricing-card-featured:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 193, 7, 0.9);
  transform: translateY(-10px) scale(1.08);
}

/* Popular badge */
.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.card-badge .badge {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  background-color: #ffc107;
  color: #000;
  font-weight: 700;
}

/* Pricing icons */
.pricing-icon {
  color: #555;
  transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
  color: #ffc107;
  transform: scale(1.1);
}

.pricing-card-featured .pricing-icon {
  color: #ffc107;
}

/* Card content */
.tm-pricing-section .card-body {
  padding: 2rem 1.5rem;
}

.tm-pricing-section .card-title {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Pricing details */
.pricing-details {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pricing-details strong {
  color: #444;
  font-weight: 600;
}

/* Interest block */
.pricing-interest {
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid rgba(100, 100, 100, 0.2);
}

.pricing-interest h5 {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-interest h3 {
  margin: 0;
  font-size: 2rem;
  color: #38B;
}

.pricing-interest h3 small {
  font-size: 1rem;
  color: #666;
}

.pricing-card-featured .pricing-interest h3 {
  color: #e6a800;
}

/* Buttons */
.tm-pricing-section .btn {
  border-width: 2px;
  border-radius: 25px;
  padding: 0.6rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.tm-pricing-section .btn-outline-light {
  color: #333;
  border-color: #555;
  background: rgba(255, 255, 255, 0.1);
}

.tm-pricing-section .btn-outline-light:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
  transform: scale(1.05);
}

.tm-pricing-section .btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #000;
  font-weight: 700;
}

.tm-pricing-section .btn-warning:hover {
  background-color: #ffcd39;
  border-color: #ffcd39;
  transform: scale(1.05);
}

/* Login button in navbar */
.tm-login-btn {
  color: #0a1628 !important;
  background: linear-gradient(135deg, #f0b429, #e8952a);
  border-radius: 24px;
  padding: 0.45em 1.4em !important;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(240, 180, 41, 0.25);
}

.tm-login-btn:hover,
.tm-login-btn:focus {
  background: linear-gradient(135deg, #ffc93c, #f0a500);
  color: #0a1628 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 180, 41, 0.45);
}

.tm-navbar.scroll .tm-login-btn {
  background: linear-gradient(135deg, #f0b429, #e8952a);
  color: #0a1628 !important;
}

.tm-navbar.scroll .tm-login-btn:hover {
  background: linear-gradient(135deg, #ffc93c, #f0a500);
  color: #0a1628 !important;
}

/* Hero crypto coins */
.hero-coins-wrap {
  margin-top: 3rem;
}

.hero-coins-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.hero-coins {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.hero-coin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.25s ease;
}

.hero-coin:hover {
  transform: translateY(-4px);
}

.hero-coin-img {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.hero-coin:hover .hero-coin-img {
  background: rgba(240, 180, 41, 0.15);
  border-color: rgba(240, 180, 41, 0.4);
}

.hero-coin-img img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.hero-coin-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .hero-coin-img { width: 42px; height: 42px; }
  .hero-coin-img img { width: 26px; height: 26px; }
  .hero-coins { gap: 0.8rem; }
}
