.app{
    max-width: 100%;
    margin: 8px;
    padding: 10px 20px;
}

[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-card: #333333;
    --bg-tertiary: #404040;
    --bg-hover: #3a3a3a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-tertiary: #666666;
    --text-inverse: #1a1a1a;
    --accent-primary: #8b5cf6;
    --accent-secondary: #a855f7;
    --accent-hover: #9333ea;
    --accent-glow: rgba(139, 92, 246, 0.3);
    --border-color: #404040;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --overlay-bg: rgba(0, 0, 0, 0.9);
}

/* Featured Merch Section */
.featured-merch-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Merch Grid */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Merch Card */
.merch-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    margin: 8px;
}

.merch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
    border-color: var(--accent-primary);
}

.merch-card .image-container {
    height: 200px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.merch-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.merch-card .details {
    padding: 15px;
}

.merch-card h3 {
    margin-bottom: 5px;
    font-size: 1.1em;
    color: var(--text-primary);
}

.merch-card .price {
    font-weight: bold;
    color: var(--accent-primary);
}
