/* =========================================================
   Prompt Spark 
========================================================= */

body {
    background:
        url("assets/PinkPaint.png") top right / 320px no-repeat,
        url("assets/BluePaint.png") bottom left / 320px no-repeat,
        #f7f7f7;
}

/* Title */
.ps-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 25px;
}

/* Back Button */
.back-btn {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #444;
}

/* Tabs */
.ps-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.ps-tab {
    padding: 10px 18px;
    border-radius: 25px;
    border: none;
    background: #e8e8e8;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
}

/* Icons inside tabs */
.ps-tab {
    display: flex;
    align-items: center;
    gap: 6px;
}
.ps-tab {
    line-height: 1.2;
}

.ps-tab.active {
    background: #ffc6ec;
    font-weight: 600;
}

.ps-tab:hover {
    transform: translateY(-2px);
}

/* Prompt Card */
.ps-card {
    background: linear-gradient(to bottom right, #ffffff, #f8f6ff, #fbeaff);
    padding: 28px 26px;
    border-radius: 30px;
    font-size: 1.3rem;
    line-height: 1.55;
    min-height: 160px;

    border: 3px solid #000;
    box-shadow: 0 4px 0 #000;

    max-width: 650px;
    margin: 0 auto 25px;
    transition: opacity 0.3s ease;
}

/* Inspire Button */
.ps-inspire {
    padding: 14px 32px;
    background: #ff84cb;
    color: #fff;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 0 #c93485;
    transition: transform 0.15s ease;
}

.ps-inspire:hover {
    transform: translateY(-4px);
}

.ps-inspire:active {
    transform: translateY(2px);
}

.dark-mode-btn {
  background: #fff;
  color: #000;
}

body.dark-mode .dark-mode-btn {
  background: #444;
  color: #fff;
}
