/* Netplay Media domain parking page styles */

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0d1117;
    color: #e8eaed;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background:
        radial-gradient(ellipse at top, rgba(56, 139, 253, 0.08), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(168, 85, 247, 0.06), transparent 60%),
        #0d1117;
}

.card {
    width: 100%;
    max-width: 560px;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 48px 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.brand {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: #8b949e;
    text-align: center;
    margin-bottom: 28px;
    font-weight: 600;
}

.domain-name {
    font-size: 38px;
    font-weight: 700;
    color: #f0f6fc;
    text-align: center;
    word-break: break-all;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 15px;
    color: #8b949e;
    text-align: center;
    margin-bottom: 36px;
    line-height: 1.6;
}

.banner {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 24px;
    text-align: center;
}
.banner-success {
    background: rgba(46, 160, 67, 0.15);
    border: 1px solid rgba(46, 160, 67, 0.4);
    color: #7ee787;
}
.banner-error {
    background: rgba(248, 81, 73, 0.12);
    border: 1px solid rgba(248, 81, 73, 0.4);
    color: #ff7b72;
}

.offer-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-title {
    font-size: 12px;
    font-weight: 700;
    color: #58a6ff;
    text-align: center;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
    padding-top: 8px;
    border-top: 1px solid #30363d;
    padding-top: 24px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 13px;
    color: #c9d1d9;
    font-weight: 500;
}

.field input,
.field textarea {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    color: #e8eaed;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: #58a6ff;
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.15);
}

.field textarea {
    resize: vertical;
    min-height: 90px;
}

.captcha-field label strong {
    color: #f0f6fc;
    font-weight: 700;
}

/* Honeypot — visually hidden but still in the DOM for bots */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.submit-btn {
    background: #238636;
    color: #fff;
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background-color 0.15s;
}
.submit-btn:hover { background: #2ea043; }
.submit-btn:active { background: #1f7a30; }

.footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #30363d;
    text-align: center;
    font-size: 12px;
    color: #6e7681;
}

@media (max-width: 480px) {
    .card { padding: 32px 24px; }
    .domain-name { font-size: 28px; }
}
