body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100vw;
    background: url('potatoes.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow:hidden;
}
.info {
    background: rgba(0, 0, 0, 0.7);
    max-width: 95vw;
    width: 400px;
    margin: 32px auto;
    padding: 24px 16px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    text-align: center;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.15);
    animation: pop-in 0.8s cubic-bezier(.68,-0.55,.27,1.55);
}
h1 {
    margin-bottom: 10px;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
p {
    font-size: 1.1em;
    margin: 10px 0;
}

a {
    color: #ffe066;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.2s;
}

.potato-link {
    text-decoration:underline;
}

a:hover {
    color: #fff;
}

.logo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    margin-bottom: 12px;
    border: 2px solid #ffe066;
}

.highlight {
    background: linear-gradient(90deg, #ffe066 0%, #ffb347 100%);
    color: #222;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.desc {
    font-size: 1em;
    color: #ffe066;
    margin-bottom: 10px;
}

.price {
    font-size: 1.3em;
    font-weight: bold;
    color: #ffb347;
    margin-bottom: 16px;
}

.details {
    font-size: 1em;
    margin-top: 10px;
    text-align: left;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}
.details .label {
    font-weight: 600;
    color: #ffe066;
    margin-right: 6px;
}

@media (max-width: 600px) {
    .info {
        width: 75vw;
        padding: 12px 4vw;
        border-radius: 16px;
    }
    h1 {
        font-size: 1.3em;
    }
    .logo img {
        width: 56px;
        height: 56px;
    }
    .highlight {
        font-size: 1em;
        padding: 4px 8px;
    }
    .price {
        font-size: 1.1em;
    }
    .details {
        font-size: 0.95em;
        padding: 8px;
    }
}

@keyframes pop-in {
    0% { transform: scale(0.7); opacity: 0; }
    80% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}
