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

:root {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color-scheme: dark;
  --bg-dark: #0a0e1a;
  --text-white: #ffffff;
  --text-red: #ff3344;
  --text-cyan: #00ffff;
  --gauge-slow: #1a1f2e;
  --gauge-fast: #2a0a0a;
}

body {
  margin: 0;
  background: #000000;
  color: var(--text-white);
  height: 100vh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  margin: 0 auto;
  padding: 0px 40px;
  background-image: url(background.png);
  background-size: cover;
  height: 100vh;
  background-repeat: no-repeat;
    padding-top: 40px;
    height: 100vh;
    background-position-x: center;
    background-position-y: -70px;
}

.hero {
  text-align: center;
  margin-bottom: 80px;
}
.subHeadline{
    font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 15px;
  text-shadow: 0 0 10px rgba(250, 30, 78, 0.7);
}
.headline {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
.font-orbitron{
    font-family: "Orbitron", sans-serif;
}
.font-roboto{
    font-family: "Roboto", sans-serif;
}
.highlight {
  color: var(--text-red);
}
.transform {
    transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  position: relative;
  width: 100%;
}

.comparison-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  object-fit: cover;
}
.up-container{
display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 80px);
}
.features {
  display: flex;
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}
.feature-column {
  padding: 0 20px;
  background-color: #000000a6;
  border-radius: 20px;
}

.feature-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.indicator {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  display: inline-block;
}

.before-indicator {
  background-color: #0380de;
}

.after-indicator {
  background-color: #fe0730;
}

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

.feature-list li {
  font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 10px;
  flex-shrink: 0;
}

.before .bullet {
  background-color: #0380de;
  box-shadow: 0 0 8px #0380de;
}

.after .bullet {
  background-color: #fe0730;
  box-shadow: 0 0 8px #fe0730;
}

.cta {
  text-align: center;
}
.cta p{
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.cta-button {
  background: linear-gradient(135deg, #cc0000 0%, #aa0000 100%);
  color: var(--text-white);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 20px 60px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(204, 0, 0, 0.4);
  text-transform: none;
}

.cta-button:hover {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 0, 0, 0.6);
}

.cta-button:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .headline {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  body{
    overflow: auto;
  }
  .container {
    padding: 40px 20px;
    height:auto;
  }

  .headline {
    font-size: 1.8rem;
  }

  .features {
     flex-direction: column;
    gap: 40px;
  }


  .feature-title {
    font-size: 1.5rem;
  }

  .feature-list li {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 1.1rem;
    padding: 16px 40px;
    margin-bottom: 60px;
  }
}
