/* ========= General Styling ========= */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* ========= Mint Container ========= */
.mint-container {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2rem 2.5rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
}

h1 {
    font-size: 2.75rem;
    color: #00aaff; /* L-lon l-zr9 dial l-logo */
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.description {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

/* ========= Buttons ========= */
.cta-button {
    background-color: #00aaff;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.2);
}

.cta-button:hover:not(:disabled) {
    background-color: #0088cc;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 170, 255, 0.3);
}

.cta-button:disabled {
    background-color: #555;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ========= Info Boxes ========= */
.info-box {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 1.25rem;
    margin: 2rem 0;
    display: flex;
    justify-content: space-around;
    font-size: 1.1rem;
}

.info-box p {
    margin: 0;
    font-weight: 500;
}

.info-box span {
    color: #00aaff;
    font-weight: 700;
}

.info-box-secondary {
    font-size: 1rem;
    color: #aaa;
    margin-top: -1rem;
    margin-bottom: 2rem;
}
.info-box-secondary span {
    color: #fff;
    font-weight: 600;
}


/* ========= Mint Controls ========= */
.mint-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mint-controls label {
    font-size: 1.1rem;
    color: #aaa;
    font-weight: 500;
}

.mint-controls input[type="number"] {
    width: 80px;
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid #444;
    background-color: #333;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
}

/* Kankhbiw l-arrows dial l-input */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

#mintButton {
    flex-grow: 1; /* Kayakhod l-blasa li bqat */
}

/* ========= Status Message ========= */
#statusMessage {
    font-size: 1rem;
    color: #ffc107; /* L-lon Sfer (Warning/Processing) */
    height: 20px;
    line-height: 20px;
    margin-top: 1rem;
    font-weight: 500;
}

/* ========= Utility ========= */
.hidden {
    display: none;
}