:root {
    --primary-pink: #FF00FF;
    --electric-blue: #00FFFF;
    --neon-green: #39FF14;
    --deep-purple: #2A003D;
    --text-white: #FFFFFF;
    --font-heading: 'Righteous', cursive;
    --font-body: 'Montserrat', sans-serif;
    --font-bangers: 'Bangers', cursive;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: #000;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--deep-purple) 0%, #000000 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Patterns */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 0, 255, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.2) 0%, transparent 20%);
    pointer-events: none;
}

.geometric-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Header & Hero */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: relative;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: var(--font-bangers);
    font-size: 2.5rem;
    color: var(--electric-blue);
    text-shadow: 3px 3px 0px var(--primary-pink);
    transform: rotate(-3deg);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 1;
}

h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--text-white);
    text-shadow:
        4px 4px 0px var(--primary-pink),
        -2px -2px 0px var(--electric-blue);
    letter-spacing: -2px;
}

.subtitle {
    font-family: var(--font-bangers);
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--primary-pink);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-decoration: none;
    border: 3px solid var(--text-white);
    box-shadow: 8px 8px 0px var(--electric-blue);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0px var(--electric-blue);
    background-color: #ff33ff;
}

/* Hero Image */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 20px;
    border: 5px solid white;
    box-shadow: 15px 15px 0px rgba(255, 255, 255, 0.1);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 20px 20px 0px var(--electric-blue);
}

/* Music Section */
.music-section {
    padding: 5rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: var(--electric-blue);
    text-shadow: 3px 3px 0px var(--primary-pink);
}

/* Sticky Player Styles */
body {
    padding-bottom: 120px;
    /* Space for the player */
}

.sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #111;
    border-top: 2px solid var(--electric-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 255, 255, 0.2);
}

.player-left,
.player-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.player-right {
    justify-content: flex-end;
    gap: 1.5rem;
}

.player-center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 600px;
}

/* Track Info */
.player-track-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-track-title {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1rem;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-like-btn {
    background: transparent;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.player-like-btn.active {
    color: #ff3333;
}

.player-like-btn:hover {
    transform: scale(1.1);
}

/* Controls */
.player-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.control-btn {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.control-btn:hover {
    color: var(--neon-green);
}

.play-pause-btn {
    font-size: 2.5rem;
    color: var(--text-white);
}

.play-pause-btn:hover {
    color: var(--electric-blue);
    transform: scale(1.05);
}

/* Progress Bar */
.progress-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: monospace;
    color: #888;
    font-size: 0.8rem;
}

.progress-bar {
    flex: 1;
    -webkit-appearance: none;
    height: 5px;
    background: #333;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: var(--text-white);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.progress-bar:hover::-webkit-slider-thumb {
    background: var(--neon-green);
}

/* Volume */
.volume-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 120px;
}

.volume-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 4px;
    background: #333;
    border-radius: 4px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #aaa;
    border-radius: 50%;
    cursor: pointer;
}

/* Playlist Redesign */
.playlist-container {
    max-width: 800px;
    margin: 0 auto;
}

.playlist {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
}

.track-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.track-item:last-child {
    border-bottom: none;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.track-item.playing {
    background: rgba(0, 255, 255, 0.1);
}

.track-item.playing .track-name {
    color: var(--neon-green);
}

.track-number {
    color: #666;
    font-family: monospace;
}

.track-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ddd;
}




.track-content-wrapper {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-actions {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.action-btn {
    background: transparent;
    border: 1px solid #444;
    color: #888;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.2rem 0.6rem;
    border-radius: 5px;
    transition: all 0.2s;
}

.action-btn:hover {
    border-color: var(--text-white);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

.like-btn.active {
    color: #ff3333;
    border-color: #ff3333;
    text-shadow: 0 0 5px #ff3333;
}

.share-btn:hover {
    color: var(--electric-blue);
    border-color: var(--electric-blue);
    text-shadow: 0 0 5px var(--electric-blue);
}

.play-btn {
    margin-left: 0;
    /* Reset margin since we use flexbox now */
}

/* Lyrics Display */
.lyrics-container {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--electric-blue);
    border-radius: 10px;
    max-height: 300px;
    overflow-y: auto;
    text-align: left;
    display: none;
    /* Hidden by default */
}

.lyrics-container.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.lyrics-header {
    font-family: var(--font-bangers);
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    border-bottom: 1px dashed #555;
    padding-bottom: 0.5rem;
}

.lyrics-text {
    font-family: 'Courier New', monospace;
    color: #ddd;
    white-space: pre-wrap;
    line-height: 1.6;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar styling for lyrics */
.lyrics-container::-webkit-scrollbar {
    width: 10px;
}

.lyrics-container::-webkit-scrollbar-track {
    background: #111;
}

.lyrics-container::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 5px;
}

/* Auction Section */
.auction-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(42, 0, 61, 0.9));
    border-bottom: 4px solid var(--neon-green);
    position: relative;
    overflow: hidden;
}

/* Grid/Cyber Background Effect overlay */
.auction-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.auction-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.auction-media {
    flex: 1;
    position: relative;
    min-width: 300px;
}

.auction-image {
    width: 100%;
    border-radius: 15px;
    border: 4px solid var(--electric-blue);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.auction-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.badge-container {
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge {
    padding: 0.5rem 1rem;
    font-family: var(--font-bangers);
    font-size: 1.5rem;
    transform: rotate(-5deg);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5);
}

.badge.exclusive {
    background: var(--primary-pink);
    color: white;
}

.badge.premium {
    background: var(--neon-green);
    color: black;
    transform: rotate(3deg);
}

.auction-details {
    flex: 1;
    min-width: 300px;
}

.auction-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 4px 4px 0 var(--deep-purple);
}

.auction-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ddd;
}

/* Dashboard Panel (New Design) */
.dashboard-panel {
    background: rgba(0, 20, 40, 0.9);
    border: 2px solid var(--electric-blue);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.1);
    position: relative;
}

.dashboard-panel::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--electric-blue);
    border-bottom: 2px solid var(--electric-blue);
}

.dashboard-display {
    flex: 1;
    background: #000;
    border: 1px solid #333;
    padding: 1rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Scanline effect for displays */
.dashboard-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

.display-label {
    font-family: var(--font-heading);
    color: var(--electric-blue);
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.display-value {
    font-family: 'Righteous', monospace;
    /* Fallback to monospace if needed, but Righteous fits well */
    font-size: 2.5rem;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
    line-height: 1;
}

.digital-clock {
    display: flex;
    gap: 0.2rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: var(--primary-pink);
    font-size: 1.5rem;
    text-shadow: 0 0 8px var(--primary-pink);
}

.digital-clock small {
    font-size: 0.6em;
    opacity: 0.7;
    margin-left: 2px;
}

/* Action Zone */
.action-zone {
    margin-bottom: 2rem;
}

.bid-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.bid-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

/* Shine effect */
.bid-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.bid-button:hover::before {
    left: 100%;
}

.btn-main {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: black;
    text-transform: uppercase;
    font-weight: 900;
}

.btn-sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #333;
    font-weight: bold;
}

/* Imapct Meter New */
.impact-meter-container {
    margin-bottom: 2.5rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.meter-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: bold;
    font-size: 0.9rem;
    color: #aaa;
}

.meter-value {
    color: var(--text-white);
}

.meter-bar-outer {
    height: 24px;
    background: #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
}

.meter-bar-inner {
    height: 100%;
    background: repeating-linear-gradient(45deg,
            var(--electric-blue),
            var(--electric-blue) 10px,
            var(--neon-green) 10px,
            var(--neon-green) 20px);
    position: relative;
    box-shadow: 0 0 15px var(--neon-green);
    animation: barberpole 20s linear infinite;
}

@keyframes barberpole {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 500px 0;
    }
}

.meter-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(255, 255, 255, 0.2);
}

/* Viral Share Icons */
.viral-share h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--text-white);
    text-align: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    flex: 1;
    padding: 0.8rem 0.5rem;
    border: none;
    border-radius: 4px;
    color: white;
    font-family: var(--font-body);
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s, filter 0.2s;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.share-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

.share-btn .icon {
    font-size: 1.2rem;
}

.share-btn.twitter {
    background: #1DA1F2;
    /* Twitter Blue */
}

.share-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.share-btn.tiktok {
    background: #000000;
    border: 1px solid #333;
    text-shadow: -1px -1px 0 #00F2EA, 1px 1px 0 #FF0050;
}


/* Merch Section */
.merch-section {
    padding: 5rem 2rem;
    background: #050505;
    position: relative;
}

/* Grid Pattern for merch */
.merch-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 0, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.merch-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.merch-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
}

.merch-image-container {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #333;
}

.merch-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s;
}

.merch-card:hover .merch-image {
    transform: scale(1.1);
}

.merch-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--electric-blue);
    color: black;
    font-family: var(--font-heading);
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
    transform: rotate(3deg);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
}

/* Sold out specific style */
.merch-card.sold-out .merch-image-container {
    opacity: 0.7;
}

.merch-card.sold-out .merch-overlay {
    background: #ff3333;
    color: white;
}

.merch-image-placeholder {
    height: 350px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tshirt-graphic {
    font-family: var(--font-bangers);
    font-size: 3rem;
    line-height: 1;
    text-align: center;
    color: #333;
    border: 4px solid #333;
    padding: 1rem;
    transform: rotate(-10deg);
}

.merch-card.sold-out .tshirt-graphic {
    color: #444;
    border-color: #444;
}

.merch-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.merch-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.price-tag {
    font-family: var(--font-bangers);
    font-size: 2.2rem;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
}

.cause-text {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #888;
    font-style: italic;
}

.buy-button {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
    font-family: var(--font-heading);
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.buy-button:hover {
    background: var(--electric-blue);
    color: black;
    box-shadow: 0 0 15px var(--electric-blue);
}

.buy-button:disabled {
    border-color: #444;
    color: #666;
    cursor: not-allowed;
}

.buy-button:disabled:hover {
    background: transparent;
    box-shadow: none;
}

/* Footer */
footer {
    padding: 4rem 2rem;
    text-align: center;
    background: black;
    border-top: 4px solid var(--gradient-bar);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icon {
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border: 2px solid var(--text-white);
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--text-white);
    color: black;
    box-shadow: 5px 5px 0px var(--primary-pink);
}

.copyright {
    opacity: 0.7;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 3rem;
    }

    .hero-image-placeholder {
        width: 100%;
        height: 300px;
    }

    /* Auction Response */
    .auction-container {
        flex-direction: column;
        gap: 2rem;
    }

    .auction-image {
        max-width: 100%;
    }

    .badge-container {
        left: 50%;
        transform: translateX(-50%);
        top: -15px;
        align-items: center;
    }

    .dashboard-panel {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .merch-grid {
        grid-template-columns: 1fr;
    }
}