/* Home page styles */

.home-container {
  padding: 1rem;
}

.image-container {
  position: relative;
  overflow: hidden;
}

.surface-card {
  h3 {
    color: var(--text-color);
    font-weight: 600;
  }

  p {
    color: var(--text-color-secondary);
    font-weight: 400;
  }
}

.block-content {
  transition: transform 0.2s;
  min-height: 80px;

  &:hover {
    transform: scale(1.1);
  }
}

.object-cover {
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  filter: blur(10px);
}

.vip-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  z-index: 15;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  background-color: #ff9800 !important;
  border-color: #ff9800 !important;
  color: white !important;
  border-radius: 0.25rem !important;
}

.vip-button:hover {
  background-color: #f57c00 !important;
  border-color: #f57c00 !important;
}

.vip-crown-icon {
  position: absolute;
  top: 15%;
  right: 3%;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 30;

  i {
    font-size: 1rem;
  }
}

.clickable-card {
  transition: all 0.3s ease;
  cursor: pointer;

  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary-color-lighter, #90caf9);
  }
} 