/* TorZon Enhanced - Main Styles */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Share Tech Mono', monospace;
  background: #000;
  color: #00ffcc;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #000 0%, #001a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease-out;
}

.loading-content {
  text-align: center;
  color: #00ffcc;
}

.loading-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 255, 204, 0.3);
  border-top: 3px solid #00ffcc;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.loading-progress {
  width: 300px;
  height: 4px;
  background: rgba(0, 255, 204, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  background: linear-gradient(90deg, #00ffcc, #00cc99);
  width: 0%;
  animation: loadingProgress 3s ease-out forwards;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes loadingProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 204, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffcc;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #00ffcc;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background: rgba(0, 255, 204, 0.1);
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #00ffcc;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #00ffcc;
  transition: all 0.3s ease;
}

/* Background Effects */
.background-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(0, 255, 204, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 204, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.laser-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.laser-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ffcc, transparent);
  animation: laserSweep 8s linear infinite;
}

@keyframes laserSweep {
  0% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateX(100%); }
}

.matrix-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.snow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.snowflake {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 255, 204, 0.6);
  border-radius: 50%;
  animation: snowfall linear infinite;
}

@keyframes snowfall {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh);
    opacity: 0;
  }
}

/* Main Container */
.main-container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  max-width: 1000px;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 2rem;
  animation: heroLogoFloat 3s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  margin-bottom: 2rem;
}

.title-line {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  font-family: 'Orbitron', monospace;
  background: linear-gradient(45deg, #00ffcc, #00cc99, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.title-subtitle {
  display: block;
  font-size: 1.5rem;
  color: rgba(0, 255, 204, 0.8);
  margin-top: 1rem;
  letter-spacing: 0.2em;
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 20px rgba(0, 255, 204, 0.5); }
  100% { text-shadow: 0 0 30px rgba(0, 255, 204, 0.8); }
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(0, 255, 204, 0.9);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #00ffcc;
  display: block;
  font-family: 'Orbitron', monospace;
}

.stat-label {
  font-size: 1rem;
  color: rgba(0, 255, 204, 0.7);
  margin-top: 0.5rem;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(0, 255, 204, 0.6);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #00ffcc;
  border-bottom: 2px solid #00ffcc;
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

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

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-10px); }
}

/* Security Dashboard */
.security-dashboard {
  background: rgba(0, 20, 20, 0.8);
  border: 1px solid rgba(0, 255, 204, 0.3);
  margin: 4rem 2rem;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.2);
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.dashboard-container h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.dashboard-item {
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.dashboard-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.3);
}

.dashboard-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.dashboard-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
  margin-bottom: 0.5rem;
}

.dashboard-label {
  color: rgba(0, 255, 204, 0.8);
  font-size: 1rem;
}

/* Content Sections */
.content-section {
  margin: 6rem 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  color: #00ffcc;
  margin-bottom: 1rem;
  font-family: 'Orbitron', monospace;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00ffcc, transparent);
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.3rem;
  color: rgba(0, 255, 204, 0.7);
  margin-top: 1rem;
}

.section-content {
  background: rgba(0, 20, 20, 0.6);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.1);
}

/* Info Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-card {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 204, 0.2);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.info-card h3 {
  color: #00ffcc;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-family: 'Orbitron', monospace;
}

.info-card p {
  color: rgba(0, 255, 204, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Statistics Mini */
.stats-mini {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-mini {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 255, 204, 0.1);
  border-radius: 6px;
  min-width: 100px;
}

.stat-mini-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
}

.stat-mini-label {
  font-size: 0.8rem;
  color: rgba(0, 255, 204, 0.7);
  margin-top: 0.25rem;
}

/* Mirror Links */
.mirror-links-container {
  background: rgba(0, 30, 30, 0.8);
  border: 1px solid rgba(0, 255, 204, 0.4);
  border-radius: 8px;
  padding: 2rem;
}

.mirror-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.mirror-header h3 {
  color: #00ffcc;
  font-size: 1.8rem;
  font-family: 'Orbitron', monospace;
}

.mirror-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(0, 255, 204, 0.8);
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00ff00;
  animation: statusPulse 2s ease-in-out infinite;
}

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

.mirror-warning {
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.mirror-warning p {
  color: #ffaa00;
  margin: 0;
}

.mirror-item {
  margin-bottom: 1rem;
}

.mirror-link {
  display: block;
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 6px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.mirror-link:hover {
  background: rgba(0, 255, 204, 0.1);
  border-color: rgba(0, 255, 204, 0.4);
  transform: translateX(5px);
}

.mirror-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.mirror-url {
  font-family: 'Share Tech Mono', monospace;
  color: #ff3f2e;
  font-size: 1.1rem;
  text-shadow: 0 0 6px rgba(255, 63, 46, 0.5);
}

.mirror-status-badge {
  background: #00ff00;
  color: #000;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
}

.mirror-details {
  display: flex;
  gap: 2rem;
  color: rgba(0, 255, 204, 0.7);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

/* Auth Flow */
.auth-flow-container {
  max-width: 1000px;
  margin: 0 auto;
}

.auth-description {
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(0, 255, 204, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
}

.auth-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.auth-step {
  display: flex;
  gap: 2rem;
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.auth-step:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateX(10px);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ffcc, #00cc99);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Orbitron', monospace;
}

.step-content h3 {
  color: #00ffcc;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-family: 'Orbitron', monospace;
}

.step-content p {
  color: rgba(0, 255, 204, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-details {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.detail-item {
  background: rgba(0, 255, 204, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: rgba(0, 255, 204, 0.8);
  border: 1px solid rgba(0, 255, 204, 0.3);
}

.auth-stats {
  margin-top: 3rem;
  text-align: center;
}

.auth-stats h3 {
  color: #00ffcc;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-family: 'Orbitron', monospace;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(0, 255, 204, 0.8);
  font-size: 1rem;
}

/* Security Protocols */
.security-overview {
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(0, 255, 204, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
}

.protocol-category {
  margin-bottom: 3rem;
}

.protocol-category h3 {
  color: #00ffcc;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-family: 'Orbitron', monospace;
  text-align: center;
}

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.protocol-item {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.protocol-item:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 204, 0.2);
}

.protocol-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.protocol-item h4 {
  color: #00ffcc;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-family: 'Orbitron', monospace;
}

.protocol-item p {
  color: rgba(0, 255, 204, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.protocol-specs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.protocol-specs span {
  background: rgba(0, 255, 204, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: rgba(0, 255, 204, 0.8);
  border: 1px solid rgba(0, 255, 204, 0.3);
}

/* Security Metrics */
.security-metrics {
  margin-top: 3rem;
}

.security-metrics h3 {
  color: #00ffcc;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-family: 'Orbitron', monospace;
  text-align: center;
}

.metrics-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.metric-item {
  text-align: center;
}

.metric-chart {
  margin-bottom: 1rem;
}

.metric-info h4 {
  color: #00ffcc;
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', monospace;
}

.metric-value {
  font-size: 2rem;
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
  display: block;
  margin-bottom: 0.5rem;
}

.metric-info p {
  color: rgba(0, 255, 204, 0.8);
  font-size: 0.9rem;
}

.security-timeline {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 8px;
  padding: 2rem;
}

.security-timeline h4 {
  color: #00ffcc;
  margin-bottom: 1.5rem;
  font-family: 'Orbitron', monospace;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 255, 204, 0.1);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-time {
  color: rgba(0, 255, 204, 0.6);
  font-size: 0.9rem;
  min-width: 100px;
}

.timeline-event {
  color: rgba(0, 255, 204, 0.9);
  flex: 1;
  margin-left: 1rem;
}

/* Cryptocurrency Section */
.crypto-overview {
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(0, 255, 204, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
}

.crypto-currencies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.currency-card {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.currency-card:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
}

.currency-card.bitcoin {
  border-color: rgba(255, 165, 0, 0.3);
}

.currency-card.monero {
  border-color: rgba(255, 102, 0, 0.3);
}

.currency-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.currency-icon {
  font-size: 3rem;
  font-weight: bold;
}

.currency-card.bitcoin .currency-icon {
  color: #ffaa00;
}

.currency-card.monero .currency-icon {
  color: #ff6600;
}

.currency-info h3 {
  color: #00ffcc;
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', monospace;
}

.currency-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
}

.currency-change {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: rgba(0, 255, 0, 0.1);
  color: #00ff00;
}

.currency-change.negative {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
}

.currency-details {
  margin-bottom: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 255, 204, 0.1);
  color: rgba(0, 255, 204, 0.9);
}

.detail-row:last-child {
  border-bottom: none;
}

.currency-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(0, 255, 204, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: rgba(0, 255, 204, 0.8);
  border: 1px solid rgba(0, 255, 204, 0.3);
}

/* Crypto Tools */
.crypto-tools {
  margin-top: 3rem;
}

.tool-section h3 {
  color: #00ffcc;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-family: 'Orbitron', monospace;
  text-align: center;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.tool-card {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 8px;
  padding: 2rem;
}

.tool-card h4 {
  color: #00ffcc;
  margin-bottom: 1.5rem;
  font-family: 'Orbitron', monospace;
}

/* Converter */
.converter {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.converter-input,
.converter-output {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex: 1;
  min-width: 120px;
}

.converter input,
.converter select {
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 4px;
  padding: 0.75rem;
  color: #00ffcc;
  font-family: 'Share Tech Mono', monospace;
}

.converter input:focus,
.converter select:focus {
  outline: none;
  border-color: #00ffcc;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.converter-arrow {
  font-size: 1.5rem;
  color: #00ffcc;
  flex-shrink: 0;
}

#convert-result {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
  min-width: 80px;
}

/* Fee Calculator */
.fee-calculator {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fee-input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fee-input label {
  color: rgba(0, 255, 204, 0.8);
  font-size: 0.9rem;
}

.fee-input input,
.fee-input select {
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 4px;
  padding: 0.75rem;
  color: #00ffcc;
  font-family: 'Share Tech Mono', monospace;
}

.fee-result {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 6px;
  padding: 1rem;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  color: rgba(0, 255, 204, 0.9);
}

.fee-item.total {
  border-top: 1px solid rgba(0, 255, 204, 0.3);
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-weight: bold;
  color: #00ffcc;
}

/* Crypto Stats */
.crypto-stats {
  margin-top: 3rem;
}

.crypto-stats h3 {
  color: #00ffcc;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-family: 'Orbitron', monospace;
  text-align: center;
}

.stats-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-widget {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.widget-header h4 {
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
}

.widget-trend {
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.widget-trend.up {
  background: rgba(0, 255, 0, 0.1);
  color: #00ff00;
}

.widget-trend.down {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
}

.widget-value {
  font-size: 2rem;
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
  margin-bottom: 0.5rem;
}

.widget-subtext {
  color: rgba(0, 255, 204, 0.7);
  font-size: 0.9rem;
}

/* Features Section */
.features-overview {
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(0, 255, 204, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
}

.features-showcase {
  margin-bottom: 3rem;
}

.feature-category {
  margin-bottom: 4rem;
}

.feature-category h3 {
  color: #00ffcc;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-family: 'Orbitron', monospace;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.feature-card h4 {
  color: #00ffcc;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-family: 'Orbitron', monospace;
}

.feature-card p {
  color: rgba(0, 255, 204, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-benefits {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.feature-benefits span {
  background: rgba(0, 255, 204, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: rgba(0, 255, 204, 0.8);
  border: 1px solid rgba(0, 255, 204, 0.3);
}

.feature-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.stat-mini {
  text-align: center;
  padding: 0.75rem;
  background: rgba(0, 255, 204, 0.1);
  border-radius: 6px;
  min-width: 80px;
}

.stat-mini .number {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
}

.stat-mini .label {
  font-size: 0.7rem;
  color: rgba(0, 255, 204, 0.7);
  margin-top: 0.25rem;
}

.feature-demo {
  text-align: center;
  margin-top: 1rem;
}

.demo-btn {
  background: linear-gradient(135deg, #00ffcc, #00cc99);
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Share Tech Mono', monospace;
}

.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 204, 0.4);
}

.reward-preview {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.reward-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 204, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: rgba(0, 255, 204, 0.8);
}

.reward-icon {
  font-size: 1.2rem;
}

/* Feature Comparison */
.feature-comparison {
  margin-top: 4rem;
}

.feature-comparison h3 {
  color: #00ffcc;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-family: 'Orbitron', monospace;
  text-align: center;
}

.comparison-table {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: rgba(0, 255, 204, 0.1);
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
}

.comparison-header > div {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid rgba(0, 255, 204, 0.2);
}

.comparison-header > div:last-child {
  border-right: none;
}

.comparison-header .premium {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(0, 255, 204, 0.1);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row > div {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid rgba(0, 255, 204, 0.1);
  color: rgba(0, 255, 204, 0.9);
}

.comparison-row > div:last-child {
  border-right: none;
}

.comparison-feature {
  text-align: left !important;
  font-weight: bold;
  color: #00ffcc;
}

.comparison-value {
  font-family: 'Orbitron', monospace;
  font-weight: bold;
}

/* Statistics Section */
.stats-overview {
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(0, 255, 204, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
}

.stats-dashboard-main {
  margin-bottom: 3rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card-large {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 12px;
  padding: 2rem;
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat-header h3 {
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
}

.stat-period {
  color: rgba(0, 255, 204, 0.7);
  font-size: 0.9rem;
}

.stat-chart-container {
  height: 200px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 204, 0.05);
  border-radius: 6px;
}

.stat-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.summary-label {
  color: rgba(0, 255, 204, 0.7);
  font-size: 0.9rem;
}

.summary-value {
  color: #00ffcc;
  font-weight: bold;
  font-family: 'Orbitron', monospace;
}

.trend-up {
  color: #00ff00;
}

.trend-down {
  color: #ff0000;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.stat-widget-detailed {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.widget-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.widget-content {
  width: 100%;
}

.widget-content h4 {
  color: #00ffcc;
  margin-bottom: 1.5rem;
  font-family: 'Orbitron', monospace;
}

/* Distribution Chart */
.distribution-chart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.distribution-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.distribution-label {
  min-width: 80px;
  color: rgba(0, 255, 204, 0.8);
  font-size: 0.9rem;
}

.distribution-bar {
  flex: 1;
  height: 20px;
  background: rgba(0, 255, 204, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.distribution-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ffcc, #00cc99);
  border-radius: 10px;
  transition: width 1s ease;
}

.distribution-fill.premium {
  background: linear-gradient(90deg, #ffd700, #ffaa00);
}

.distribution-value {
  min-width: 40px;
  color: #00ffcc;
  font-weight: bold;
  font-family: 'Orbitron', monospace;
}

/* Geographic Stats */
.geo-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.geo-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 255, 204, 0.1);
  color: rgba(0, 255, 204, 0.9);
}

.geo-item:last-child {
  border-bottom: none;
}

.geo-percentage {
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
}

.geo-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(0, 255, 204, 0.6);
  font-style: italic;
}

/* Security Metrics List */
.security-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 255, 204, 0.1);
  color: rgba(0, 255, 204, 0.9);
}

.metric-row:last-child {
  border-bottom: none;
}

.metric-name {
  font-size: 0.9rem;
}

.metric-value {
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
}

.metric-value.success {
  color: #00ff00;
}

/* Performance Gauges */
.performance-gauges {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.gauge-item {
  text-align: center;
}

.gauge {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(
    #00ffcc 0deg,
    #00ffcc calc(var(--percentage) * 3.6deg),
    rgba(0, 255, 204, 0.2) calc(var(--percentage) * 3.6deg),
    rgba(0, 255, 204, 0.2) 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.gauge::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(0, 20, 20, 0.9);
  border-radius: 50%;
}

.gauge-value {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
}

.gauge-label {
  color: rgba(0, 255, 204, 0.8);
  font-size: 0.8rem;
}

/* Account Levels Section */
.account-overview {
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(0, 255, 204, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
}

.account-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.tier-card {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tier-card:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
}

.tier-card.premium {
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.05);
}

.tier-card.premium:hover {
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.tier-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.8rem;
  font-weight: bold;
  font-family: 'Orbitron', monospace;
}

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

.tier-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.tier-card.premium .tier-icon {
  color: #ffd700;
}

.tier-header h3 {
  color: #00ffcc;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-family: 'Orbitron', monospace;
}

.tier-card.premium .tier-header h3 {
  color: #ffd700;
}

.tier-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
}

.tier-card.premium .tier-price {
  color: #ffd700;
}

.tier-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 255, 204, 0.1);
  color: rgba(0, 255, 204, 0.9);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  color: #00ff00;
  font-weight: bold;
  font-size: 1.2rem;
}

.tier-limits {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.limit-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  color: rgba(0, 255, 204, 0.9);
}

.limit-label {
  font-size: 0.9rem;
}

.limit-value {
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
}

.tier-button {
  width: 100%;
  background: linear-gradient(135deg, #00ffcc, #00cc99);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Orbitron', monospace;
}

.tier-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 204, 0.4);
}

.tier-button.premium {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
}

.tier-button.premium:hover {
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Upgrade Calculator */
.upgrade-calculator {
  margin-top: 4rem;
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 12px;
  padding: 2rem;
}

.upgrade-calculator h3 {
  color: #00ffcc;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-family: 'Orbitron', monospace;
  text-align: center;
}

.calculator-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.calculator-input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calculator-input label {
  color: rgba(0, 255, 204, 0.8);
  font-size: 1rem;
  font-weight: bold;
}

.calculator-input input {
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 6px;
  padding: 1rem;
  color: #00ffcc;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.1rem;
}

.calculator-input input:focus {
  outline: none;
  border-color: #00ffcc;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.calculator-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 6px;
  color: rgba(0, 255, 204, 0.9);
}

.result-label {
  font-weight: bold;
}

.result-value {
  color: #00ffcc;
  font-weight: bold;
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
}

/* Browser Section */
.browser-overview {
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(0, 255, 204, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
}

.browser-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.benefit-card h3 {
  color: #00ffcc;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-family: 'Orbitron', monospace;
  text-align: center;
}

.benefit-card p {
  color: rgba(0, 255, 204, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.benefit-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-details span {
  color: rgba(0, 255, 204, 0.8);
  font-size: 0.9rem;
  padding-left: 1rem;
  position: relative;
}

.benefit-details span::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00ffcc;
}

/* Browser Setup */
.browser-setup {
  margin-bottom: 3rem;
}

.browser-setup h3 {
  color: #00ffcc;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-family: 'Orbitron', monospace;
  text-align: center;
}

.setup-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.setup-step {
  display: flex;
  gap: 2rem;
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.setup-step:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateX(10px);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ffcc, #00cc99);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Orbitron', monospace;
}

.step-content h4 {
  color: #00ffcc;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-family: 'Orbitron', monospace;
}

.step-content p {
  color: rgba(0, 255, 204, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-link a {
  color: #00ffcc;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.step-link a:hover {
  background: rgba(0, 255, 204, 0.1);
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.verification-info {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.verification-info span {
  background: rgba(0, 255, 204, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: rgba(0, 255, 204, 0.8);
  border: 1px solid rgba(0, 255, 204, 0.3);
}

.security-settings {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 6px;
  padding: 1rem;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(0, 255, 204, 0.9);
}

.setting-name {
  font-size: 0.9rem;
}

.setting-value {
  font-weight: bold;
  color: #00ffcc;
  font-family: 'Orbitron', monospace;
}

.safety-checklist {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.safety-checklist span {
  background: rgba(0, 255, 204, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: rgba(0, 255, 204, 0.8);
  border: 1px solid rgba(0, 255, 204, 0.3);
}

/* Browser Warnings */
.browser-warnings h3 {
  color: #00ffcc;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-family: 'Orbitron', monospace;
  text-align: center;
}

.warning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.warning-item {
  display: flex;
  gap: 1rem;
  background: rgba(255, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.warning-item.critical {
  border-color: rgba(255, 0, 0, 0.4);
  background: rgba(255, 0, 0, 0.1);
}

.warning-item.high {
  border-color: rgba(255, 165, 0, 0.4);
  background: rgba(255, 165, 0, 0.05);
}

.warning-item.medium {
  border-color: rgba(255, 255, 0, 0.4);
  background: rgba(255, 255, 0, 0.05);
}

.warning-item.low {
  border-color: rgba(0, 255, 204, 0.4);
  background: rgba(0, 255, 204, 0.05);
}

.warning-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.warning-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.warning-content h4 {
  color: #ff0000;
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', monospace;
}

.warning-item.high .warning-content h4 {
  color: #ffaa00;
}

.warning-item.medium .warning-content h4 {
  color: #ffff00;
}

.warning-item.low .warning-content h4 {
  color: #00ffcc;
}

.warning-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

/* Footer */
.main-footer {
  background: rgba(0, 20, 20, 0.9);
  border-top: 1px solid rgba(0, 255, 204, 0.3);
  margin-top: 6rem;
  padding: 3rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #00ffcc;
  margin-bottom: 1rem;
  font-family: 'Orbitron', monospace;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section a {
  color: rgba(0, 255, 204, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #00ffcc;
  padding-left: 0.5rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 204, 0.2);
}

.footer-disclaimer {
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.footer-disclaimer p {
  color: #ffaa00;
  margin: 0;
  line-height: 1.6;
}

.footer-copyright {
  text-align: center;
  color: rgba(0, 255, 204, 0.6);
  font-size: 0.9rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 204, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 255, 204, 0.8);
}

