body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}
.mint-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(to bottom, #2a2a2a, #1c1c1c);
    border: 1px solid #444;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    text-align: center;
}
h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    color: #00ffff;
    text-shadow: 2px 2px 4px #000000;
    margin-bottom: 2rem;
}
.mint-image-container {
    margin-bottom: 2rem;
}
.mint-image {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    border: 3px solid #555;
}
.info-display {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}
.info-box {
    background: #1c1c1c;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
}
.info-box .label {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0.5rem;
}
.info-box .value {
    font-size: 1.5rem;
    font-weight: 600;
}
.rect-button {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    background-color: #555;
    color: #fff;
    border: 2px solid #000;
    border-radius: 5px;
    padding: 1rem;
    cursor: pointer;
    box-shadow: 0 3px #333;
    width: 100%;
}
.rect-button:disabled {
    background-color: #333;
    cursor: not-allowed;
}
.rect-button:active {
    box-shadow: 0 1px #333;
    transform: translateY(2px);
}
.led-text {
    background-color: #1a1a1a;
    color: #00ffff;
    border: 1px solid #00ffff;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Digital-7 Mono', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1rem;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}
.modal-content {
    background: linear-gradient(to bottom, #2a2a2a, #1c1c1c);
    margin: 15% auto;
    padding: 2.5rem;
    border: 1px solid #444;
    width: 90%;
    max-width: 400px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}
.modal-content h2 {
    font-family: 'Press Start 2P', cursive;
    margin-bottom: 1rem;
    color: #00ffff;
}
.modal-content input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
}
