@font-face {
  font-family: 'VCNudge';
  src: url('./fonts/VCNudgeNormalExtraBoldItalicTrial.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'VCNudge', sans-serif;
  background: url('./wp.PNG') no-repeat center center fixed;
  background-size: cover;
  color: white;
}

header {
  padding: 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.controls-top {
  text-align: center;
  margin-bottom: 20px;
}

.upload-btn, .download-btn {
  background: white;
  color: #000000;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin: 0 5px;
}

.upload-btn:hover, .download-btn:hover {
  background: #ffe0b2;
}

.main-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}

.canvas-section {
  background: #fff3e0;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.assets-section {
  flex: 1;
}

.asset-category {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 15px;
}

.asset-category h2 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 10px;
}

.asset-scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
}

.asset-scroll img {
  width: 80px;
  border-radius: 10px;
  background: white;
  padding: 5px;
  cursor: pointer;
  transition: transform 0.2s;
}

.asset-scroll img:hover {
  transform: scale(1.1);
}
.asset-controls {
  position: absolute;
  display: flex;
  gap: 5px;
  z-index: 10;
}

.asset-control-btn {
  background: #c20000;
  border: 2px solid white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.asset-control-btn:hover {
  transform: scale(1.1);
}
