/* Dark mode styling */
:root {
  --bg-color: #0a0a0a;
  --surface-color: #1a1a1a;
  --text-color: #e0e0e0;
  --text-secondary: #b0b0b0;
  --accent-color: #6366f1;
  --accent-hover: #818cf8;
  --border-color: #2a2a2a;
}

/* Reset and base styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: var(--bg-color);
  color: var(--text-color);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg-color) !important;
  color: var(--text-color) !important;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.content {
  text-align: center;
}

.header {
  margin-bottom: 3rem;
}

.company-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.link-tree {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
}

.link-button:hover {
  background: var(--border-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

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

.link-text {
  flex: 1;
  text-align: left;
  margin-left: 1rem;
}

.link-arrow {
  font-size: 1.5rem;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.link-button:hover .link-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.about {
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.about p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* Responsive design */
@media (max-width: 768px) {
  .company-name {
    font-size: 2rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .link-button {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
  
  .about {
    padding: 1.5rem;
  }
}

