/* -----------------------------------------------------------
   GLOBAL WRAPPER
----------------------------------------------------------- */
.indexnow-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px 20px 60px;
    font-family: 'Inter', sans-serif;
    color: #111;
}

/* -----------------------------------------------------------
   GRID
----------------------------------------------------------- */
.indexnow-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

@media (max-width: 960px) {
    .indexnow-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------------------------------
   HEADINGS & TEXT
----------------------------------------------------------- */
.indexnow-wrapper h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.indexnow-wrapper .intro {
    font-size: 18px;
    opacity: 0.8;
}

/* -----------------------------------------------------------
   FORM ELEMENTS — iOS style
----------------------------------------------------------- */
.indexnow-main label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #111;
}

.indexnow-input,
.indexnow-textarea {
    width: 100%;
    border: 1px solid #d8d8e0;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 17px;
    transition: all .25s ease;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.indexnow-input:focus,
.indexnow-textarea:focus {
    border-color: #7d5fff;
    box-shadow: 0 0 0 4px rgba(125,95,255,0.15);
    outline: none;
}

.indexnow-textarea {
    min-height: 170px;
    resize: vertical;
}

/* -----------------------------------------------------------
   IMPORT FILE BUTTON
----------------------------------------------------------- */
.btn-file {
    display: inline-block;
    background: #f3f3f7;
    padding: 12px 20px;
    border-radius: 14px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: .25s;
    color: #222;
}

.btn-file:hover {
    background: #e8e8f0;
}

/* -----------------------------------------------------------
   KEY ROW
----------------------------------------------------------- */
.key-row {
    display: flex;
    gap: 12px;
    margin: 12px 0 18px;
    flex-wrap: wrap;
}

.key-row button {
    background: #f3f3f7;
    padding: 12px 20px;
    border-radius: 14px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: .25s ease;
}

.key-row button:hover {
    background: #e8e8f0;
}

.key-row input {
    flex: 1;
}

/* -----------------------------------------------------------
   SEND BUTTON
----------------------------------------------------------- */
.indexnow-send-btn,
#indexnow-send {
    display: inline-block;
    background: #ff2d75;
    color: #fff;
    padding: 16px 28px;
    border-radius: 18px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    margin-top: 18px;
    transition: 0.25s ease;
    box-shadow: 0 8px 18px rgba(255,45,117,0.3);
}

.indexnow-send-btn:hover,
#indexnow-send:hover {
    background: #ff1b65;
    box-shadow: 0 12px 26px rgba(255,45,117,0.38);
}

#indexnow-send:active {
    transform: scale(.96);
}

/* -----------------------------------------------------------
   RESULT BOX
----------------------------------------------------------- */
#indexnow-result {
    margin-top: 26px;
    background: #fafaff;
    padding: 20px 24px;
    border-radius: 18px;
    border: 1px solid #eee;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.indexnow-success {
    color: #2ecc71;
    font-weight: 700;
}

.indexnow-error {
    color: #e74c3c;
    font-weight: 700;
}

/* -----------------------------------------------------------
   SIDEBAR CARDS
----------------------------------------------------------- */
.indexnow-sidebar .card {
    background: #ffffff;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    margin-bottom: 22px;
}

.indexnow-sidebar .card h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
}

.indexnow-sidebar .card p,
.indexnow-sidebar .card li {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 8px;
}

/* -----------------------------------------------------------
   SPACING
----------------------------------------------------------- */
.indexnow-main section {
    margin-bottom: 30px;
}
