body {
    background: #181818;
    color: #ededed;
    font-family: 'Montserrat', Arial, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.fade-in-page {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(.47,1.64,.41,.8);
}
.fade-in-page.loaded {
    opacity: 1;
}

.drop-fade {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 1s cubic-bezier(.47,1.64,.41,.8), 
                transform 1s cubic-bezier(.47,1.64,.41,.8);
}

.drop-fade.loaded {
    opacity: 1;
    transform: translateY(0);
}

.logo-microsite {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    margin-top: 32px;
    justify-content: center;
}

.container {
    max-width: 470px;
    margin: 32px auto 0 auto;
    flex: 1 1 auto;
}

.card {
    background: #222;
    border-radius: 18px;
    border: 2.5px solid #d94636;
    box-shadow: 0 4px 28px #000b;
    margin-bottom: 42px;
}

.card-title {
    color: #d94636;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 1.7rem;
    text-align: center;
}

label {
    font-weight: 600;
    color: #ededed;
}

.form-control {
    background: #222325;
    color: #fff;
    border: 1.5px solid #393939;
    font-weight: 500;
}

.form-control:focus {
    border-color: #d94636;
    box-shadow: 0 0 0 0.1rem #d9463640;
}

.btn-primary {
    background-color: #d94636;
    border: none;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(217,70,54,0.15);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #b53629;
    color: #fff;
}

.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
    background-color: #a52c1b !important;
    border-color: #a52c1b !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(217,70,54,0.15);
}

#result {
    font-size: 1.18em;
    background: #191919;
    border-radius: 10px;
    padding: 1.15em 1em 0.85em 1em;
    margin-top: 2.1em;
    min-height: 56px;
    color: #fff;
    text-align: center;
    box-shadow: 0 2px 11px #0005;
    border: 1.5px solid #393939;
    letter-spacing: 0.03em;
}

.microsite-footer {
    color: #aaa;
    text-align: center;
    font-size: 0.96em;
    margin: 22px 0 10px 0;
}

@media (max-width: 600px) {
    .container { max-width: 97vw; }
    .logo-microsite { margin-top: 16px; }
    .card { border-radius: 12px; }
}