﻿/* style.css - Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --gold-primary: #B71C1C;
  --gold-secondary: #ff5252;
  --gold-dark: #7f0000;
  --dark-bg: #050000;
  --darker-bg: #000000;
  --light-text: #ffffff;
  --dark-text: #212529;
  --danger: #dc3545;
  --success: #28a745;
  --primary: #B71C1C;
  --primary-dark: #7f0000;
  --secondary: #00c9a7;
  --warning: #ffa502;
  --dark: #1e272e;
  --darker: #0f1519;
  --light: #f5f6fa;
  --gray: #a4b0be;
  --gold: #B71C1C;
  --blue-gradient: linear-gradient(135deg, #B71C1C 0%, #7f0000 100%);
  --gold-gradient: linear-gradient(135deg, #B71C1C 0%, #ff5252 100%);

  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --glass-blur: blur(16px);
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at top center, #2a0000 0%, #000000 100%);
  background-attachment: fixed;
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
/* Header Styles */
/* Header Styles */
.gold-header {
  background: #000000 !important;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  backdrop-filter: none;
}

.gold-header h1,
.gold-header a {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
}

.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%;
  box-shadow: 0 0 10px var(--gold-primary);
}

.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(183, 28, 28, 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: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-container input:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(183, 28, 28, 0.5);
}

.input-container input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(183, 28, 28, 0.2);
}

.input-container textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  resize: vertical;
  min-height: 120px;
}

.input-container textarea:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(183, 28, 28, 0.5);
}

.input-container textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(183, 28, 28, 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(183, 28, 28, 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(183, 28, 28, 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 */
/* Button styles moved to end for specificity */


.whitearea {
  background: var(--glass-bg);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: transform 0.3s ease;
}

.whitearea:hover {
  border-color: rgba(183, 28, 28, 0.3);
}

.ourfeatures {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(183, 28, 28, 0.4);
}

.ourfeatures::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(183, 28, 28, 0.6);
}

/* 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(183, 28, 28, 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(183, 28, 28, 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(183, 28, 28, 0.2);
  color: var(--gold-primary);
  font-weight: 600;
  padding: 1rem;
  border-bottom: 2px solid rgba(183, 28, 28, 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(183, 28, 28, 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: #B71C1C;
  --gold-secondary: #ff5252;
  --gold-dark: #7f0000;
  --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(183, 28, 28, 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(16%) sepia(90%) saturate(3078%) hue-rotate(352deg) brightness(88%) contrast(105%);
}

.curato {
  display: flex !important;
  align-items: center;
  word-break: break-all;
  color: var(--gold-primary) !important;
}

/* 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(183, 28, 28, 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(183, 28, 28, 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(183, 28, 28, 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;
}

/* Premium Feature Cards */
.feature-card {
  background: var(--glass-bg);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(183, 28, 28, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: rgba(183, 28, 28, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gold-gradient);
  box-shadow: 0 0 20px rgba(183, 28, 28, 0.5);
}

.feature-card:hover .feature-icon i {
  color: #fff !important;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Footer */
.gold-footer {
  background: #000000 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
  color: #ffffff !important;
}

.gold-footer a {
  color: #bbbbbb !important;
}

.gold-footer a:hover {
  color: #ffffff !important;
}

/* ========================================= */
/* PREMIUM MODERN REDESIGN - OVERRIDES       */
/* ========================================= */

/* 1. BUTTONS (Explicit Override) */
.roundbt {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  margin: 0 0.5rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  color: #ffffff !important;
  /* Force White Text */
  background: linear-gradient(135deg, #d32f2f 0%, #7f0000 100%) !important;
}

.roundbt:not(.btn-danger) {
  background: linear-gradient(135deg, #d32f2f 0%, #7f0000 100%) !important;
  color: #ffffff !important;
}

.roundbt:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(183, 28, 28, 0.6);
  color: #ffffff !important;
}

/* 2. HEADER (Floating Island Design) */
.floating-header {
  position: sticky;
  top: 20px;
  z-index: 1000;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  padding: 0.8rem 2rem;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area img {
  height: 50px;
  width: auto;
}

.nav-pill ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-pill a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-pill a:hover,
.nav-pill a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.action-area .btn-login {
  background: var(--gold-primary);
  /* Red */
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.action-area .btn-login:hover {
  background: #ff5252;
  box-shadow: 0 0 15px rgba(183, 28, 28, 0.5);
}

/* 3. FOOTER (Modern Clean Grid) */
.modern-footer {
  background: #050505;
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-brand p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-primary);
  /* Red */
  padding-left: 5px;
}

.footer-copyright {
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #666;
  font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .floating-header {
    width: 95%;
    padding: 0.8rem 1rem;
  }

  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-pill ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Mobile Responsiveness Overrides */
@media (max-width: 768px) {
  .floating-header {
    width: 95%;
    top: 10px;
    padding: 0.8rem 1rem;
  }

  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-pill ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .whitearea {
    padding: 1.5rem;
  }

  .aplusbanhed {
    font-size: 2rem;
  }

  .ourfeatures {
    font-size: 1.5rem;
  }

  .roundbt {
    display: block !important;
    width: 100%;
    margin: 0.5rem 0 1rem 0 !important;
    text-align: center;
  }
}

/* Fix for Tab Active State */
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  background-color: transparent !important;
  border-color: transparent transparent #B71C1C transparent !important;
  color: #ffffff !important;
}

.nav-tabs .nav-link:hover {
  border-color: transparent transparent rgba(183, 28, 28, 0.5) transparent !important;
}

.nav-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
/* Bootstrap Form Control Overrides */
.form-control {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 8px !important;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--gold-primary) !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.25rem rgba(183, 28, 28, 0.25) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

