.assets-hero {
  padding-top: 140px;
  padding-bottom: 60px;
}

.assets-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: #111111;
}

.assets-hero .section-kicker {
  color: #009624;
  font-weight: 700;
  margin-bottom: 12px;
}

.assets-hero .hero-tagline {
  color: #444444;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #007e1c 0%, #009624 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.asset-section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 40px;
  text-align: left;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Assets Grid */
.assets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.assets-grid.four-cols {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* Asset Card */
.asset-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.asset-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 200, 83, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.asset-preview {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #fcfcfc;
}

.asset-preview img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.asset-card:hover .asset-preview img {
  transform: scale(1.05);
}

/* Background Variations */
.dark-bg { background: #0a0a0a; }
.light-bg { background: #ffffff; }
.accent-bg { background: var(--green); }

.asset-info {
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.asset-info h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.download-group {
  display: flex;
  gap: 12px;
}

.btn-download {
  flex: 1;
  padding: 12px;
  background: #111;
  color: white;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-download:hover {
  background: var(--green-dark);
  transform: scale(1.02);
}

.btn-download.secondary {
  background: #f0f0f0;
  color: #111;
}

.btn-download.secondary:hover {
  background: #e0e0e0;
}

.btn-download.full {
  width: 100%;
  display: block;
}

/* Wide Cards */
.asset-card.wide {
  grid-column: span 2;
}

.asset-card.wide .asset-preview {
  height: 280px;
}

.asset-card.wide .asset-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

/* Guidelines */
.guidelines-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

.guideline-card {
  padding: 40px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.guideline-card.do { border-left: 8px solid var(--green); }
.guideline-card.dont { border-left: 8px solid #ff4655; }

.guideline-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.guideline-card ul {
  list-style: none;
  padding: 0;
}

.guideline-card li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
  color: #444;
}

.guideline-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.guideline-card.dont li::before {
  content: '✕';
  color: #ff4655;
}

/* Quick Info */
.quick-info-card {
  background: #0a0a0a;
  border-radius: 40px;
  padding: 60px;
  color: white;
  max-width: 900px;
  margin: 0 auto 120px;
  position: relative;
  overflow: hidden;
}

.quick-info-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.1) 0%, transparent 70%);
}

.info-content h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.info-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 600px;
}

.info-links a {
  display: block;
  font-size: 1.2rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 24px;
}

.social-mini {
  display: flex;
  gap: 24px;
}

.social-mini a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-mini a:hover { color: white; }

/* Responsive */
@media (max-width: 992px) {
  .asset-card.wide { grid-column: span 1; }
  .guidelines-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .assets-hero h1 { font-size: 3rem; }
  .quick-info-card { padding: 40px 30px; }
  .info-content h3 { font-size: 1.5rem; }
}

/* Minecraft Character Section */
.minecraft-section {
  padding: 80px 0;
  background: #f8f8f8;
  border-radius: 60px;
  margin-bottom: 80px;
}

.minecraft-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.skin-2d-card {
  background: white;
  border-radius: 32px;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.skin-flat-preview {
  width: 100%;
  max-width: 200px;
  height: auto;
  image-rendering: pixelated;
  margin-bottom: 30px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.skin-viewer-card {
  background: #0a0a0a;
  border-radius: 40px;
  height: 500px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.skin-viewer-card:active {
  cursor: grabbing;
}

.skin-viewer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 200, 83, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.skin-api-preview {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

#skin-3d-render {
  max-height: 85%;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: opacity 0.3s ease, transform 0.1s linear;
  cursor: pointer;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.api-attribution {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

#skin-viewer-container {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#skin-viewer-container:hover .viewer-overlay {
  opacity: 1;
}

.viewer-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
}

.minecraft-info h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.minecraft-info .section-kicker {
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  .minecraft-grid {
    grid-template-columns: 1fr;
  }
  
  .skin-viewer-card {
    height: 400px;
    order: -1;
  }
}

