@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

:root {
  --heading-color: #ebebeb;
  --text-color: #c0c4cc;
  --accent-color: #fd3a28;
  --accent-hover: #ff6456;
  --background: #070608;
  --bar-background: #1e222a00;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--heading-color);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

* {
  font-family: 'Inter', sans-serif;
}

.top-bar {
  background-color: var(--bar-background);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  position: fixed;
  box-sizing: border-box;
  top: 0;
  left: 0;
  z-index: 1000;
}

.left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 32px;
  height: 32px;
  background-color: var(--heading-color);
  -webkit-mask-image: url('favicon.png');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-image: url('https://getsol.online/app/favicon.png');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}

.title {
  font-size: 1.5rem;
  margin: 0;
}

.right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  background: var(--bar-background);
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 6px 11px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-btn:hover {
  background: rgba(253, 58, 40, 0.1);
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
  padding: 180px 20px 60px;
  position: relative;
  z-index: 1;
}

.subtitle {
  font-size: 2.4rem;
  margin: 0;
}

.description {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 600px;
}

.download-btn {
  background: var(--accent-color);
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  cursor: pointer;
  transition: background 0.2s ease;
}

.download-btn:hover {
  background: var(--accent-hover);
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent-color), #ff9b72);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.footer {
  position: fixed;
  bottom: 10px;
  left: 10px;
  color: var(--text-color);
  font-size: 0.9rem;
  z-index: 1000;
  pointer-events: none;
}

.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  background: var(--accent-color);
  filter: blur(100px);
  pointer-events: none;
  transition: box-shadow 0.2s;
}

.shape1 {
  width: 300px;
  height: 300px;
}

.shape2 {
  width: 400px;
  height: 400px;
}

#version {
  margin-top: -15px;
  font-size: 0.9rem;
  font-weight: bolder;
  color: var(--accent-color);
}