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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #343435;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Variables */
:root {
  --primary-color: #343435;
  --secondary-color: #656565;
  --card-bg: #f8f9fa;
  --logo-size: 45px;
  --vertical-space: 2rem;
}

/* Layout */
.hero {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--vertical-space);
}

.logo {
  width: var(--logo-size);
  height: var(--logo-size);
  margin-right: 0.5rem;
  position: relative;
  top: 0.5rem;
}

.logo-text {
  font-size: 2.5rem;
  letter-spacing: -0.05rem;
  font-weight: 600;
  position: relative;
  top: 0.5rem;
  font-weight: bolder;
}

.hero h2 {
  font-weight: 400;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.row {
  margin-top: var(--vertical-space);
}

.row h2 {
  font-weight: 400;
}

.step-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 400px;
  overflow: hidden;
  object-fit: cover;
  object-position: top;
  margin-top: var(--vertical-space);
}

.goto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--vertical-space);
}

.yt-button {
  width: 200px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

footer {
  text-align: center;
  padding: 2rem;
  opacity: 0.7;
}

/* Buttons */
.squishy {
  position: relative;
  font-size: 1.2rem;
  padding: 1.5rem 3.5rem;
  font-weight: 600;
  border-radius: 0.9rem;
  cursor: pointer;
  transition: transform 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
}

.squishy-neon {
  background-color: rgb(220 38 38);
  color: white;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3),
    0 2px 0 0 rgb(185 28 28), 0 4px 0 0 rgb(153 27 27),
    0 6px 0 0 rgb(127 29 29), 0 8px 0 0 rgb(107 33 33),
    0 8px 16px 0 rgba(239, 68, 68, 0.5);
}

.squishy-neon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.squishy-neon:hover {
  transform: translateY(4px);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3),
    0 1px 0 0 rgb(185 28 28), 0 2px 0 0 rgb(153 27 27),
    0 3px 0 0 rgb(127 29 29), 0 4px 0 0 rgb(107 33 33),
    0 4px 8px 0 rgba(239, 68, 68, 0.5);
}

/* Animations */
.animate-fadeIn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.animate-fadeIn-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.25s;
}

.pulse-active {
  animation: pulse 2s infinite;
}

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

@keyframes pulse {
  50% {
    transform: scale(1.05);
  }
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-8 {
  margin-top: 8rem;
}

.emoji {
  font-size: 1.5rem;
}

.subtitle {
  font-size: 1.4rem;
  font-weight: 900;
  position: relative;
  top: -1rem;
  color: #757575;
}

.goto-title {
  font-size: 1.4rem;
  font-weight: 900;
}

.uninstall-header {
  text-align: center;
  color: var(--secondary-color);
}

.uninstall-form {
margin: 0 auto;
display: block;
max-width: 100%;
}