
@font-face {
    font-family: 'Marlen';
    font-style: normal;
    font-weight: 400;    
    src: local(''), url('Marlen The Ponderosa Bold.woff') format('woff');
}

html {
    background-color: #100d16;
    color: white;
}

#app-container {
    text-align: center;
}

#app-title {
    font-family: 'Marlen', Courier, monospace;
    font-size: 60px;
    margin-block: 10px;
    color: #ff3e3e;
}

#demon-image {
    width: 200px;
    animation: pulseOpacity 5s infinite ease-in-out;
}

@keyframes pulseOpacity {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
}

.styled-text {
    font-family: 'Marlen', Courier, monospace;
    font-size: 30px;
}

button {
    font-family: 'Marlen', serif;
    font-size: 1.2rem;
    color: #9b2222;
    background: linear-gradient(to bottom, #1a0000, #330000);
    border: 2px solid #800000;
    padding: 12px 125px;
    border-radius: 8px;
    box-shadow: 0 0 10px #900000, inset 0 0 5px #ff0000;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

button:hover {
    background: #2d0000;
    color: #fff0f0;
    box-shadow: 0 0 20px #ff0000, inset 0 0 10px #ff4d4d;
    transform: scale(1.05);
}

.form-wrapper {
    background-color: #1a1a1a;
    border: 1px solid #800000;
    border-radius: 8px;
    box-shadow: 0 0 10px #900000;
    width: 50%;
    max-width: 500px;
    margin: auto;
    padding-bottom: 25px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 300px;
    margin: 10px auto;
    padding: 15px;
}

.form-row label {
    width: 150px;
    text-align: left;
    font-family: 'Marlen', serif;
}

.form-row label::first-letter {
    color: #ff3e3e;
}

.form-row input {
    width: 200px;
    padding: 10px;
    background-color: #330000;
    color: #fff;
    border: 1px solid #900000;
    border-radius: 4px;
}

.form-row select {
    width: 225px;
    padding: 10px;
    background-color: #330000;
    color: #fff;
    border: 1px solid #900000;
    border-radius: 4px;
    font-family: 'YourDemonicFont', serif;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#step-4-questions {
    background-color: #1a1a1a;
    border: 1px solid #800000;
    border-radius: 8px;
    box-shadow: 0 0 10px #900000;
    width: 70%;
    max-width: 500px;
    margin: 30px auto;
    padding: 25px 10px;
}

.question-block p {
    font-family: monospace, serif;
    font-size: 1.5rem;
    width: 80%;
    margin: auto;
    text-transform: uppercase;
}

.question-block label {
    font-family: monospace, serif;
    font-size: 1rem;
        display: table;
    text-transform: uppercase;
}

.question-block input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid crimson;
    border-radius: 50%;
    background-color: black;
    cursor: pointer;
    margin: 0 10px;
    position: relative;
}

.question-block input[type="radio"]:checked::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-color: crimson;
    border-radius: 50%;
    position: absolute;
    top: -1px;
    left: -1px;
}

#nextBtn, #backBtn {
    padding: 8px 50px !important;
}

#submit4Btn {
    margin: 10px;
}

#contract {
    background-color: #1a1a1a;
    border: 1px solid #800000;
    border-radius: 8px;
    box-shadow: 0 0 10px #900000;
    width: 70%;
    margin: auto;
    padding-bottom: 25px;
}

#contract p {
    padding: 20px;
    text-align: justify;
    font-size: 20px;
    line-height: 25px;
    margin-inline: 50px;
}

#contract p::first-letter {
    color: gold;
    font-size: 100px;
    font-family: 'Marlen', serif;
}

#contractheckbox {
    display: none;
}

input[type="checkbox"] {
    display: none;
}

.checkmark {
    display: inline-block;
    width: 100px;
    height: 100px;
    background-color: #222;
    border: 2px solid crimson;
    margin-right: 10px;
    vertical-align: middle;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

input[type="checkbox"]:checked + .checkmark {
    background-image: url('fingerprint.png');
}

#biddingContainerWrapper {
    background-color: #1a1a1a;
    border: 1px solid #800000;
    border-radius: 8px;
    box-shadow: 0 0 10px #900000;
    width: 90%;
    margin: auto;
    padding-bottom: 25px;
}

#biddingContainer {
    padding-bottom: 30px;
}

#biddingContainer div {
    display: flex;
    justify-content: space-between;
}

#biddingContainer div h3 {
    color: gold;
    font-size: 20px;
    padding: 0px 30px;
    margin: 0px;
    font-family: 'monospace', serif;
}

#biddingContainer div p {
    color: Red;
    font-size: 18px;
    padding: 0px 30px;
    margin: 0px;
    font-family: monospace, serif;
}

#message {
    color: gold;
    font-size: 25px;
    max-width: 600px;
    margin: auto;
    padding: 25px;
    font-family: 'Marlen', serif;
}