/* Creat City Verwaltung - Production CSS (no Tailwind CDN) */

/* ==================== CSS VARIABLES ==================== */
:root {
  --mc-green: #00AA00;
  --mc-dark-green: #008800;
  --mc-brown: #8B4513;
  --mc-gold: #FFD700;
  --mc-dark: #2C2C2C;
  --mc-card: #3C3C3C;
  --mc-red: #AA0000;
}

/* ==================== BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--mc-dark);
  color: white;
  min-height: 100vh;
  line-height: 1.5;
}

.font-minecraft {
  font-family: 'Press Start 2P', cursive;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

/* ==================== UTILITY CLASSES ==================== */
.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-2 { top: 0.5rem; }
.top-3 { top: 0.75rem; }
.top-4 { top: 1rem; }
.right-2 { right: 0.5rem; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.left-2 { left: 0.5rem; }
.left-3 { left: 0.75rem; }
.bottom-0 { bottom: 0; }
.bottom-2 { bottom: 0.5rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-4 { padding-top: 1rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pl-10 { padding-left: 2.5rem; }
.pr-4 { padding-right: 1rem; }

.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-1 { margin-top: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.ml-2 { margin-left: 0.5rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-6xl { font-size: 3.75rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.text-white { color: white; }
.text-gray-300 { color: #D1D5DB; }
.text-gray-400 { color: #9CA3AF; }
.text-gray-500 { color: #6B7280; }
.text-mc-gold { color: var(--mc-gold); }
.text-mc-green { color: var(--mc-green); }
.text-mc-red { color: var(--mc-red); }

.bg-mc-dark { background-color: var(--mc-dark); }
.bg-mc-green { background-color: var(--mc-green); }
.bg-mc-gold { background-color: var(--mc-gold); }
.bg-mc-red { background-color: var(--mc-red); }
.bg-blue-600 { background-color: #2563EB; }
.bg-purple-600 { background-color: #9333EA; }
.bg-gray-600 { background-color: #4B5563; }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }

.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-dashed { border-style: dashed; }
.border-mc-brown { border-color: var(--mc-brown); }
.border-mc-red { border-color: var(--mc-red); }
.border-transparent { border-color: transparent; }
.border-b-4 { border-bottom-width: 4px; }
.border-t-4 { border-top-width: 4px; }
.border-l-4 { border-left-width: 4px; }

.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.cursor-pointer { cursor: pointer; }
.resize-none { resize: none; }
.pointer-events-none { pointer-events: none; }

.transition-colors { transition-property: color, background-color, border-color; transition-duration: 150ms; }
.transition-all { transition: all 150ms; }
.transition-opacity { transition-property: opacity; transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.transform { transform: translateZ(0); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }

.hover\:opacity-75:hover { opacity: 0.75; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:text-white:hover { color: white; }
.hover\:text-mc-gold:hover { color: var(--mc-gold); }
.hover\:text-mc-red:hover { color: var(--mc-red); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-mc-dark:hover { background-color: var(--mc-dark); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:rotate-90:hover { transform: rotate(90deg); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }

.divide-y > * + * { border-top-width: 1px; }

.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.scale-105 { transform: scale(1.05); }
.scale-125 { transform: scale(1.25); }

.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-h-\[90vh\] { max-height: 90vh; }
.max-w-xs { max-width: 20rem; }

.h-1 { height: 0.25rem; }
.h-3 { height: 0.75rem; }
.h-10 { height: 2.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-10 { width: 2.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.left-1\/2 { left: 50%; }
.top-1\/2 { top: 50%; }

.object-cover { object-fit: cover; }

/* ==================== RESPONSIVE ==================== */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:w-auto { width: auto; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 640px) {
  .sm\:block { display: block; }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
  border: 2px solid #3d2817;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8B4513 0%, #5d3a1a 100%);
  border-radius: 0;
  border: 2px solid #3d2817;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #A0522D 0%, #8B4513 100%);
}

/* ==================== MINECRAFT TEXTURES ==================== */
.mc-dirt-bg {
  background-color: #8B4513;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(0,0,0,0.1) 4px, rgba(0,0,0,0.1) 8px),
    repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(0,0,0,0.1) 4px, rgba(0,0,0,0.1) 8px);
  image-rendering: pixelated;
}

.mc-grass-bg {
  background: linear-gradient(180deg, #4CAF50 0%, #2E7D32 10%, #8B4513 10%, #6D4C41 100%);
}

.mc-stone-bg {
  background-color: #7d7d7d;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,0.15) 4px, rgba(0,0,0,0.15) 8px);
}

/* ==================== PIXEL BORDERS ==================== */
.pixel-border {
  border: 4px solid;
  border-image: linear-gradient(45deg, #8B4513, #A0522D, #5d3a1a) 1;
  image-rendering: pixelated;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3), -2px -2px 0 rgba(255,255,255,0.1) inset;
}

.pixel-border-gold {
  border: 4px solid;
  border-image: linear-gradient(45deg, #FFD700, #FFA500, #FFD700) 1;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3), 0 0 20px rgba(255,215,0,0.3);
}

/* ==================== GLOWING EFFECTS ==================== */
.glow-green {
  box-shadow: 0 0 10px rgba(0, 170, 0, 0.5), 0 0 20px rgba(0, 170, 0, 0.3), 0 0 30px rgba(0, 170, 0, 0.1);
}

.emerald-glow {
  filter: drop-shadow(0 0 3px rgba(0, 255, 0, 0.6));
  animation: emeraldPulse 2s ease-in-out infinite;
}

@keyframes emeraldPulse {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(0, 255, 0, 0.6)); }
  50% { filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.9)); }
}

/* ==================== ANIMATIONS ==================== */
.animate-fade-in { animation: fadeIn 0.5s ease-out; }
.animate-slide-up { animation: slideUp 0.5s ease-out forwards; opacity: 0; }
.animate-slide-down { animation: slideDown 0.3s ease-out; }
.animate-slide-right { animation: slideRight 0.3s ease-out; }
.animate-scale-in { animation: scaleIn 0.3s ease-out; }
.animate-shake { animation: shake 0.5s ease-in-out; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

/* ==================== CARD EFFECTS ==================== */
.property-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.property-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.property-card:hover::before { left: 100%; }
.property-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 69, 19, 0.3);
}

/* ==================== FORM ANIMATIONS ==================== */
.form-field { animation: slideUp 0.5s ease-out forwards; opacity: 0; }
.form-field:nth-child(1) { animation-delay: 0ms; }
.form-field:nth-child(2) { animation-delay: 50ms; }
.form-field:nth-child(3) { animation-delay: 100ms; }
.form-field:nth-child(4) { animation-delay: 150ms; }
.form-field:nth-child(5) { animation-delay: 200ms; }
.form-field:nth-child(6) { animation-delay: 250ms; }
.form-field:nth-child(7) { animation-delay: 300ms; }
.form-field:nth-child(8) { animation-delay: 350ms; }
.form-field:nth-child(9) { animation-delay: 400ms; }
.form-field:nth-child(10) { animation-delay: 450ms; }

/* ==================== SPECIAL ANIMATIONS ==================== */
.chest-bounce { animation: chestBounce 2s ease-in-out infinite; }
@keyframes chestBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(-3deg); }
  75% { transform: translateY(-15px) rotate(3deg); }
}

.coming-soon-pulse { animation: comingSoonPulse 2s ease-in-out infinite; }
@keyframes comingSoonPulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
  50% { opacity: 0.6; text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

.block-place { animation: blockPlace 0.3s ease-out; }
@keyframes blockPlace {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  60% { transform: scale(1.1) rotate(-5deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.float { animation: float 3s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(2deg); }
  66% { transform: translateY(-5px) rotate(-2deg); }
}

.torch-flicker { animation: torchFlicker 0.5s ease-in-out infinite alternate; }
@keyframes torchFlicker {
  0% { filter: brightness(1) drop-shadow(0 0 10px #FFA500); }
  25% { filter: brightness(1.1) drop-shadow(0 0 15px #FFA500); }
  50% { filter: brightness(0.9) drop-shadow(0 0 8px #FFA500); }
  75% { filter: brightness(1.05) drop-shadow(0 0 12px #FFA500); }
  100% { filter: brightness(1) drop-shadow(0 0 10px #FFA500); }
}

.diamond-sparkle { animation: diamondSparkle 1.5s ease-in-out infinite; position: relative; }
@keyframes diamondSparkle { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.3); } }

.enchanted { animation: enchantedGlow 2s ease-in-out infinite; position: relative; }
@keyframes enchantedGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(138, 43, 226, 0.5); }
  50% { box-shadow: 0 0 20px rgba(138, 43, 226, 0.8); }
}

.tnt-shake { animation: tntShake 0.1s ease-in-out infinite; }
@keyframes tntShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px) rotate(-1deg); }
  75% { transform: translateX(2px) rotate(1deg); }
}

/* ==================== MINECRAFT BUTTON STYLES ==================== */
.mc-btn {
  position: relative;
  background: linear-gradient(180deg, #5a5a5a 0%, #3c3c3c 50%, #2a2a2a 100%);
  border: 2px solid #1a1a1a;
  border-top-color: #7a7a7a;
  border-left-color: #7a7a7a;
  padding: 10px 20px;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  color: white;
  text-shadow: 2px 2px 0 #3F3F3F;
  transition: all 0.1s ease;
  image-rendering: pixelated;
  cursor: pointer;
}

.mc-btn:hover {
  background: linear-gradient(180deg, #6a6a6a 0%, #4c4c4c 50%, #3a3a3a 100%);
  color: #FFFF55;
}

.mc-btn:active {
  border-top-color: #1a1a1a;
  border-left-color: #1a1a1a;
  border-bottom-color: #7a7a7a;
  border-right-color: #7a7a7a;
  transform: translateY(2px);
}

.mc-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.mc-btn-green {
  background: linear-gradient(180deg, #00AA00 0%, #008800 50%, #006600 100%);
  border-top-color: #22CC22;
  border-left-color: #22CC22;
}

.mc-btn-green:hover {
  background: linear-gradient(180deg, #22CC22 0%, #00AA00 50%, #008800 100%);
}

.mc-btn-red {
  background: linear-gradient(180deg, #AA0000 0%, #880000 50%, #660000 100%);
  border-top-color: #CC2222;
  border-left-color: #CC2222;
}

.mc-btn-red:hover {
  background: linear-gradient(180deg, #CC2222 0%, #AA0000 50%, #880000 100%);
}

/* ==================== MINECRAFT INPUT STYLES ==================== */
.mc-input {
  background: #1a1a1a;
  border: 3px solid #3a3a3a;
  border-top-color: #1a1a1a;
  border-left-color: #1a1a1a;
  border-bottom-color: #5a5a5a;
  border-right-color: #5a5a5a;
  padding: 12px 16px;
  color: white;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: inherit;
}

.mc-input:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.mc-input::placeholder { color: #666; }

/* ==================== MINECRAFT CARD STYLES ==================== */
.mc-card {
  background: linear-gradient(180deg, #4a4a4a 0%, #3c3c3c 100%);
  border: 3px solid;
  border-top-color: #6a6a6a;
  border-left-color: #6a6a6a;
  border-bottom-color: #2a2a2a;
  border-right-color: #2a2a2a;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ==================== PRICE DISPLAY ==================== */
.price-display {
  font-family: 'Press Start 2P', cursive;
  background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 3px solid #FFD700;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  animation: priceShine 3s ease-in-out infinite;
}

@keyframes priceShine { 0% { left: -100%; } 100% { left: 100%; } }

/* ==================== STATUS BADGES ==================== */
.status-verfügbar {
  background: linear-gradient(180deg, #00AA00 0%, #008800 100%);
  animation: statusPulse 2s ease-in-out infinite;
}

.status-reserviert {
  background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
  color: #2C2C2C;
}

.status-verkauft, .status-vermietet {
  background: linear-gradient(180deg, #2563EB 0%, #1D4ED8 100%);
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 170, 0, 0.5); }
  50% { box-shadow: 0 0 15px rgba(0, 170, 0, 0.8); }
}

/* ==================== NOTIFICATION BADGE ==================== */
.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #AA0000;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  animation: badgePop 0.3s ease-out;
}

.notification-badge.static {
  position: static;
}

@keyframes badgePop {
  0% { transform: scale(0); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ==================== DRAG ZONE ==================== */
.drag-zone { transition: all 0.3s ease; }
.drag-zone:hover { border-color: #FFD700; background: rgba(255, 215, 0, 0.05); }
.drag-zone.active { border-color: #00AA00; background: rgba(0, 170, 0, 0.1); animation: dragPulse 0.5s ease-in-out infinite; }
@keyframes dragPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }

/* ==================== GALLERY IMAGE ==================== */
.gallery-image { transition: opacity 0.3s ease-in-out, transform 0.3s ease; }
.gallery-image:hover { transform: scale(1.02); }

/* ==================== MOBILE MENU ==================== */
.mobile-menu-enter { animation: slideDown 0.3s ease-out; }

/* ==================== CUSTOM HOUSE FORM ==================== */
.custom-house-form {
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
  border: 4px solid #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), inset 0 0 50px rgba(0, 0, 0, 0.3);
}

/* ==================== TABLE ==================== */
table { border-collapse: collapse; }
