* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
body {
    background-color: #fafafa;
    color: #111;
    padding: 2rem;
}
.container {
    max-width: 600px;
    margin: 0 auto;
}
header {
    margin-bottom: 2rem;
}
h1 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.05rem;
    margin-bottom: 0.25rem;
}
p {
    color: #666;
    font-size: 0.9rem;
}
a {
   text-decoration: none;
   color: unset;
}
.input-group {
    margin-bottom: 1.25rem;
}
label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    margin-bottom: 0.5rem;
    color: #444;
}
.input-group:has(:required) label::after {
    content: "*";
    font-weight: bold;
    color: #8B0000;
}
textarea {
    width: 100%;
    height: 120px;
    padding: 0.75rem;
    border: 1px solid #eaeaea;
    border-radius: 2px;
    font-family: monospace;
    font-size: 0.85rem;
    background-color: #fff;
    resize: vertical;
    outline: none;
}
textarea:hover {
    filter: brightness(99%)
}
textarea:focus {
    border-color: #000;
    filter: brightness(99%);
}
button {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 0.75rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
}
button:active {
    background-color: #333;
    border-color: #333;
}
#output-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 4px;
    text-align: center;
}
#output-box h3 {
    font-size: 1rem;
    color: #166534;
    margin-bottom: 0.5rem;
}
.link2 {
    display: inline-block;
    color: #15803d;
    font-weight: 600;
    text-decoration: underline;
    font-size: 0.9rem;
}
.hidden {
    display: none;
}
.sticky-contact {
    font-family: "Trebuchet MS" !important;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 12px;
    background: #000000;
    color: #ffffff;
    border-radius: 4px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}
.sticky-contact:after { 
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    height: 100%;
    right: -15px;
    background: #000000;
    transform: skew(20deg);
    transform-origin: bottom right;
    z-index: -1;
}
.sticky-text {
    font-family: "Trebuchet MS" !important;
    display: inline-block;
    position: relative;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}
.sticky-text:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: transform 0.2s ease-out;
}
.sticky-text:hover:after {
    transform: scaleX(1);
}
.sticky-text:hover:after {
    transform-origin: bottom left;
}
