body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #1a1a1a;
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #00ff00;
    padding: 20px;
    background-color: #000000;
}

h1 {
    color: #00ff00;
}

.welcome {
    font-size: 1.1em;
    color: #ffcc00;
    margin-bottom: 20px;
}

#dumpster {
    cursor: pointer;
}

#dumpster:hover {
    transform: scale(1.05);
}

#result {
    margin-top: 20px;
    padding: 20px;
    background-color: #2a2a2a;
    border: 1px dashed #00ff00;
    border-radius: 5px;
    display: none;
}

#item-image {
    max-width: 200px;
    margin: 10px 0;
}

.item-name {
    font-family: "Impact", "Comic Sans MS", cursive;
    font-size: 1.2em;
    color: #ffcc00;
    margin: 5px 0;
    text-transform: uppercase;
}

.item-name::before {
    content: "✨🎉 ";
}

.item-name::after {
    content: " 🎉✨";
}

#item-quip {
    margin: 10px 0;
}

#item-count {
    font-size: 0.9em;
    color: #ffcc00;
    margin: 5px 0;
}

#item-rarity {
    font-size: 0.9em;
    color: #00ff00;
    margin: 10px 0;
}

#item-source {
    font-size: 0.8em;
    color: #ffcc00;
    margin: 5px 0;
}

#item-source a {
    color: #ffcc00;
    font-size: 0.9em;
    text-decoration: underline;
}

#item-source a:hover {
    color: #ccff00;
}

#item-credit {
    font-size: 0.8em;
    color: #00ff00;
    margin: 5px 0;
    font-style: italic;
}

.share-buttons button {
    margin: 5px;
    padding: 5px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    padding: 0;
}

.share-buttons button:hover {
    background-color: #0056b3;
}

.button-icon {
    width: 100%;
    height: 100%;
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
}

.share-buttons-secondary button {
    margin: 5px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: auto;
    height: auto;
}

.share-buttons-secondary button:hover {
    background-color: #0056b3;
}

#dive-again {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#dive-again:hover {
    background-color: #218838;
}

.hidden {
    display: none;
}

footer {
    margin-top: 20px;
    font-size: 0.8em;
    color: #ffcc00;
}

footer a {
    color: #00ff00;
    text-decoration: underline;
}

footer a:hover {
    color: #ccff00;
}

footer p:last-child {
    margin-top: 5px;
    font-size: 0.7em;
}