:root {
    --bg: #05050a;
    --card-bg: #151520;
    --text: #ffffff;
    --accent: #19b5ff;
    --error: #ff4b4b;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 20px;
    background: radial-gradient(circle at top, #202040 0, #05050a 50%);
    color: var(--text);
    font-family: system-ui, sans-serif;
}

header { text-align: center; margin-bottom: 30px; }
h1 { font-size: 2.5rem; margin: 0 0 10px; background: linear-gradient(45deg, #19b5ff, #ff80bf); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
header p { margin: 0; color: #c5c6ff; font-size: 1.1rem; }

.shop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.item {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(25,181,255,0.3);
    border-color: rgba(25,181,255,0.5);
}

.item img {
    max-width: 100%;
    max-height: 120px;
    border-radius: 12px;
    margin-bottom: 12px;
    object-fit: cover;
}

.item h2 {
    margin: 8px 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent);
    margin: 8px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.type, .rarity {
    margin: 4px 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Raritätsfarben */
.item-common   { border-color: #a0a0a0; }
.item-uncommon { border-color: #00ff88; }
.item-rare     { border-color: #0099ff; }
.item-epic     { border-color: #cc66ff; }
.item-legendary{ border-color: #ffaa00; }
.item-mythic   { border-color: #ffd700; }

footer {
    margin-top: 40px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}
