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

html, body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Segoe UI', sans-serif;
  color: #000000;
  background-color: #535353;
  position: relative;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 100vh;
}

#backgroundCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.blur-box {
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 20px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  z-index: 3;
  position: relative;
}

.buttons-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.custom-button {
  display: flex;
  align-items: center;
  justify-content: flex;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  width: 260px;
}

.custom-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.custom-button img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.custom-button span {
  font-size: 18px;
  font-weight: 500;
}

.bubbles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  border-radius: 40px;
  z-index: -1;
}

.bubble-img {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0.8;
  animation: floatUp 4s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes floatUp {
  0% {
    transform: translateY(100%) scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120%) scale(1);
    opacity: 0;
  }
}

.custom-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.big-image {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.description {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.divider {
  margin: 20px 0;
  border: none;
  border-top: 2px solid #ffffff33;
}

@media (min-width: 769px) {
  .big-image {
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
  }

  .big-image img {
    width: 700px;
    height: auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .big-image {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 400px;
    height: auto;
    z-index: 0;
  }

  .big-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .blur-box {
    margin-top: 60px;
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 400px;
  }
}