@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    font-family: 'Press Start 2P', monospace, sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    border: 8px double #ffd700;
    box-sizing: border-box;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 1px,
        transparent 1px,
        transparent 4px
    );
    z-index: 100;
}

.container {
    background: rgba(0,0,0,0.85);
    margin: 30px auto;
    padding: 20px 10px;
    border-radius: 16px;
    max-width: 1100px;
    box-shadow: 0 0 24px #ffeb3b, 0 0 0 8px #ff5722 inset;
    border: 4px double #ffd700;
}

h1 {
    text-align: center;
    font-size: 1.5em;
    color: #ffd700;
    text-shadow: 2px 2px 0 #ff5722, 4px 4px 0 #000;
    font-family: 'Press Start 2P', monospace, cursive;
    margin-bottom: 20px;
}

.card {
    background: rgba(255,255,255,0.08);
    border: 3px solid #1e90ff;
    border-radius: 10px;
    margin: 18px 0;
    padding: 10px 18px;
    box-shadow: 0 0 10px #ff9800;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 140px;
}

.card-img {
    width: 90px;
    height: 120px;
    object-fit: cover;
    border: 3px solid #ffd700;
    border-radius: 8px;
    box-shadow: 0 0 12px #ff5722;
    background: #fff;
}

.card h2 {
    font-size: 0.85em;
    color: #ffeb3b;
    text-shadow: 1px 1px 0 #ff5722, 2px 2px 0 #000;
    margin-bottom: 6px;
    font-family: 'Press Start 2P', monospace, cursive;
}

.prices {
    list-style: none;
    padding: 0;
    margin: 0 0 6px 0;
}

.prices li {
    font-size: 0.8em;
    color: #fff;
    text-shadow: 1px 1px 0 #000;
    margin-bottom: 2px;
    font-family: 'Press Start 2P', monospace, cursive;
}

.card-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    width: 100%;
    justify-content: space-between;
}

.card-details {
    flex: 1;
}

.card-chart {
    width: 180px;
    min-width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

canvas {
    background: #222;
    border-radius: 8px;
    box-shadow: 0 0 8px #ffd700;
    width: 160px !important;
    height: 70px !important;
    margin-left: 0;
} 