body {
    background: linear-gradient(135deg, #ff00cc 0%, #3333ff 100%);
    color: #fff600;
    font-family: 'Comic Sans MS', 'Papyrus', cursive, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 800px;
    margin: 40px auto;
    background: rgba(0,255,234,0.92);
    border: 6px double #ff00cc;
    border-radius: 18px;
    box-shadow: 0 0 40px 10px #ff00cc, 0 0 20px 5px #00ffea inset;
    padding: 36px 28px;
    filter: saturate(2.5) contrast(1.2);
}

.agartha-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 2.5em 0 1.5em 0;
    background: rgba(255,255,255,0.18);
    border-radius: 12px;
    padding: 22px 18px 10px 18px;
    box-shadow: 0 2px 12px #00ffea33 inset;
}
.agartha-form label {
    font-family: 'Comic Sans MS', 'Papyrus', cursive, sans-serif;
    color: #3333ff;
    font-size: 1.08em;
    margin-bottom: 4px;
    margin-top: 6px;
}
.agartha-form textarea {
    resize: none;
    border: 2px solid #ff00cc;
    border-radius: 7px;
    padding: 8px 10px;
    font-size: 1.08em;
    font-family: 'Comic Sans MS', 'Papyrus', cursive, sans-serif;
    background: #fffbe6;
    color: #22223b;
    box-shadow: 0 1px 6px #ff00cc22 inset;
    transition: border 0.2s, box-shadow 0.2s;
}
.agartha-form textarea:focus {
    border: 2px solid #3333ff;
    box-shadow: 0 0 8px #00ffea99;
    outline: none;
}
.agartha-form .cta {
    margin-top: 18px;
    width: 100%;
}
h1 {
    font-size: 3.2rem;
    margin-bottom: 0.5em;
    color: #ff00cc;
    text-shadow: 2px 2px 0 #fff600, 0 0 10px #3333ff;
    text-align: center;
    letter-spacing: 2px;
}
h2 {
    color: #3333ff;
    margin-top: 2em;
    text-shadow: 1px 1px 0 #ff00cc;
}
.cta {
    display: block;
    margin: 2em auto 0 auto;
    padding: 1.2em 2.5em;
    background: #fff600;
    color: #ff00cc;
    border: 4px dashed #3333ff;
    border-radius: 12px;
    font-size: 1.4em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 16px #00ffea, 0 0 8px #ff00cc inset;
    transition: background 0.2s, color 0.2s;
    font-family: 'Comic Sans MS', cursive;
}
.cta:hover {
    background: #ff00cc;
    color: #fff600;
    border-color: #fff600;
}
.lore {
    margin-top: 2em;
    font-size: 1.15em;
    line-height: 1.8;
    color: #3333ff;
    background: #fff600;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 0 10px #ff00cc inset;
}
.footer {
    text-align: center;
    margin-top: 3em;
    color: #ff00cc;
    font-size: 1.05em;
    text-shadow: 1px 1px 0 #fff600;
}
