* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  background-image: 
    radial-gradient(ellipse at 20% 30%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
}

.font-bebas {
  font-family: 'Bebas Neue', sans-serif;
}

.tattoo-frame {
  box-shadow: 
    0 0 30px rgba(0, 0, 0, 0.5),
    inset 0 0 60px rgba(0, 0, 0, 0.3);
}

.placeholder-pattern {
  background-image: 
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L35 15L45 17L38 25L40 35L30 30L20 35L22 25L15 17L25 15L30 5Z' fill='none' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.ink-animation {
  width: 60px;
  height: 60px;
  position: relative;
}

.ink-animation::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #9333ea 0%, transparent 70%);
  border-radius: 50%;
  animation: ink-drop 1.5s ease-in-out infinite;
}

.ink-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  border-radius: 50%;
  animation: ink-drop 1.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes ink-drop {
  0% {
    transform: scale(0.3);
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

textarea::-webkit-scrollbar {
  width: 8px;
}

textarea::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 4px;
}

textarea::-webkit-scrollbar-thumb {
  background: #4c1d95;
  border-radius: 4px;
}

textarea::-webkit-scrollbar-thumb:hover {
  background: #6d28d9;
}

@media (max-width: 640px) {
  .font-bebas {
    font-size: 2.5rem !important;
  }
}

/* Subtle flash sheet background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='2' fill='%23ffffff' fill-opacity='0.01'/%3E%3Cpath d='M20 80 Q30 60 40 80 T60 80' stroke='%23ffffff' stroke-opacity='0.01' fill='none' stroke-width='1'/%3E%3Cpath d='M70 30 L75 20 L80 30 L75 25 Z' stroke='%23ffffff' stroke-opacity='0.01' fill='none'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}