body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #0a1a33, #000000);
    color: #f2f2f2;
}

/* GOLD HEADER BAR */
.cwc-header {
    width: 100%;
    background: #0a1a33;
    border-bottom: 3px solid #bfa76f;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.header-seal {
    width: 48px;
    opacity: 0.85;
}

.header-text .title {
    font-size: 1.2rem;
    color: #e6d28c;
    font-weight: bold;
}

.header-text .subtitle {
    font-size: 0.85rem;
    color: #d4c48a;
    margin-top: 2px;
}

.cwc-container {
    max-width: 480px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(0,0,0,0.45);
    border: 1px solid #bfa76f;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 22px rgba(191, 167, 111, 0.18);
}

/* WATERMARK BACKGROUND */
.watermark-bg {
    background-image: url("watermark.svg");
    background-repeat: no-repeat;
    background-position: center 60px;
    background-size: 320px;
}

h1 {
    margin-top: 0;
    color: #e6d28c;
}

.subtitle {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.cwc-form {
    text-align: left;
}

label {
    display: block;
    margin-top: 12px;
    margin-bottom: 4px;
    color: #e6d28c;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bfa76f;
    border-radius: 4px;
    background: #111;
    color: #fff;
}

.checkbox {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.submit-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: #bfa76f;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

.submit-btn:hover {
    background: #d6c48a;
}