@font-face {
  font-family: 'Pixelout';
  src: url('Pixelout Personal Use Only.ttf') format('truetype');
}

@font-face {
  font-family: 'Minecraft';
  src: url('MinecraftStandard.otf') format('opentype');
}

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

body {
  background: #000;
  font-family: 'Minecraft', system-ui, sans-serif;
  color: white;
  overflow-x: hidden;
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 3;
  transition: opacity 0.3s ease-out;
}

.scroll-indicator {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  text-align: center;
  z-index: 3;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.scroll-indicator.hidden {
  opacity: 0;
}

.scroll-arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  margin: 0 auto;
  animation: bounce 2s infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(5px);
}

.stat-value {
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-10px) rotate(45deg);
  }
  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

.title-layer {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; 
  opacity: 1;
  transition: opacity 0.5s ease;
}

.title {
  font-family: 'Pixelout', system-ui, sans-serif;
  font-size: 15vw;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.5));
  animation: glowPulse 3s ease-in-out infinite;
  position: relative;
  transition: color 2s cubic-bezier(0.4, 0, 0.2, 1), 
              filter 2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  line-height: 0.9;
}

.title.music-off {
  color: #ff0000;
  filter: drop-shadow(0 0 15px rgba(255,0,0,0.5));
  animation: glowPulseRed 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.5));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(255,255,255,0.8));
  }
}

@keyframes glowPulseRed {
  0%, 100% {
    filter: drop-shadow(0 0 15px rgba(255,0,0,0.5));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(255,0,0,0.8));
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

:root {
  --bg-color: rgba(255,255,255,0.95);
  --bg-speed: 300s;
  transition: --bg-color 2s cubic-bezier(0.4, 0, 0.2, 1), --bg-speed 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  position: fixed; 
  inset: 0; 
  z-index: 2;
}

.container .dots {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
    circle at 50% 50%,
    #0000 0,
    #0000 2px,
    hsl(0 0% 4%) 2px
  );
  background-size: 8px 8px;
  background-attachment: fixed;
  z-index: 2;
}

@keyframes thingy {
  0% {
    filter: var(--f) hue-rotate(0deg);
  }
  to {
    filter: var(--f) hue-rotate(1turn);
  }
}

.container::before {
  content: "";
  position: fixed; 
  inset: -8em;
  z-index: 0; 
  --f: blur(7em) brightness(5);
  --c: #09f;
  animation:
    blobs-1e28bd3d var(--bg-speed) linear infinite,
    thingy 5s linear infinite;
  background-color: #000;
  background-image: radial-gradient(
      ellipse 66px 50px at 50% 50%,
      var(--bg-color) 0%,
      transparent 100%
    ),
    radial-gradient(ellipse 77px 60px at 50% 50%, var(--bg-color) 0%, transparent 100%),
    radial-gradient(ellipse 78px 100px at 50% 50%, var(--bg-color) 0%, transparent 100%),
    radial-gradient(ellipse 73px 96px at 50% 50%, var(--bg-color) 0%, transparent 100%),
    radial-gradient(ellipse 76px 77px at 50% 50%, var(--bg-color) 0%, transparent 100%),
    radial-gradient(ellipse 66px 51px at 50% 50%, var(--bg-color) 0%, transparent 100%),
    radial-gradient(ellipse 90px 57px at 50% 50%, var(--bg-color) 0%, transparent 100%),
    radial-gradient(ellipse 89px 93px at 50% 50%, var(--bg-color) 0%, transparent 100%);
  background-size:
    726px 576px,
    1242px 454px,
    876px 1160px,
    691px 873px,
    914px 550px,
    1159px 340px,
    1017px 831px,
    313px 977px;
  transition: all 2s ease-in-out;
}

@keyframes blobs-1e28bd3d {
  0% {
    background-position:
      271px 478px,
      62px 291px,
      67px 861px,
      553px 413px,
      36px 392px,
      1077px 226px,
      400px 799px,
      7px 264px;
  }

  to {
    background-position:
      -14975px -2978px,
      31112px 11187px,
      -20081px 8981px,
      11609px -3952px,
      -12760px 12492px,
      -9354px 2946px,
      9553px 21574px,
      946px 9057px;
  }
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-info {
  padding: 1rem;
}

.project-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.project-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.project-stat {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.join-date {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 2rem;
  font-style: italic;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hub-box {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hub-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.hub-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hub-link svg {
  transition: transform 0.3s ease;
}

.hub-link:hover svg {
  transform: translateX(5px);
}

.hub-link-text {
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.sound-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  color: white;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 20px rgba(80, 240, 255, 0.3);
  overflow: hidden;
  image-rendering: pixelated;
}

.sound-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  box-shadow: 
    0 0 25px rgba(80, 240, 255, 0.5),
    inset 0 0 15px rgba(80, 240, 255, 0.3);
}

.sound-toggle svg {
  width: 24px;
  height: 24px;
  filter: contrast(1.2);
  image-rendering: pixelated;
}

.sound-toggle::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: linear-gradient(45deg, 
    rgba(80, 240, 255, 0.1),
    rgba(74, 142, 255, 0.1),
    rgba(80, 240, 255, 0.1)
  );
  animation: rotateGradient 3s linear infinite;
  pointer-events: none;
}

@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.sound-toggle:active {
  transform: scale(0.95);
  box-shadow: 0 0 15px rgba(80, 240, 255, 0.2);
}

.sound-toggle .sound-on,
.sound-toggle .sound-off {
  position: absolute;
}

.goal-tracker {
  position: static;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px;
  color: white;
  font-family: 'Minecraft', system-ui, sans-serif;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transform: none;
  transition: all 0.3s ease;
}

.goal-tracker:hover {
  transform: none;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.pixel-progress {
  width: 100%;
  height: 12px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
  image-rendering: pixelated;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.pixel-fill {
  height: 100%;
  background: linear-gradient(90deg, #50f0ff, #4a8eff);
  transition: width 0.5s ease;
  box-shadow: 0 0 15px rgba(80, 240, 255, 0.8);
  image-rendering: pixelated;
}

.goal-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.9rem;
  color: white;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  font-weight: bold;
}

@keyframes pixelPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(80, 240, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(80, 240, 255, 1);
    border-color: rgba(255, 255, 255, 0.8);
  }
}

.pixel-fill.pulsing {
  animation: pixelPulse 1.5s infinite;
}

@keyframes titlePulse {
  0%, 100% {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  }
}

.content {
  position: relative;
  z-index: 4;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  min-height: 100vh;
}

.section {
  margin-bottom: 4rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.section-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.goal-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: center;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.activity-graph {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  image-rendering: pixelated;
}

.weekdays-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.activity-pixels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.activity-day {
  position: relative;
  aspect-ratio: 1;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.activity-day:hover {
  transform: translateY(-2px);
}

.activity-day[data-count="0"] {
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.4);
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.2);
}

.activity-day[data-count="1"] {
  background: rgba(80, 240, 255, 0.3);
}

.activity-day[data-count="2"] {
  background: rgba(80, 240, 255, 0.5);
}

.activity-day[data-count="3"] {
  background: rgba(80, 240, 255, 0.7);
}

.activity-day[data-count="4"] {
  background: rgba(80, 240, 255, 0.9);
}

.activity-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 100;
}

.activity-day:hover .activity-tooltip {
  opacity: 1;
}

.activity-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.activity-title {
  font-size: 1.2rem;
  color: white;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.activity-legend {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.legend-color.inactive {
  background: rgba(255, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 0, 0, 0.4);
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.2);
}

.legend-item.inactive {
  color: rgba(255, 0, 0, 0.8);
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.activity-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px;
  margin-top: 1rem;
}

.activity-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  position: relative;
}

.pixel-loader {
  width: 12px;
  height: 12px;
  background: rgba(80, 240, 255, 0.9);
  animation: pixelLoaderAnim 1s steps(1) infinite;
  image-rendering: pixelated;
  box-shadow: 0 0 15px rgba(80, 240, 255, 0.8);
  position: relative;
}

@keyframes pixelLoaderAnim {
  0% { transform: translate(0, 0); }
  25% { transform: translate(16px, 0); }
  50% { transform: translate(16px, 16px); }
  75% { transform: translate(0, 16px); }
  100% { transform: translate(0, 0); }
}

.pixel-loader::before,
.pixel-loader::after {
  content: 'Loading Activity...';
  position: absolute;
  left: 50%;
  top: calc(100% + 20px);
  transform: translateX(-50%);
  white-space: nowrap;
  color: white;
  font-size: 0.9rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  animation: loaderTextPulse 1s ease-in-out infinite;
}

@keyframes loaderTextPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.inactive-note {
  margin-top: 1rem;
  padding: 0.8rem;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 6px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.inactive-note strong {
  color: rgba(255, 0, 0, 0.8);
  font-weight: bold;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.time-analysis {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.time-analysis h3 {
  font-size: 1.2rem;
  color: white;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.hour-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 4px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  image-rendering: pixelated;
}

.hour-block {
  position: relative;
  aspect-ratio: 1;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hour-block:hover {
  transform: translateY(-2px);
}

.hour-block[data-count="0"] {
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.4);
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.2);
}

.hour-block[data-count="1"] {
  background: rgba(80, 240, 255, 0.3);
}

.hour-block[data-count="2"] {
  background: rgba(80, 240, 255, 0.5);
}

.hour-block[data-count="3"] {
  background: rgba(80, 240, 255, 0.7);
}

.hour-block[data-count="4"] {
  background: rgba(80, 240, 255, 0.9);
}

.hour-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 100;
}

.hour-block:hover .hour-tooltip {
  opacity: 1;
}

.time-insights {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.insight {
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  line-height: 1.4;
}

.insight-label {
  color: rgba(80, 240, 255, 0.9);
  margin-right: 0.5rem;
  text-shadow: 0 0 5px rgba(80, 240, 255, 0.3);
  font-weight: bold;
}

@media (max-width: 768px) {
  .hour-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}

.bmc-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bmc-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.bmc-btn {
  min-width: unset !important;
  padding: 7px 15px !important;
  line-height: 28px !important;
  height: auto !important;
  border-radius: 8px !important;
}

.subscription-section {
  position: relative;
  overflow: hidden;
}

.benefits-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.benefits-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(80, 240, 255, 0.05),
    rgba(74, 142, 255, 0.05)
  );
  animation: gradientMove 8s linear infinite;
  pointer-events: none;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(80, 240, 255, 0.3);
  box-shadow: 0 5px 15px rgba(80, 240, 255, 0.1);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(80, 240, 255, 0.05),
    rgba(74, 142, 255, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.benefit-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 0 0 10px rgba(80, 240, 255, 0.5);
}

.benefit-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.benefit-card.special {
  border: 1px solid rgba(80, 240, 255, 0.3);
  background: linear-gradient(45deg,
    rgba(80, 240, 255, 0.1),
    rgba(74, 142, 255, 0.1)
  );
}

.coming-soon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(80, 240, 255, 0.2);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.7rem;
  color: rgba(80, 240, 255, 1);
  text-shadow: 0 0 5px rgba(80, 240, 255, 0.5);
}

.subscribe-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(45deg,
    rgba(80, 240, 255, 0.2),
    rgba(74, 142, 255, 0.2)
  );
  border: 1px solid rgba(80, 240, 255, 0.3);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(80, 240, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.subscribe-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(80, 240, 255, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-100%, -100%);
  transition: transform 0.5s ease;
}

.subscribe-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(45deg,
    rgba(80, 240, 255, 0.3),
    rgba(74, 142, 255, 0.3)
  );
  box-shadow: 0 5px 15px rgba(80, 240, 255, 0.2);
}

.subscribe-button:hover::before {
  transform: translate(0, 0);
}

.subscribe-button svg {
  transition: transform 0.3s ease;
}

.subscribe-button:hover svg {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    padding: 1.2rem;
  }
  
  .subscribe-button {
    width: 100%;
    justify-content: center;
  }
}