:root {
  --primary-red: #cc0000;
  --primary-yellow: #ffce00;
  --primary-black: #000000;
  --primary-white: #ffffff;
}

body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
  min-height: 100vh;
  color: var(--primary-white);
  overflow-x: hidden;
}

.anton-font {
  font-family: "Anton", sans-serif;
  letter-spacing: 1px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 24px;
  border-radius: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-main {
  background: linear-gradient(135deg, var(--primary-red) 0%, #b30000 100%);
  color: var(--primary-white);
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

.btn-main:hover {
  background: linear-gradient(135deg, #e60000 0%, var(--primary-red) 100%);
  border-color: var(--primary-yellow);
}

.btn-ecosystem {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--primary-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ecosystem:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-yellow);
}

.btn-community {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #e6b800 100%);
  color: var(--primary-black);
}

.btn-community:hover {
  background: linear-gradient(135deg, #ffdb4d 0%, var(--primary-yellow) 100%);
  border-color: var(--primary-red);
}

.icon-container {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 18px;
  flex-shrink: 0;
}

.logo-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-yellow) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.5);
  overflow: hidden;
}

.logo-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    transparent 40%,
    var(--primary-black) 100%
  );
}

.logo-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-white);
  z-index: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.section-title {
  position: relative;
  padding-bottom: 10px;
  margin: 30px 0 20px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
  border-radius: 3px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-white);
  font-size: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  transform: translateY(-5px);
  background: var(--primary-red);
  box-shadow: 0 5px 15px rgba(204, 0, 0, 0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(204, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 0, 0, 0);
  }
}

.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-yellow) 100%
  );
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  z-index: -1;
}

.content-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
}

@media (max-width: 480px) {
  .btn {
    padding: 16px 20px;
  }

  .logo-container {
    width: 100px;
    height: 100px;
  }

  .logo-text {
    font-size: 2rem;
  }
}
