/* Umarell Styles */
* {
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
}

body {
    background: #222;
    color: #111;
    margin: 0;
    text-align: center;
    overflow-x: hidden;
}

.stripe-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: repeating-linear-gradient(45deg, #ffcc00, #ffcc00 40px, #222 40px, #222 80px);
    opacity: 0.8;
}

.container-box {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    padding: 10px;
    border: 10px solid #ffcc00;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.header {
    border-bottom: 5px dashed #000;
    padding: 20px;
    margin-bottom: 20px;
}

h1.blink-text {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    margin: 0;
    color: #cc0000;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 20px red;
    }
}

.form-container {
    padding: 20px;
}

.form-container h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: #333;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

.input-line {
    text-align: left;
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

input,
select {
    width: 100%;
    border: 3px solid #666;
    padding: 10px;
    font-weight: bold;
    background: #f4f4f4;
    color: #000;
    font-family: monospace;
    font-size: 1.2rem;
}

input:focus,
select:focus {
    background: #fffcf0;
    border-color: #ffcc00;
    outline: none;
}

.construct-btn {
    width: 100%;
    padding: 20px;
    background: #000;
    color: #ffcc00;
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.2s;
    border-bottom: 8px solid #333;
}

.construct-btn:hover {
    background: #222;
    margin-top: 22px;
    border-bottom: 6px solid #111;
}

.construct-btn:active {
    margin-top: 28px;
    border-bottom: 0px solid #111;
}

.overlay,
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay {
    background: rgba(255, 204, 0, 0.9);
}

.modal {
    background: rgba(0, 0, 0, 0.9);
}

.hidden {
    display: none !important;
}

.spinner {
    font-size: 6rem;
    animation: digging 1s infinite alternate;
}

@keyframes digging {
    0% {
        transform: rotate(-20deg) translateY(0);
    }

    100% {
        transform: rotate(20deg) translateY(20px);
    }
}

#loading-text {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    margin-top: 20px;
    color: #000;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border: 10px solid #000;
    max-width: 600px;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
    position: relative;
}

.tape-bg::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 150px;
    height: 30px;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(-45deg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.download-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #cc0000;
    color: #fff;
    font-family: 'Anton', sans-serif;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 20px 0;
    border: 4px solid #fff;
    outline: 2px solid #cc0000;
}

#close-modal {
    padding: 15px 20px;
    border: 2px solid #000;
    background: transparent;
    font-weight: bold;
    cursor: pointer;
}

#close-modal:hover {
    background: #eee;
}