:root {
  --dark-blue: #0A1224;
  --deep-navy: #091428;
  --shield-blue: #1E4DFF;
  --white-text: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #0A1224 0%, #091428 100%);
  color: #FFFFFF;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.6;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(9, 20, 40, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 77, 255, 0.2);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white-text);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--white-text);
}

.nav-links a.social-link {
  color: var(--shield-blue);
}

.nav-links a.social-link:hover {
  color: rgba(30, 77, 255, 0.8);
}

.launch-app-button {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--shield-blue) 0%, rgba(30, 77, 255, 0.8) 100%);
  color: var(--white-text);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 77, 255, 0.3);
  white-space: nowrap;
  display: inline-block;
  border: none;
}

.launch-app-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 77, 255, 0.5);
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.9) 0%, var(--shield-blue) 100%);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--white-text);
}

/* Main Content */
main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1224 0%, #091428 50%, #0A1224 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 77, 255, 0.4) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 77, 255, 0.3) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(30, 77, 255, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-logo-wrapper {
  animation: fadeInDown 1s ease-out 0.2s both;
  flex-shrink: 0;
}

.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(30, 77, 255, 0.4);
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05) rotate(5deg);
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 50%, #1E4DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.title-line {
  display: inline-block;
}

.title-line {
  display: block;
}

.hero-tagline {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--shield-blue) 0%, rgba(30, 77, 255, 0.8) 100%);
  color: var(--white-text);
  box-shadow: 0 8px 25px rgba(30, 77, 255, 0.4);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30, 77, 255, 0.6);
}

.cta-button.secondary {
  background: rgba(30, 77, 255, 0.1);
  color: var(--white-text);
  border: 2px solid rgba(30, 77, 255, 0.5);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(30, 77, 255, 0.2);
  border-color: var(--shield-blue);
  transform: translateY(-3px);
}

.cta-button.large {
  padding: 1.3rem 3.5rem;
  font-size: 1.2rem;
}

.curve-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
}

.curve-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* Card Styles */
.card {
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.1) 0%, rgba(10, 18, 36, 0.5) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 77, 255, 0.4);
  box-shadow: 0 10px 30px rgba(30, 77, 255, 0.2);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white-text);
}

.card-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.05) 0%, rgba(10, 18, 36, 0.3) 100%);
  border-top: 1px solid rgba(30, 77, 255, 0.1);
  border-bottom: 1px solid rgba(30, 77, 255, 0.1);
}

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

.stat-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.1) 0%, rgba(10, 18, 36, 0.3) 100%);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 77, 255, 0.4);
  box-shadow: 0 10px 30px rgba(30, 77, 255, 0.2);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 0%, #1E4DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Curved Sections */
.curved-section {
  position: relative;
  background: #0A1224;
}

.curve-top,
.curve-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 0;
}

.curve-top {
  top: 0;
}

.curve-top svg,
.curve-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}

.curve-bottom {
  bottom: 0;
}

.curved-section .container {
  position: relative;
  z-index: 1;
}

/* About Section */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  animation: fadeIn 0.8s ease-out;
  width: 100%;
}

.about-text.centered {
  text-align: center;
}

.about-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-description.centered-text {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-visual {
  animation: fadeInRight 0.8s ease-out;
}

.visual-card {
  position: relative;
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.15) 0%, rgba(10, 18, 36, 0.5) 100%);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 24px;
  padding: 3rem;
  min-height: 400px;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 77, 255, 0.3) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-layers {
  position: relative;
  width: 200px;
  height: 200px;
}

.layer {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(30, 77, 255, 0.4);
  animation: pulse 3s ease-in-out infinite;
}

.layer-1 {
  width: 200px;
  height: 200px;
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.layer-2 {
  width: 150px;
  height: 150px;
  top: 25px;
  left: 25px;
  animation-delay: 1s;
}

.layer-3 {
  width: 100px;
  height: 100px;
  top: 50px;
  left: 50px;
  animation-delay: 2s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, #091428 0%, #0A1224 100%);
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.1) 0%, rgba(10, 18, 36, 0.5) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

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

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(30, 77, 255, 0.5);
  box-shadow: 0 20px 40px rgba(30, 77, 255, 0.3);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.2) 0%, rgba(30, 77, 255, 0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--shield-blue);
}

.feature-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white-text);
}

.feature-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-size: 1rem;
}

/* Why Section */
.why-section {
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.05) 0%, rgba(10, 18, 36, 0.3) 100%);
  padding: 6rem 0;
}

.why-content {
  max-width: 1000px;
  margin: 0 auto;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.why-point {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.1) 0%, rgba(10, 18, 36, 0.3) 100%);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.why-point:hover {
  transform: translateX(10px);
  border-color: rgba(30, 77, 255, 0.4);
  box-shadow: 0 10px 30px rgba(30, 77, 255, 0.2);
}

.point-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1E4DFF 0%, rgba(30, 77, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1;
}

.point-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white-text);
}

.point-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.1) 0%, rgba(10, 18, 36, 0.5) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 77, 255, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #1E4DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Utility Page Styles */
.utility-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(30, 77, 255, 0.2);
  flex-wrap: wrap;
}

.tab-button {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  top: 1px;
}

.tab-button.active {
  color: var(--white-text);
  border-bottom-color: var(--shield-blue);
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

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

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

/* Privacy Scanner Styles */
.scanner-container {
  max-width: 1000px;
  margin: 0 auto;
}

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

.scanner-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #1E4DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.scanner-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.scanner-input-section {
  margin-bottom: 3rem;
}

.url-input-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.scan-url-input {
  flex: 1;
  padding: 1.25rem 1.5rem;
  background: rgba(10, 18, 36, 0.6);
  border: 2px solid rgba(30, 77, 255, 0.3);
  border-radius: 12px;
  color: var(--white-text);
  font-size: 1.1rem;
  font-family: 'Courier New', monospace;
  transition: all 0.3s ease;
}

.scan-url-input:focus {
  outline: none;
  border-color: var(--shield-blue);
  box-shadow: 0 0 0 4px rgba(30, 77, 255, 0.1);
}

.scan-url-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.scan-button {
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--shield-blue) 0%, rgba(30, 77, 255, 0.8) 100%);
  color: var(--white-text);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 77, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.scan-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 77, 255, 0.6);
}

.quick-scan-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.quick-scan-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(30, 77, 255, 0.1);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 8px;
  color: var(--white-text);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-scan-btn:hover {
  background: rgba(30, 77, 255, 0.2);
  border-color: var(--shield-blue);
  transform: translateY(-2px);
}

.scan-results {
  animation: fadeIn 0.5s ease;
  margin-top: 2rem;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(30, 77, 255, 0.2);
  flex-wrap: wrap;
  gap: 1rem;
}

.results-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-text);
  font-family: 'Courier New', monospace;
}

.privacy-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.score-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.score-value {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Courier New', monospace;
}

.score-value.score-good {
  color: #4dff4d;
}

.score-value.score-medium {
  color: #ffbd2e;
}

.score-value.score-bad {
  color: #ff5f56;
}

.threats-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.threat-card {
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.1) 0%, rgba(10, 18, 36, 0.5) 100%);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.threat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 77, 255, 0.4);
  box-shadow: 0 10px 30px rgba(30, 77, 255, 0.2);
}

.threat-card.high-threat {
  border-left: 4px solid #ff5f56;
}

.threat-card.medium-threat {
  border-left: 4px solid #ffbd2e;
}

.threat-card.low-threat {
  border-left: 4px solid #4dff4d;
}

.threat-card.safe {
  border-left: 4px solid var(--shield-blue);
}

.threat-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.threat-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white-text);
}

.threat-count {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white-text);
  font-family: 'Courier New', monospace;
  margin-bottom: 0.25rem;
}

.threat-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.tracker-list-section {
  margin-bottom: 3rem;
}

.tracker-list-section h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white-text);
}

.tracker-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.tracker-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(10, 18, 36, 0.6);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.tracker-item:hover {
  background: rgba(30, 77, 255, 0.1);
  border-color: rgba(30, 77, 255, 0.4);
}

.tracker-name {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tracker-icon {
  font-size: 1.5rem;
}

.tracker-name strong {
  display: block;
  color: var(--white-text);
  margin-bottom: 0.25rem;
}

.tracker-type {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.tracker-threat {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.tracker-threat.high {
  background: rgba(255, 95, 86, 0.2);
  color: #ff5f56;
}

.tracker-threat.medium {
  background: rgba(255, 189, 46, 0.2);
  color: #ffbd2e;
}

.tracker-threat.low {
  background: rgba(77, 255, 77, 0.2);
  color: #4dff4d;
}

.no-trackers {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.scan-loading {
  text-align: center;
  padding: 4rem 2rem;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(30, 77, 255, 0.2);
  border-top-color: var(--shield-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.scan-loading p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.protection-cta {
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.15) 0%, rgba(10, 18, 36, 0.5) 100%);
  border: 2px solid rgba(30, 77, 255, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}

.protection-cta h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white-text);
}

.protection-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.connect-wallet-cta {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--shield-blue) 0%, rgba(30, 77, 255, 0.8) 100%);
  color: var(--white-text);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 77, 255, 0.4);
}

.connect-wallet-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 77, 255, 0.6);
}

/* Browser Demo Section */
.browser-demo-section {
  margin-top: 4rem;
  padding: 2rem 0;
}

.demo-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.demo-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white-text);
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #1E4DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--shield-blue);
  margin: 0;
}

/* ZeroTrace Browser */
.zerotrace-browser {
  background: rgba(9, 20, 40, 0.95);
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  margin: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Browser Toolbar */
.browser-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(10, 18, 36, 0.8);
  border-bottom: 1px solid rgba(30, 77, 255, 0.2);
}

.browser-nav-controls {
  display: flex;
  gap: 0.5rem;
}

.nav-btn {
  width: 36px;
  height: 36px;
  background: rgba(30, 77, 255, 0.1);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 8px;
  color: var(--white-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-btn:hover:not(:disabled) {
  background: rgba(30, 77, 255, 0.2);
  border-color: var(--shield-blue);
  transform: scale(1.05);
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.browser-url-container {
  flex: 1;
}

.url-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 18, 36, 0.6);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
}

.lock-icon {
  color: var(--shield-blue);
  flex-shrink: 0;
}

.url-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white-text);
  font-size: 0.9rem;
  font-family: 'Courier New', monospace;
  outline: none;
}

.url-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.zerotrace-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(30, 77, 255, 0.2);
  border: 1px solid rgba(30, 77, 255, 0.4);
  border-radius: 6px;
  color: var(--shield-blue);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.browser-actions {
  display: flex;
  gap: 0.5rem;
}

.browser-action-btn {
  width: 36px;
  height: 36px;
  background: rgba(30, 77, 255, 0.1);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 8px;
  color: var(--white-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.browser-action-btn:hover {
  background: rgba(30, 77, 255, 0.2);
  border-color: var(--shield-blue);
  transform: scale(1.05);
}

/* Browser Tabs */
.browser-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(9, 20, 40, 0.8);
  border-bottom: 1px solid rgba(30, 77, 255, 0.2);
  padding: 0.5rem;
  overflow-x: auto;
}

.tab-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(10, 18, 36, 0.6);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 8px 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  max-width: 200px;
}

.tab-item.active {
  background: rgba(10, 18, 36, 0.9);
  border-color: var(--shield-blue);
  color: var(--white-text);
  border-bottom-color: transparent;
}

.tab-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.tab-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tab-close {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.tab-close:hover {
  background: rgba(255, 77, 77, 0.3);
  color: var(--white-text);
}

.new-tab-btn {
  width: 32px;
  height: 32px;
  background: rgba(30, 77, 255, 0.1);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 6px;
  color: var(--shield-blue);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.new-tab-btn:hover {
  background: rgba(30, 77, 255, 0.2);
  border-color: var(--shield-blue);
}

/* Browser Content */
.browser-content {
  display: flex;
  background: rgba(10, 18, 36, 0.4);
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.browser-main-content {
  flex: 1;
  position: relative;
  height: 100%;
  overflow-y: auto;
}

.tab-content-panel {
  display: none;
  padding: 2rem;
  height: 100%;
  overflow-y: auto;
}

.tab-content-panel.active {
  display: block;
}

.browser-page {
  max-width: 900px;
  margin: 0 auto;
}

.page-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 10vh;
}

.page-logo {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.page-header h1 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--white-text);
  letter-spacing: -2px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Search Container */
.search-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 584px;
  margin: 0 auto;
  padding: 0 1rem;
}

.search-box {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 584px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 0 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.search-box:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.search-box:focus-within {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--shield-blue);
  box-shadow: 0 4px 16px rgba(30, 77, 255, 0.3);
}

.search-icon {
  color: rgba(255, 255, 255, 0.6);
  margin-right: 12px;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white-text);
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.mic-icon {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 12px;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.mic-icon:hover {
  color: var(--shield-blue);
}

.search-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.search-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(30, 77, 255, 0.1);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.search-btn:hover {
  background: rgba(30, 77, 255, 0.2);
  border-color: var(--shield-blue);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.search-btn:active {
  background: rgba(30, 77, 255, 0.3);
}

/* Loading State */
.loading-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.loading-content {
  text-align: center;
}

.loading-spinner-large {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(30, 77, 255, 0.2);
  border-top-color: var(--shield-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}

.loading-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

/* Search Results Page */
.search-results-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.search-results-header {
  margin-bottom: 2rem;
}

.search-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-text);
  margin-bottom: 1.5rem;
}

.search-box-results {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 584px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 0 16px;
  backdrop-filter: blur(10px);
}

.search-input-results {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white-text);
  font-size: 16px;
  margin-left: 12px;
}

.search-stats {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.search-result-item {
  padding: 1rem 0;
}

.result-url {
  font-size: 0.85rem;
  color: var(--shield-blue);
  margin-bottom: 0.5rem;
}

.result-title {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.result-title a {
  color: #8ab4f8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.result-title a:hover {
  color: var(--shield-blue);
  text-decoration: underline;
}

.result-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Website Page */
.website-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

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

.website-logo {
  font-size: 2rem;
}

.website-nav {
  display: flex;
  gap: 2rem;
}

.website-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.website-nav a:hover {
  color: var(--shield-blue);
}

.website-content h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--white-text);
  margin-bottom: 1rem;
}

.website-content > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.website-section {
  margin-bottom: 2.5rem;
}

.website-section h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white-text);
  margin-bottom: 1rem;
}

.website-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 1rem;
}

/* Privacy Sidebar */
.privacy-sidebar {
  width: 320px;
  background: rgba(10, 18, 36, 0.95);
  border-right: 1px solid rgba(30, 77, 255, 0.2);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}

.privacy-sidebar.active {
  display: flex;
}

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

.sidebar-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-text);
  margin: 0;
}

.close-sidebar {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 6px;
  color: var(--white-text);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: all 0.2s ease;
}

.close-sidebar:hover {
  background: rgba(255, 77, 77, 0.3);
}

.privacy-stats-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(30, 77, 255, 0.1);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 12px;
}

.stat-icon-large {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 77, 255, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}

.stat-details {
  flex: 1;
}

.stat-value-large {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white-text);
  line-height: 1.2;
}

.stat-label-large {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.privacy-status-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(30, 77, 255, 0.15);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 12px;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.status-indicator.active {
  background: #4dff4d;
  box-shadow: 0 0 10px rgba(77, 255, 77, 0.5);
  animation: pulse 2s infinite;
}

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

.status-text {
  flex: 1;
}

.status-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-text);
  margin-bottom: 0.25rem;
}

.status-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.privacy-actions {
  margin-top: auto;
}

.privacy-action-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--shield-blue) 0%, rgba(30, 77, 255, 0.8) 100%);
  border: none;
  border-radius: 10px;
  color: var(--white-text);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 77, 255, 0.3);
}

.privacy-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 77, 255, 0.5);
}

.demo-message {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.1) 0%, rgba(10, 18, 36, 0.3) 100%);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 16px;
}

.demo-note {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Demo CTA Card */
.demo-cta-container {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
}

.demo-cta-card {
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.2) 0%, rgba(10, 18, 36, 0.6) 100%);
  border: 2px solid rgba(30, 77, 255, 0.4);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 20px 60px rgba(30, 77, 255, 0.3);
}

.demo-cta-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.demo-cta-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white-text);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #1E4DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-cta-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.demo-launch-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--shield-blue) 0%, rgba(30, 77, 255, 0.9) 100%);
  color: var(--white-text);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(30, 77, 255, 0.4);
  text-decoration: none;
}

.demo-launch-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30, 77, 255, 0.6);
}

.demo-launch-button svg {
  transition: transform 0.3s ease;
}

.demo-launch-button:hover svg {
  transform: translateX(5px);
}

/* Browser Page Header */
.browser-page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.browser-page-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white-text);
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #1E4DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.browser-page-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--shield-blue);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .browser-toolbar {
    flex-wrap: wrap;
  }
  
  .browser-url-container {
    width: 100%;
    order: 3;
  }
  
  .url-bar {
    width: 100%;
  }
  
  .privacy-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .quick-actions {
    grid-template-columns: 1fr;
  }
}

/* Wallet Section */
.wallet-section {
  margin: 3rem 0;
}

.wallet-card {
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.15) 0%, rgba(10, 18, 36, 0.6) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.wallet-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.wallet-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wallet-icon {
  width: 48px;
  height: 48px;
  color: var(--shield-blue);
  background: rgba(30, 77, 255, 0.1);
  padding: 0.75rem;
  border-radius: 12px;
}

.wallet-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.wallet-address {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Courier New', monospace;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.connect-button {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--shield-blue) 0%, rgba(30, 77, 255, 0.8) 100%);
  color: var(--white-text);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 77, 255, 0.3);
}

.connect-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 77, 255, 0.5);
}

.connect-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.balance-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30, 77, 255, 0.2);
}

.balance-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.balance-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.balance-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white-text);
  font-family: 'Courier New', monospace;
}

.balance-value.reward {
  color: var(--shield-blue);
}

/* Staking Notice */
.staking-notice {
  margin-bottom: 3rem;
}

.notice-card {
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.15) 0%, rgba(10, 18, 36, 0.5) 100%);
  border: 2px solid rgba(30, 77, 255, 0.3);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.notice-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.notice-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-text);
  margin-bottom: 0.5rem;
}

.notice-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Staking Interface */
.staking-interface {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.staking-card {
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.1) 0%, rgba(10, 18, 36, 0.5) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.staking-card:hover {
  border-color: rgba(30, 77, 255, 0.4);
  box-shadow: 0 10px 30px rgba(30, 77, 255, 0.2);
}

.staking-form {
  margin-top: 1.5rem;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.input-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.input-wrapper input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: rgba(10, 18, 36, 0.6);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 12px;
  color: var(--white-text);
  font-size: 1.1rem;
  font-family: 'Courier New', monospace;
  transition: all 0.3s ease;
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--shield-blue);
  box-shadow: 0 0 0 3px rgba(30, 77, 255, 0.1);
}

.input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.max-button {
  padding: 1rem 1.5rem;
  background: rgba(30, 77, 255, 0.2);
  border: 1px solid rgba(30, 77, 255, 0.4);
  border-radius: 12px;
  color: var(--shield-blue);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.max-button:hover {
  background: rgba(30, 77, 255, 0.3);
  border-color: var(--shield-blue);
}

.input-helper {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.action-button {
  width: 100%;
  padding: 1.1rem 2rem;
  background: linear-gradient(135deg, var(--shield-blue) 0%, rgba(30, 77, 255, 0.8) 100%);
  color: var(--white-text);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 77, 255, 0.3);
}

.action-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 77, 255, 0.5);
}

.action-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.unstake-button {
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.8) 0%, rgba(255, 77, 77, 0.6) 100%);
}

.claim-button {
  background: linear-gradient(135deg, rgba(77, 255, 77, 0.8) 0%, rgba(77, 255, 77, 0.6) 100%);
}

.rewards-display {
  margin-top: 1.5rem;
}

.rewards-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: rgba(30, 77, 255, 0.1);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.rewards-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.rewards-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--shield-blue);
  font-family: 'Courier New', monospace;
}

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

.info-card {
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.1) 0%, rgba(10, 18, 36, 0.5) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 77, 255, 0.4);
  box-shadow: 0 10px 30px rgba(30, 77, 255, 0.2);
}

/* Browser Demo Styles */
.browser-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  margin-top: 2rem;
}

.browser-window {
  background: rgba(10, 18, 36, 0.8);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.browser-header {
  background: rgba(9, 20, 40, 0.95);
  border-bottom: 1px solid rgba(30, 77, 255, 0.2);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.browser-controls {
  display: flex;
  gap: 0.5rem;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control-dot.red {
  background: #ff5f56;
}

.control-dot.yellow {
  background: #ffbd2e;
}

.control-dot.green {
  background: #27c93f;
}

.browser-url-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 18, 36, 0.6);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
}

.privacy-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--shield-blue);
  font-size: 0.85rem;
  font-weight: 600;
}

.privacy-indicator svg {
  width: 16px;
  height: 16px;
}

.url-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white-text);
  font-size: 0.9rem;
  font-family: 'Courier New', monospace;
  outline: none;
}

.url-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.privacy-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(30, 77, 255, 0.2);
  border-radius: 6px;
}

.stat-badge {
  font-weight: 700;
  color: var(--shield-blue);
  font-size: 0.9rem;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.browser-actions {
  display: flex;
  gap: 0.5rem;
}

.browser-btn {
  width: 36px;
  height: 36px;
  background: rgba(30, 77, 255, 0.1);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 8px;
  color: var(--white-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.browser-btn:hover {
  background: rgba(30, 77, 255, 0.2);
  border-color: var(--shield-blue);
  transform: scale(1.05);
}

.browser-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(9, 20, 40, 0.8);
  border-bottom: 1px solid rgba(30, 77, 255, 0.2);
  padding: 0.5rem;
  overflow-x: auto;
}

.tab-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(10, 18, 36, 0.6);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 8px 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.tab-item.active {
  background: rgba(10, 18, 36, 0.9);
  border-color: var(--shield-blue);
  color: var(--white-text);
  border-bottom-color: transparent;
}

.tab-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tab-close {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: all 0.2s ease;
}

.tab-close:hover {
  background: rgba(255, 77, 77, 0.3);
  color: var(--white-text);
}

.new-tab-btn {
  width: 32px;
  height: 32px;
  background: rgba(30, 77, 255, 0.1);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 6px;
  color: var(--shield-blue);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.new-tab-btn:hover {
  background: rgba(30, 77, 255, 0.2);
  border-color: var(--shield-blue);
}

.browser-content {
  background: rgba(10, 18, 36, 0.4);
  min-height: 500px;
  position: relative;
}

.tab-content-panel {
  display: none;
  padding: 2rem;
}

.tab-content-panel.active {
  display: block;
}

.browser-page {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #1E4DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.privacy-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.status-card {
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.1) 0%, rgba(10, 18, 36, 0.5) 100%);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.status-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 77, 255, 0.4);
  box-shadow: 0 8px 20px rgba(30, 77, 255, 0.2);
}

.status-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.status-icon.protected {
  background: rgba(77, 255, 77, 0.1);
  color: #4dff4d;
}

.status-icon.node {
  background: rgba(30, 77, 255, 0.2);
  color: var(--shield-blue);
}

.status-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--white-text);
}

.status-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.quick-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.2) 0%, rgba(10, 18, 36, 0.5) 100%);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 12px;
  color: var(--white-text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.3) 0%, rgba(10, 18, 36, 0.6) 100%);
  border-color: var(--shield-blue);
  transform: translateY(-2px);
}

/* Browser Sidebar */
.browser-sidebar {
  position: relative;
}

.sidebar-panel {
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.1) 0%, rgba(10, 18, 36, 0.6) 100%);
  border: 1px solid rgba(30, 77, 255, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  height: fit-content;
  max-height: 600px;
  overflow-y: auto;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(30, 77, 255, 0.2);
}

.sidebar-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white-text);
}

.sidebar-close {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 6px;
  color: var(--white-text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-close:hover {
  background: rgba(255, 77, 77, 0.3);
}

.bookmarks-list,
.notes-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.bookmark-item,
.note-item {
  padding: 0.75rem;
  background: rgba(10, 18, 36, 0.5);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bookmark-item:hover,
.note-item:hover {
  background: rgba(30, 77, 255, 0.1);
  border-color: rgba(30, 77, 255, 0.4);
}

.note-item {
  flex-direction: column;
  align-items: flex-start;
}

.note-title {
  font-weight: 600;
  color: var(--white-text);
  margin-bottom: 0.25rem;
}

.note-preview {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.add-bookmark-btn,
.add-note-btn {
  width: 100%;
  padding: 0.75rem;
  background: rgba(30, 77, 255, 0.2);
  border: 1px solid rgba(30, 77, 255, 0.4);
  border-radius: 8px;
  color: var(--shield-blue);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-bookmark-btn:hover,
.add-note-btn:hover {
  background: rgba(30, 77, 255, 0.3);
  border-color: var(--shield-blue);
}

.settings-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(10, 18, 36, 0.5);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 8px;
}

.setting-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--white-text);
}

.setting-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--shield-blue);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

@media (max-width: 1024px) {
  .browser-container {
    grid-template-columns: 1fr;
  }

  .browser-sidebar {
    order: -1;
  }

  .sidebar-panel {
    max-height: 300px;
  }
}

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

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

.tokenomics-item h3 {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.tokenomics-item p {
  font-size: 2rem;
  font-weight: 700;
  color: var(--shield-blue);
}

.chart-placeholder {
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 3rem auto;
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.1) 0%, rgba(10, 18, 36, 0.5) 100%);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
}

/* Roadmap Styles */
.roadmap-container {
  max-width: 1000px;
  margin: 3rem auto 0;
}

.roadmap {
  max-width: 900px;
  margin: 0 auto;
}

.roadmap-phase {
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.1) 0%, rgba(10, 18, 36, 0.5) 100%);
  border: 1px solid rgba(30, 77, 255, 0.2);
  border-radius: 12px;
  border-left: 4px solid var(--shield-blue);
}

.roadmap-phase h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white-text);
}

.roadmap-phase ul {
  list-style: none;
  padding-left: 0;
}

.roadmap-phase li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}

.roadmap-phase li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--shield-blue);
  font-weight: bold;
}

/* Footer Styles */
footer {
  background: var(--deep-navy);
  border-top: 1px solid rgba(30, 77, 255, 0.2);
  margin-top: 5rem;
  padding: 3rem 0;
}

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

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white-text);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--white-text);
}

.footer-section a.social {
  color: var(--shield-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(30, 77, 255, 0.2);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .launch-app-button {
    display: none;
  }

  .hero {
    padding: 6rem 0 4rem;
    min-height: auto;
  }

  .hero-brand {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 3rem;
    text-align: center;
  }

  .hero-logo {
    width: 100px;
    height: 100px;
  }

  .hero-tagline {
    font-size: 1.4rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .why-point {
    flex-direction: column;
    gap: 1rem;
  }

  .point-number {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .utility-grid {
    grid-template-columns: 1fr;
  }

  .tokenomics-info {
    grid-template-columns: 1fr;
  }

  .url-input-container {
    flex-direction: column;
  }

  .scan-button {
    width: 100%;
    justify-content: center;
  }

  .quick-scan-buttons {
    flex-direction: column;
  }

  .quick-scan-btn {
    width: 100%;
  }

  .results-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-score {
    align-items: flex-start;
  }

  .scanner-header h2 {
    font-size: 2rem;
  }

  .scanner-subtitle {
    font-size: 1rem;
  }

  .demo-title {
    font-size: 2rem;
  }

  .demo-subtitle {
    font-size: 1rem;
  }

  .privacy-stats {
    grid-template-columns: 1fr;
  }

  .demo-note {
    font-size: 0.9rem;
  }

  .utility-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wallet-status {
    flex-direction: column;
    align-items: flex-start;
  }

  .connect-button {
    width: 100%;
  }

  .balance-info {
    grid-template-columns: 1fr;
  }

  .staking-interface {
    grid-template-columns: 1fr;
  }

  .notice-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .notice-icon {
    font-size: 2.5rem;
  }

  .notice-content h3 {
    font-size: 1.3rem;
  }

  .notice-content p {
    font-size: 1rem;
  }

  .staking-info-grid {
    grid-template-columns: 1fr;
  }

  .rewards-amount {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

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

.fade-in {
  animation: slideUp 0.6s ease-out;
}

