/* style.css - Main Styles */
:root {
  --gold-primary: #D4AF37;
  --gold-secondary: #FFD700;
  --gold-dark: #996515;
  --dark-bg: #121212;
  --darker-bg: #0a0a0a;
  --light-text: #f8f9fa;
  --dark-text: #212529;
  --danger: #dc3545;
  --success: #28a745;
  --primary: #4a6bff;
  --primary-dark: #3a56cc;
  --secondary: #00c9a7;
  --danger: #ff4757;
  --warning: #ffa502;
  --dark: #1e272e;
  --darker: #0f1519;
  --light: #f5f6fa;
  --gray: #a4b0be;
  --gold: #ffd700;
  --blue-gradient: linear-gradient(135deg, #4a6bff 0%, #6a11cb 100%);
  --gold-gradient: linear-gradient(135deg, #ffd700 0%, #f9a602 100%);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
.gold-header {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  padding: 1.5rem 0;
  border-bottom: 2px solid var(--gold-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.logo img {
  max-height: 80px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2rem;
}

.nav-links a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: var(--gold-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.header-title h1 {
  font-size: 2rem;
  margin: 0;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  letter-spacing: 1px;
}

/* Content Area */
.content-area {
  flex: 1;
  padding: 2rem 0;
}

/* Login Container */
.login-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeIn 0.5s ease-in-out;
}

.login-title {
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.login-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
}

.login-box {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(5px);
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header h3 {
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin: 0;
}

.form-row {
  margin-bottom: 1.5rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold-secondary);
  font-weight: 500;
}

.input-container {
  position: relative;
}

.input-container input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(40, 40, 40, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  color: var(--light-text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-container textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(40, 40, 40, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  color: var(--light-text);
  font-size: 1rem;
  transition: all 0.3s ease;
  resize: vertical;
  min-height: 120px;
  box-sizing: border-box;
}

.input-container input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.login-button-container {
  text-align: center;
  margin-top: 2rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--dark-text);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:active {
  transform: translateY(0);
}

/* Alerts */
.alert {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-weight: 500;
}

.alert-success {
  background-color: rgba(40, 167, 69, 0.2);
  border: 1px solid var(--success);
  color: var(--success);
}

.alert-danger {
  background-color: rgba(220, 53, 69, 0.2);
  border: 1px solid var(--danger);
  color: var(--danger);
}

/* Back to top button */
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: var(--gold-primary);
  color: var(--dark-text);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

#btn-back-to-top:hover {
  background: var(--gold-secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Modal Styles */
.modal-content {
  background-color: var(--darker-bg);
  color: var(--light-text);
  border: 1px solid var(--gold-primary);
}

.warning-info {
  padding: 2rem;
  position: relative;
}

.warning-info-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gold-primary);
  transition: color 0.3s ease;
}

.warning-info-close-btn:hover {
  color: var(--gold-secondary);
}

.warning-info-title-1,
.warning-info-title-2,
.warning-info-title-3 {
  color: var(--gold-primary);
  font-weight: 600;
  margin: 1.5rem 0 1rem;
}

.warning-info-title-1 {
  margin-top: 0;
}

.warning-info-item-1,
.warning-info-item-2 {
  padding-left: 1.5rem;
}

.warning-info-item-1 li,
.warning-info-item-2 li {
  margin-bottom: 0.5rem;
}

.fake-site-image {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.fake-site-link {
  color: var(--danger);
  font-family: monospace;
  margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links ul {
      gap: 1rem;
  }
  
  .header-title h1 {
      font-size: 1.5rem;
  }
  
  .login-container {
      padding: 1rem;
  }
  
  .login-box {
      padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .header-content {
      gap: 1rem;
  }
  
  .logo img {
      max-height: 60px;
  }
  
  .nav-links ul {
      flex-direction: column;
      gap: 0.5rem;
      align-items: center;
  }
  
  .header-title h1 {
      font-size: 1.2rem;
  }
}

/* ===== Dashboard Specific Styles ===== */

/* Dashboard Header */
.bluebest {
  color: var(--gold-primary);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.aplusbanhed {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.aplusbanhed::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
}

#text {
  position: relative;
}

.console-underscore {
  display: inline-block;
  position: relative;
  left: -10px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Action Buttons */
.roundbt {
  display: inline-block;
  padding: 0.75rem 2rem;
  margin: 0 0.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.roundbt:not(.btn-danger) {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--dark-text);
}

.roundbt:not(.btn-danger):hover {
  background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.roundbt.btn-danger {
  background-color: var(--danger);
  color: white;
}

.roundbt.btn-danger:hover {
  background-color: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Content Sections */
.whitearea {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(5px);
}

.ourfeatures {
  color: var(--gold-primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.ourfeatures::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
}

/* Device Info Box */
.samsungblackbox {
  background: var(--darker-bg);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.samsungblackbox:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.samsungicon {
  margin-right: 1.5rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.samsungboximgtext {
  color: var(--light-text);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Table Styles */
.table-responsive {
  border-radius: 8px;
  overflow: hidden;
}

.table {
  width: 100%;
  margin-bottom: 0;
  color: var(--light-text);
  background-color: rgba(40, 40, 40, 0.5);
}

.table thead th {
  background-color: rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
  font-weight: 600;
  padding: 1rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table tbody tr:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

.table td {
  padding: 1rem;
  vertical-align: middle;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Badges */
.badge {
  padding: 0.35rem 0.65rem;
  font-weight: 600;
  border-radius: 4px;
  font-size: 0.85rem;
}

.bg-success {
  background-color: var(--success) !important;
}

.bg-danger {
  background-color: var(--danger) !important;
}

/* Buttons */
.btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
}

.btn-primary {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--dark-text);
}

.btn-primary:hover {
  background-color: var(--gold-secondary);
  border-color: var(--gold-secondary);
  transform: translateY(-1px);
}

.btn-danger {
  background-color: var(--danger);
  border-color: var(--danger);
}

.btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
  transform: translateY(-1px);
}

/* Alert Styles */
.alert {
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border: none;
  font-weight: 500;
}

.alert-success {
  background-color: rgba(40, 167, 69, 0.15);
  color: var(--success);
  border-left: 4px solid var(--success);
}

.alert-info {
  background-color: rgba(23, 162, 184, 0.15);
  color: #17a2b8;
  border-left: 4px solid #17a2b8;
}

.alert-link {
  color: var(--gold-primary);
  font-weight: 600;
  text-decoration: none;
}

.alert-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .aplusbanhed {
      font-size: 2rem;
  }
  
  .ourfeatures {
      font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .samsungblackbox {
      flex-direction: column;
      text-align: center;
  }
  
  .samsungicon {
      margin-right: 0;
      margin-bottom: 1rem;
  }
  
  .table-responsive {
      overflow-x: auto;
  }
}

@media (max-width: 576px) {
  .aplusbanhed {
      font-size: 1.8rem;
  }
  
  .roundbt {
      display: block;
      width: 100%;
      margin-bottom: 1rem;
  }
  
  .whitearea {
      padding: 1.5rem;
  }
  
  .table td, .table th {
      padding: 0.75rem;
  }
}

  /* ===== Global Styles ===== */
  :root {
    --gold-primary: #D4AF37;
    --gold-secondary: #FFD700;
    --gold-dark: #996515;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --light-text: #f8f9fa;
    --dark-text: #212529;
    --danger: #dc3545;
    --success: #28a745;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ===== Header Styles ===== */
.gold-header {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--gold-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

/* ===== Dashboard Styles ===== */
.dashboard-main {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.dashboard-header {
    margin-bottom: 3rem;
    text-align: center;
}

.bluebest {
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.aplusbanhed {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.aplusbanhed #text {
    color: white;
}

.aplusbanhed::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
}

.console-underscore {
    display: inline-block;
    position: relative;
    left: -10px;
    animation: blink 1s infinite;
}

.whitearea {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.ourfeatures {
    color: var(--gold-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.ourfeatures::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
}

/* ===== Buttons & Forms ===== */
.roundbt {
    display: inline-block;
    padding: 0.75rem 2rem;
    margin: 0 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.roundbt:not(.btn-danger) {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--dark-text);
}

.roundbt.btn-danger {
    background-color: var(--danger);
    color: white;
}

/* ===== Animations ===== */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .aplusbanhed {
        font-size: 2rem;
    }
    
    .ourfeatures {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .aplusbanhed {
        font-size: 1.8rem;
    }
    
    .roundbt {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}
/* Footer Styles - Mobile First Approach */
.footer {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  padding: 2.5rem 0 0.5rem;
  border-top: 2px solid var(--gold-primary);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  color: var(--light-text);
  font-size: 0.95rem;
}

/* Container adjustments for mobile */
.container.deleteleftrightpading {
  padding: 0 15px;
}

.row.deleteleftrightpading {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.col-md-4.deleteleftrightpading {
  padding: 0;
  width: 100%;
}

/* Footer menu styling */
.foomenu {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.foomenu li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.4;
}

.foomenu li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
}

.foomenu a {
  color: var(--light-text);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.foomenu a:hover {
  color: var(--gold-primary);
  transform: translateX(5px);
}

/* Section titles */
.quick {
  color: var(--gold-primary);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.quick::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
}

/* Contact email styling */
.mail {
  width: 18px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(81%) sepia(12%) saturate(3294%) hue-rotate(354deg) brightness(102%) contrast(101%);
}

.curato {
  display: flex !important;
  align-items: center;
  word-break: break-all;
}

/* Copyright section */
.copyright {
  text-align: center;
  padding: 1.2rem 15px;
  background-color: rgba(10, 10, 10, 0.7);
  color: var(--gold-secondary);
  font-size: 0.85rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: 1.5rem;
}

/* Tablet view (768px and up) */
@media (min-width: 768px) {
  .footer {
    padding: 3rem 0 1rem;
  }
  
  .row.deleteleftrightpading {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
  }
  
  .col-md-4.deleteleftrightpading {
    width: 33.333%;
    padding: 0 15px;
  }
  
  .quick {
    font-size: 1.2rem;
  }
}

/* Desktop view (992px and up) */
@media (min-width: 992px) {
  .container.deleteleftrightpading {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
  
  .footer {
    padding: 3.5rem 0 1.5rem;
  }
  
  .foomenu a {
    font-size: 0.95rem;
  }
}

/* Very small phones (under 400px) */
@media (max-width: 400px) {
  .footer {
    padding: 2rem 0 0.5rem;
  }
  
  .foomenu li {
    padding-left: 1rem;
    font-size: 0.9rem;
  }
  
  .quick {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .copyright {
    font-size: 0.8rem;
    padding: 1rem 15px;
  }
}

/* Add these to your existing style.css */
.gold-form-container {
    max-width: 800px;
    margin: 2rem auto;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(8px);
}

/* Enhanced typing animation styles */
#text {
    display: inline-block;
    min-width: 120px;
    text-align: left;
}

.console-underscore {
    display: inline-block;
    position: relative;
    left: -8px;
    font-weight: bold;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Improved form group spacing */
.form-group.gold-form-group {
    margin-bottom: 1.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gold-form-container {
        padding: 2rem;
        margin: 1.5rem auto;
    }
}

@media (max-width: 576px) {
    .gold-form-container {
        padding: 1.5rem;
        border-radius: 10px;
    }
    
    #text {
        min-width: 90px;
    }
}
.ourfeatures {
  color: var(--gold-primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  text-align: center; /* Add this to ensure the heading is centered */
}

.ourfeatures::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%; /* Change from left: 0 to center the line */
  transform: translateX(-50%); /* This will properly center the line */
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
}

/* Styles for Terms, Privacy, and Contact pages */
.terms-content h2,
.privacy-content h2 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.terms-content p,
.privacy-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.terms-content ul,
.privacy-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.terms-content li,
.privacy-content li {
  margin-bottom: 0.5rem;
}

.section {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  height: 100%;
  transition: transform 0.3s;
}

.contact-method:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 193, 7, 0.1);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #000;
  font-weight: bold;
  margin-right: 15px;
}