:root {
  --primary: #00F0FF;
  --secondary: #2F80ED;
  --background: #0A0A0A;
  --surface: #141414;
  --text: #FFFFFF;
  --text-secondary: #A0A0A0;
  --accent: #FF3E3E;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVfJ92AAAACHRSTlMzMzMzMzMzM85JBgAAAABJRU5ErkJggg==');
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Navigation */
.main-nav {
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-right {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-right a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Buttons */
.cta-button, .login-button {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.cta-button {
  background: var(--primary);
  color: var(--background) !important;
}

.login-button {
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hero Section */
.hero {
  margin-top: calc(60px + 1.5rem);
  padding: 8rem 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  color: transparent;
}

.terminal-effect {
  font-family: 'Space Mono', monospace;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cursor {
  display: inline-block;
  width: 10px;
  height: 1.25rem;
  background: var(--primary);
  margin-left: 4px;
  animation: blink 1s infinite;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.primary-button, .secondary-button {
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-button {
  background: var(--primary);
  color: var(--background);
}

.secondary-button {
  border: 1px solid var(--primary);
  color: var(--primary);
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--surface);
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

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

.service-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 240, 255, 0.1);
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  margin-bottom: auto;
  flex-grow: 1;
}

.service-list li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  margin-top: 2rem;
  transition: transform 0.2s ease;
}

.card-link .icon {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.card-link:hover .icon {
  transform: translateX(4px);
}

/* Footer */
footer {
  background: var(--surface);
  padding: 3rem 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand h3 {
  font-family: 'Space Mono', monospace;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--text-secondary);
}

.legal-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.legal-links a {
  color: var(--text-secondary);
  text-decoration: none;
}

.separator {
  color: var(--text-secondary);
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .nav-right {
    gap: 1.25rem;
  }
}

/* Add/Update these styles in style.css */
.services-hero {
  margin-top: calc(60px + 1.5rem);
  padding: 4rem 0 3rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    var(--surface) 0%,
    var(--background) 100%
  );
}

/* Grid overlay effect */
.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.services-hero .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-hero .terminal-window {
  max-width: 700px;
  width: 100%;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(0, 240, 255, 0.1);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 240, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  border-radius: 10px;
}

/* Terminal header enhancement */
.terminal-header {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.terminal-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
}

.terminal-button:nth-child(1) { background: #FF5F56; }
.terminal-button:nth-child(2) { background: #FFBD2E; }
.terminal-button:nth-child(3) { background: #27C93F; }

.services-hero .terminal-content {
  padding: 2rem;
  position: relative;
}

/* Command line effect */
.services-hero .prompt {
  font-family: 'Space Mono', monospace;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  color: var(--text);
}

.services-hero .prompt::before {
  content: '>';
  color: var(--primary);
  margin-right: 1rem;
  font-weight: bold;
}

.services-hero .prompt span {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
}

.services-hero .response {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-left: 2.5rem;
  position: relative;
}

/* Animated underscore cursor */
.cursor {
  display: inline-block;
  width: 10px;
  height: 24px;
  background: var(--primary);
  margin-left: 8px;
  animation: blink 1s infinite;
  vertical-align: middle;
  opacity: 0.7;
}

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

/* Lines effect */
.terminal-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 1px,
    rgba(255, 255, 255, 0.01) 1px,
    rgba(255, 255, 255, 0.01) 2px
  );
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .services-hero {
    padding: 3rem 0 2rem;
  }
  
  .services-hero .terminal-window {
    margin: 0 1rem;
  }
  
  .services-hero .prompt {
    font-size: 1.5rem;
  }
  
  .services-hero .response {
    font-size: 1rem;
    margin-left: 2rem;
  }
}

/* Service Categories */
.service-category {
  padding: 6rem 0;
}

.service-category:not(:first-child) {
  padding-top: 4rem;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.cta-section .terminal-window {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(0, 240, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cta-section .terminal-content {
  padding: 4rem 3rem;
}

.cta-section .prompt {
  font-family: 'Space Mono', monospace;
  color: var(--primary);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-section .prompt::after {
  content: '';
  width: 8px;
  height: 24px;
  background: var(--primary);
  display: inline-block;
  animation: blink 1s infinite;
  position: static;
  transform: none;
  margin-top: 0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.cta-buttons .primary-button,
.cta-buttons .secondary-button {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  min-width: 180px;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-buttons .primary-button {
  background: var(--primary);
  color: var(--background);
  border: none;
  border-radius: 4px;
}

.cta-buttons .secondary-button {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 4px;
}

.cta-buttons .primary-button:hover,
.cta-buttons .secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 240, 255, 0.2);
}

@media screen and (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons .primary-button,
  .cta-buttons .secondary-button {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .service-card {
    padding: 2rem;
  }
  
  .card-header h3 {
    font-size: 1.25rem;
  }
}

/* About Page Styles */
.about-hero {
  margin-top: calc(60px + 1.5rem);
  padding: 4rem 0 3rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    var(--surface) 0%,
    var(--background) 100%
  );
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

/* Mission Section */
.about-mission {
  padding: 6rem 0;
  background: var(--background);
  position: relative;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  color: transparent;
}

.mission-content p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Expertise Section */
.about-expertise {
  padding: 6rem 0;
  background: var(--surface);
  position: relative;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: 0 auto;
  max-width: 1200px;
}

.expertise-card {
  background: var(--background);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 240, 255, 0.1);
}

.expertise-card .card-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.expertise-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.expertise-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Miami Section */
.about-miami {
  padding: 6rem 0;
  background: var(--background);
  position: relative;
}

.about-miami .terminal-window {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(0, 240, 255, 0.1);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 240, 255, 0.05);
}

.about-miami .terminal-content {
  padding: 3rem;
}

.about-miami .prompt {
  font-family: 'Space Mono', monospace;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.about-miami .response {
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-miami .response p {
  margin-bottom: 1.5rem;
}

.about-miami .response p:last-child {
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .about-hero {
    padding: 3rem 0 2rem;
  }

  .mission-content h2 {
    font-size: 2rem;
  }

  .expertise-card {
    padding: 2rem;
  }

  .expertise-card h3 {
    font-size: 1.25rem;
  }

  .about-miami .terminal-content {
    padding: 2rem;
  }

  .about-miami .prompt {
    font-size: 1.25rem;
  }
}

/* Animation for terminal typing effect */
.typing-effect .prompt {
  position: relative;
}

.typing-effect .prompt::after {
  content: '';
  position: static;
  transform: none;
  margin-left: 4px;
}

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

/* Tool Hero Section */
.tool-hero {
  margin-top: calc(60px + 1.5rem);
  padding: 4rem 0 3rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    var(--surface) 0%,
    var(--background) 100%
  );
}

/* Tool Section */
.tool-section {
  padding: 4rem 0;
  background: var(--background);
  min-height: 60vh;
}

.tracker-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Network Selector */
.network-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.network-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--background);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.network-button:hover {
  border-color: var(--primary);
  color: var(--text);
}

.network-button.active {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.network-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Search Container */
.search-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.wallet-input {
  flex: 1;
  background: var(--background);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  color: var(--text);
  font-family: 'Space Mono', monospace;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.wallet-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.1);
}

.wallet-input::placeholder {
  color: var(--text-secondary);
}

/* Results Container */
.results-container {
  background: var(--background);
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.results-container.active {
  opacity: 1;
  transform: translateY(0);
}

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

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

.balance-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.balance-amount {
  color: var(--text);
  font-family: 'Space Mono', monospace;
  font-size: 1.25rem;
}

.transaction-list {
  max-height: 400px;
  overflow-y: auto;
}

.transaction-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.transaction-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.transaction-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.transaction-hash {
  color: var(--primary);
  font-family: 'Space Mono', monospace;
  font-size: 0.875rem;
}

.transaction-date {
  color: var(--text-secondary);
  font-size: 0.75rem;
}

.transaction-amount {
  font-family: 'Space Mono', monospace;
  color: var(--text);
}

.transaction-amount.positive {
  color: #27C93F;
}

.transaction-amount.negative {
  color: #FF5F56;
}

/* Loading State */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: var(--text-secondary);
}

.loading-spinner {
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
  margin-right: 1rem;
}

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

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .network-selector {
    flex-wrap: wrap;
  }
  
  .network-button {
    flex: 1;
    min-width: 120px;
  }
  
  .search-container {
    flex-direction: column;
  }
  
  .wallet-input {
    width: 100%;
  }
}

/* Resources Page Styles */
.resources-hero {
  margin-top: calc(60px + 1.5rem);
  padding: 4rem 0 3rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    var(--surface) 0%,
    var(--background) 100%
  );
}

.resources-section {
  padding: 6rem 0;
  min-height: 50vh;
}

.coming-soon {
  max-width: 800px;
  margin: 0 auto;
}

.coming-soon .terminal-window {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-message {
  color: var(--text-secondary);
  margin: 1.5rem 0;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  color: var(--primary);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Typing Effect - More specific selectors */
.hero .typing-effect .response,
.about-hero .typing-effect .response,
.tool-hero .typing-effect .response {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--primary);
  width: 0;
  animation: typing 2s steps(40, end) forwards,
             blink 1s step-end infinite;
}

/* Remove typing effect from other sections */
.about-mission .response,
.about-miami .response,
.about-expertise .response,
.cta-section .response {
  border-right: none;
  width: auto;
  white-space: normal;
  animation: none;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: var(--primary) }
}

/* Page Header Style */
.page-header {
  margin-top: calc(60px + 1.5rem);
  padding: 4rem 0;
  background: linear-gradient(
    to bottom,
    var(--surface) 0%,
    var(--background) 100%
  );
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  color: transparent;
}

.page-header .header-subtitle {
  color: var(--text-secondary);
  font-size: 1.25rem;
  max-width: 600px;
}

@media screen and (max-width: 768px) {
  .page-header {
    padding: 3rem 0;
  }
  
  .page-header h1 {
    font-size: 2.25rem;
  }
  
  .page-header .header-subtitle {
    font-size: 1.125rem;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 6rem 0;
  background: var(--background);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.contact-card .card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 12px;
  color: var(--primary);
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  transition: gap 0.3s ease;
}

.contact-link:hover {
  gap: 0.75rem;
}

.contact-link .icon {
  font-size: 1.25rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
}

/* Mobile Navigation */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.menu-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  position: relative;
  transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--primary);
  left: 0;
  transition: all 0.3s ease;
}

.menu-icon::before { top: -8px; }
.menu-icon::after { bottom: -8px; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--background);
  z-index: 999;
  transition: transform 0.3s ease;
  padding-top: 5rem;
}

.drawer-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.drawer-content a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.25rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
}

.drawer-content a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.drawer-content .cta-button {
  background: var(--primary);
  color: var(--background);
}

.drawer-content .login-button {
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.drawer-content .active {
  background: rgba(0, 240, 255, 0.1);
  color: var(--primary);
}

/* Menu Open States */
.menu-open .mobile-drawer {
  transform: translateX(-100%);
}

.menu-open .menu-icon {
  background: transparent;
}

.menu-open .menu-icon::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-open .menu-icon::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media screen and (max-width: 768px) {
  .mobile-menu-button {
    display: block;
  }
  
  .nav-right {
    display: none;
  }
  
  .main-nav .container {
    padding: 0.75rem 1rem;
  }
}

@media screen and (min-width: 769px) {
  .mobile-drawer {
    display: none;
  }
}

/* Privacy Page Styles */
.privacy-content {
  padding: 4rem 0;
  background: var(--background);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-wrapper h2 {
  color: var(--text);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.content-wrapper h3 {
  color: var(--text);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.content-wrapper p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.content-wrapper ul {
  list-style: disc;
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-secondary);
}

.content-wrapper li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.content-wrapper a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.content-wrapper a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .content-wrapper {
    padding: 1.5rem;
  }
  
  .content-wrapper h2 {
    font-size: 1.75rem;
  }
  
  .content-wrapper h3 {
    font-size: 1.25rem;
  }
}
  