/* ============================================================
   PUTE PDF to PNG Tool Styles
   Full conversion settings, page grid, visual states
   ============================================================ */

/* --- Short Description --- */
.putppng-short-desc {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    margin: 0 0 20px;
    line-height: 1.6;
}

/* --- Section Title & Hint --- */
.putppng-section-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.putppng-section-hint {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: #9ca3af;
    margin: 0 0 20px;
}

/* ============================================================
   CONVERSION SETTINGS
   ============================================================ */
.putppng-settings {
    margin-bottom: 24px;
}

.putppng-settings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.putppng-setting-group {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1.5px solid #a7f3d0;
    border-radius: 14px;
    padding: 20px;
}

.putppng-setting-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
}

.putppng-setting-label svg {
    color: #10b981;
}

/* --- DPI Options --- */
.putppng-dpi-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.putppng-dpi-btn {
    flex: 1;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 8px;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.putppng-dpi-btn:hover {
    border-color: #10b981;
    background: #f0fdf4;
}

.putppng-dpi-btn:focus-visible {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

.putppng-dpi-active {
    border-color: #10b981 !important;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%) !important;
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.15);
}

.putppng-dpi-value {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.putppng-dpi-active .putppng-dpi-value {
    color: #10b981;
}

.putppng-dpi-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* --- Custom DPI --- */
.putppng-custom-dpi-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    animation: putFadeIn 0.2s ease;
}

.putppng-custom-dpi-input {
    width: 80px;
    padding: 8px 10px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    color: #1a1a2e;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
    -moz-appearance: textfield;
}

.putppng-custom-dpi-input::-webkit-outer-spin-button,
.putppng-custom-dpi-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.putppng-custom-dpi-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.putppng-custom-dpi-suffix {
    font-size: 0.82rem;
    font-weight: 700;
    color: #6b7280;
}

/* ============================================================
   LOADING SKELETON
   ============================================================ */
.putppng-loading-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.putppng-skeleton-card {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 4px;
    text-align: center;
}

.putppng-skeleton-thumb {
    width: 100%;
    aspect-ratio: 0.707;
    background: linear-gradient(110deg, #f0f0f0 30%, #fafafa 50%, #f0f0f0 70%);
    background-size: 200% 100%;
    border-radius: 8px;
    animation: putppngShimmer 1.5s infinite linear;
    margin-bottom: 8px;
}

.putppng-skeleton-text {
    height: 12px;
    width: 50%;
    margin: 0 auto 6px;
    background: linear-gradient(110deg, #f0f0f0 30%, #fafafa 50%, #f0f0f0 70%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: putppngShimmer 1.5s infinite linear;
}

@keyframes putppngShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================================
   SELECTION TOOLBAR
   ============================================================ */
.putppng-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1.5px solid #a7f3d0;
    border-radius: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    animation: putFadeIn 0.3s ease;
}

.putppng-toolbar-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.putppng-toolbar-group + .putppng-toolbar-group {
    padding-left: 10px;
    border-left: 1.5px solid #a7f3d0;
}

.putppng-tb-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: inherit;
    color: #4b5563;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.putppng-tb-btn svg {
    flex-shrink: 0;
}

.putppng-tb-btn:hover {
    border-color: #10b981;
    color: #10b981;
    background: #f0fdf4;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
}

.putppng-tb-btn:active {
    transform: scale(0.96);
}

.putppng-tb-btn:focus-visible {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

.putppng-tb-btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border-color: #10b981;
}

.putppng-tb-btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff;
    border-color: #059669;
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.3);
}

.putppng-toolbar-range {
    flex-wrap: wrap;
}

.putppng-tb-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.putppng-tb-input {
    width: 60px;
    padding: 6px 8px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    color: #1a1a2e;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
    -moz-appearance: textfield;
}

.putppng-tb-input::-webkit-outer-spin-button,
.putppng-tb-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.putppng-tb-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ============================================================
   PAGE GRID
   ============================================================ */
.putppng-page-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    width: 100%;
    margin-bottom: 16px;
}

/* --- Page Card --- */
.putppng-page-card {
    background: #ffffff;
    border: 1.5px solid #a7f3d0;
    border-radius: 12px;
    padding: 4px;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.putppng-page-card:hover {
    border-color: #10b981;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12);
    transform: translateY(-2px);
}

.putppng-page-card:focus-visible {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

/* --- Thumb Wrap --- */
.putppng-page-thumb-wrap {
    width: 100%;
    aspect-ratio: 0.707;
    background: #f0f2f5;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 6px;
    border: 1px solid #e5e7eb;
}

.putppng-page-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.putppng-page-number {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 0.68rem;
    font-weight: 800;
    color: #ffffff;
    background: rgba(16, 185, 129, 0.85);
    padding: 2px 7px;
    border-radius: 6px;
    line-height: 1.2;
}

.putppng-page-checkbox {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 5;
}

.putppng-page-checkbox svg {
    display: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.putppng-page-checkbox.putppng-checked {
    background: #10b981;
    border-color: #10b981;
    animation: putppngCheckPop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.putppng-page-checkbox.putppng-checked svg {
    display: block;
}

@keyframes putppngCheckPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.putppng-page-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
    min-height: 24px;
    justify-content: center;
}

.putppng-page-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Selected Page --- */
.putppng-page-selected {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2) !important;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.putppng-page-selected:hover {
    border-color: #059669 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3), 0 4px 12px rgba(16, 185, 129, 0.15) !important;
}

.putppng-page-selected .putppng-page-number {
    background: rgba(16, 185, 129, 0.85);
}

/* ============================================================
   SELECTION SUMMARY
   ============================================================ */
.putppng-selection-summary {
    margin-bottom: 20px;
    animation: putFadeIn 0.3s ease;
}

.putppng-summary-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1.5px solid #a7f3d0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #065f46;
    flex-wrap: wrap;
}

.putppng-summary-icon {
    display: flex;
    align-items: center;
}

.putppng-summary-estimate {
    color: #6b7280;
    font-weight: 500;
}

/* ============================================================
   LOAD MORE
   ============================================================ */
.putppng-load-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
}

.putppng-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.putppng-page-range {
    font-size: 0.82rem;
    font-weight: 500;
    color: #9ca3af;
}

/* ============================================================
   FILE CARD
   ============================================================ */
.putppng-file-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1.5px solid #a7f3d0;
    border-radius: 14px;
    margin-bottom: 28px;
    animation: putFadeIn 0.4s ease;
}

.putppng-file-card-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex: 1;
}

.putppng-file-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.putppng-file-icon .dashicons {
    font-size: 1.5rem;
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.putppng-file-details {
    flex: 1;
    min-width: 0;
}

.putppng-file-name {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.putppng-file-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
}

.putppng-meta-dot {
    color: #d1d5db;
}

.putppng-file-card-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.putppng-btn-change,
.putppng-btn-remove {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.putppng-btn-change {
    background: rgba(59, 130, 246, 0.08);
    border: 1.5px solid rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.putppng-btn-change:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
}

.putppng-btn-remove {
    background: rgba(239, 68, 68, 0.08);
    border: 1.5px solid rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.putppng-btn-remove:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    transform: scale(1.05);
}

.putppng-btn-change .dashicons,
.putppng-btn-remove .dashicons {
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
}

/* ============================================================
   ACTION BUTTONS
   ============================================================ */
.putppng-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 28px;
}

.putppng-convert-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.putppng-convert-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.putppng-convert-btn:hover:not(:disabled)::after {
    left: 100%;
}

.putppng-convert-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(16, 185, 129, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.putppng-convert-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.putppng-convert-btn .dashicons {
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
}

/* ============================================================
   TOAST
   ============================================================ */
.putppng-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #1f2937;
    border: 1.5px solid #374151;
    border-radius: 14px;
    color: #f3f4f6;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 100001;
    animation: putFadeIn 0.3s ease;
}

.putppng-toast-icon {
    display: flex;
    align-items: center;
}

/* ============================================================
   PRIVACY REMINDER
   ============================================================ */
.putppng-privacy-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1.5px solid #bae6fd;
    border-radius: 12px;
    color: #0369a1;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 16px;
}

.putppng-privacy-reminder .dashicons {
    font-size: 1rem;
    width: 18px;
    height: 18px;
}

/* ============================================================
   RESPONSIVE — Tablet: 3 cols
   ============================================================ */
@media (max-width: 1024px) {
    .putppng-loading-grid,
    .putppng-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .putppng-settings-grid {
        grid-template-columns: 1fr;
    }

    .putppng-toolbar {
        gap: 8px;
    }

    .putppng-toolbar-group {
        gap: 4px;
    }

    .putppng-toolbar-group + .putppng-toolbar-group {
        padding-left: 8px;
    }

    .putppng-tb-btn {
        padding: 6px 10px;
        font-size: 0.74rem;
    }

    .putppng-toolbar-range {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   RESPONSIVE — Mobile: 2 cols
   ============================================================ */
@media (max-width: 768px) {
    .putppng-loading-grid,
    .putppng-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .putppng-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
    }

    .putppng-toolbar-group {
        justify-content: center;
    }

    .putppng-toolbar-group + .putppng-toolbar-group {
        padding-left: 0;
        border-left: none;
        padding-top: 8px;
        border-top: 1.5px solid #a7f3d0;
    }

    .putppng-toolbar-range {
        flex-wrap: wrap;
        justify-content: center;
    }

    .putppng-dpi-options {
        flex-wrap: wrap;
    }

    .putppng-dpi-btn {
        min-width: 60px;
    }

    .putppng-file-card {
        flex-direction: column;
        align-items: stretch;
    }

    .putppng-file-card-left {
        justify-content: center;
    }

    .putppng-file-card-right {
        justify-content: center;
    }

    .putppng-actions {
        flex-direction: column;
    }

    .putppng-convert-btn {
        width: 100%;
        justify-content: center;
    }

    .putppng-summary-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   DARK MODE
   ============================================================ */
@media (prefers-color-scheme: dark) {
    .putppng-short-desc {
        color: var(--st-text-light, #9ca3af);
    }

    .putppng-section-title {
        color: var(--st-white, #f3f4f6);
    }

    .putppng-section-hint {
        color: var(--st-text-light, #6b7280);
    }

    /* Settings */
    .putppng-setting-group {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        border-color: var(--st-border, #374151);
    }

    .putppng-setting-label {
        color: var(--st-white, #f3f4f6);
    }

    .putppng-dpi-btn {
        background: #374151;
        border-color: #4b5563;
    }

    .putppng-dpi-btn:hover {
        background: #1f2937;
    }

    .putppng-dpi-active {
        background: linear-gradient(135deg, #1f2937 0%, #064e3b 100%) !important;
        border-color: var(--st-success, #10b981) !important;
    }

    .putppng-dpi-value {
        color: var(--st-white, #f3f4f6);
    }

    .putppng-dpi-active .putppng-dpi-value {
        color: var(--st-success, #10b981);
    }

    .putppng-custom-dpi-input {
        background: #111827;
        border-color: #4b5563;
        color: var(--st-white, #f3f4f6);
    }

    /* Skeleton */
    .putppng-skeleton-card {
        background: #1f2937;
        border-color: var(--st-border, #374151);
    }

    .putppng-skeleton-thumb,
    .putppng-skeleton-text {
        background: linear-gradient(110deg, #374151 30%, #4b5563 50%, #374151 70%);
        background-size: 200% 100%;
    }

    /* Toolbar */
    .putppng-toolbar {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        border-color: var(--st-border, #374151);
    }

    .putppng-toolbar-group + .putppng-toolbar-group {
        border-left-color: var(--st-border, #374151);
    }

    .putppng-tb-btn {
        background: #374151;
        border-color: #4b5563;
        color: var(--st-text, #d1d5db);
    }

    .putppng-tb-btn:hover {
        border-color: var(--st-success, #10b981);
        color: var(--st-success, #10b981);
        background: #1f2937;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
    }

    .putppng-tb-label {
        color: var(--st-text-light, #9ca3af);
    }

    .putppng-tb-input {
        background: #111827;
        border-color: #4b5563;
        color: var(--st-white, #f3f4f6);
    }

    .putppng-tb-input:focus {
        border-color: var(--st-success, #10b981);
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    }

    /* Page Card */
    .putppng-page-card {
        background: #1f2937;
        border-color: var(--st-border, #374151);
    }

    .putppng-page-card:hover {
        border-color: var(--st-success, #10b981);
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
    }

    .putppng-page-thumb-wrap {
        background: #111827;
        border-color: var(--st-border, #374151);
    }

    .putppng-page-label {
        color: var(--st-text-light, #9ca3af);
    }

    .putppng-page-selected {
        border-color: var(--st-success, #10b981) !important;
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25) !important;
        background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
    }

    .putppng-page-selected .putppng-page-number {
        background: rgba(16, 185, 129, 0.9);
    }

    /* Selection Summary */
    .putppng-summary-inner {
        background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
        border-color: #047857;
        color: #a7f3d0;
    }

    .putppng-summary-estimate {
        color: #6ee7b7;
    }

    /* File Card */
    .putppng-file-card {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        border-color: var(--st-border, #374151);
    }

    .putppng-file-name {
        color: var(--st-white, #f3f4f6);
    }

    .putppng-file-meta {
        color: var(--st-text-light, #9ca3af);
    }

    .putppng-btn-change {
        background: rgba(59, 130, 246, 0.15);
        border-color: rgba(59, 130, 246, 0.25);
        color: #60a5fa;
    }

    .putppng-btn-remove {
        background: rgba(239, 68, 68, 0.15);
        border-color: rgba(239, 68, 68, 0.25);
        color: #f87171;
    }

    /* Load More */
    .putppng-page-range {
        color: var(--st-text-light, #6b7280);
    }

    /* Toast */
    .putppng-toast {
        background: #374151;
        border-color: #4b5563;
    }

    /* Privacy */
    .putppng-privacy-reminder {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        border-color: #334155;
        color: #94a3b8;
    }
}
