/*!
 * Paste App - IRC4Fun Theme
 * Matches site design system with blue gradient hero and clean cards
 */

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.paste-hero {
    position: relative;
    background: linear-gradient(135deg, #0076f9 0, #003f8a 100%);
    padding: 60px 0 50px;
    text-align: center;
    overflow: hidden;
}
.paste-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.08) 0, transparent 60%);
    pointer-events: none;
}
.paste-hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
}
.paste-hero h1 i {
    margin-right: 10px;
}
.paste-hero p {
    font-size: 15px;
    color: rgba(255,255,255,.75);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Breadcrumbs in hero */
.paste-breadcrumb {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: rgba(255,255,255,.75);
    margin-bottom: 12px;
}
.paste-breadcrumb a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    transition: color .2s;
}
.paste-breadcrumb a:hover {
    color: #fff;
}
.paste-breadcrumb span {
    margin: 0 8px;
}
.paste-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s;
    position: relative;
    z-index: 1;
}
.paste-back-btn:hover {
    background: rgba(255,255,255,.22);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.paste-section {
    padding: 50px 0;
}

/* ═══════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════ */
.paste-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,118,249,.06);
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    margin-bottom: 28px;
    overflow: hidden;
    position: relative;
}
.paste-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0076f9, #00c4ff, #0076f9);
}
.theme-dark .paste-card {
    background: #1a1e25;
    border-color: rgba(255,255,255,.06);
    box-shadow: 0 4px 24px rgba(0,0,0,.2);
}

.paste-card-header {
    padding: 24px 28px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.theme-dark .paste-card-header {
    border-bottom-color: rgba(255,255,255,.06);
}

.paste-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}
.theme-dark .paste-card-header h3 {
    color: #e4e7eb;
}

.paste-card-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}
.theme-dark .paste-card-header h4 {
    color: #e4e7eb;
}

.paste-meta {
    font-size: 14px;
    color: #6b7280;
}
.theme-dark .paste-meta {
    color: #8c929b;
}
.paste-meta i {
    margin-right: 4px;
}

.paste-card-body {
    padding: 28px;
}

/* Code display card */
.paste-card-body.paste-code-body {
    padding: 0;
    position: relative;
}

/* Centered card for password */
.paste-card.paste-centered {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════ */
.paste-form-group {
    margin-bottom: 20px;
}

.paste-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
}
.theme-dark .paste-form-group label {
    color: #e4e7eb;
}

.paste-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
    color: #1a1a2e;
    font-family: inherit;
}
.theme-dark .paste-form-control {
    background: #14171c;
    border-color: #3a3f4a;
    color: #e4e7eb;
}

.paste-form-control:focus {
    outline: none;
    border-color: #0076f9;
    box-shadow: 0 0 0 3px rgba(0,118,249,.1);
}
.theme-dark .paste-form-control:focus {
    border-color: #5aa5ff;
    box-shadow: 0 0 0 3px rgba(90,165,255,.1);
}

.paste-form-control::placeholder {
    color: #9ca3af;
}
.theme-dark .paste-form-control::placeholder {
    color: #6b7280;
}

textarea.paste-form-control {
    resize: vertical;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

select.paste-form-control {
    cursor: pointer;
}

.paste-form-help {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
    display: block;
}
.theme-dark .paste-form-help {
    color: #8c929b;
}

.paste-form-required {
    color: #ef4444;
    margin-left: 2px;
}

/* Icon in selects */
.paste-select-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 14px;
    pointer-events: none;
}
.theme-dark .paste-select-icon {
    color: #8c929b;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.paste-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 52px;
    padding:0 30px;
    background: linear-gradient(135deg, #0076f9, #0058c4);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s;
    letter-spacing: .3px;
}
.paste-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,118,249,.35);
    color: #fff;
}
.paste-btn-primary:active {
    transform: translateY(0);
}

.paste-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #1a1a2e;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    transition: all .2s;
    cursor: pointer;
}
.theme-dark .paste-btn {
    background: #14171c;
    border-color: #3a3f4a;
    color: #e4e7eb;
}

.paste-btn:hover {
    background: #f9fafb;
    border-color: #0076f9;
    color: #0076f9;
    text-decoration: none;
    transform: translateY(-1px);
}
.theme-dark .paste-btn:hover {
    background: #1a1e25;
    border-color: #5aa5ff;
    color: #5aa5ff;
}

.paste-btn:last-child {
    margin-bottom: 0;
}

.paste-btn-success {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}
.paste-btn-success:hover {
    background: #059669;
    border-color: #059669;
    color: #fff;
}

/* Copy button over code */
.paste-copy-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(0,118,249,.9);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}
.paste-copy-btn:hover {
    background: #0076f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,118,249,.4);
}
.paste-copy-btn.success {
    background: #10b981;
}
.paste-copy-btn.success:hover {
    background: #059669;
}

/* ═══════════════════════════════════════════════════════════════
   LISTS & ITEMS
   ═══════════════════════════════════════════════════════════════ */
.paste-recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paste-recent-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.theme-dark .paste-recent-item {
    border-bottom-color: rgba(255,255,255,.06);
}
.paste-recent-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.paste-recent-link {
    color: #0076f9;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: color .2s;
}
.theme-dark .paste-recent-link {
    color: #5aa5ff;
}
.paste-recent-link:hover {
    color: #0058c4;
    text-decoration: underline;
}
.theme-dark .paste-recent-link:hover {
    color: #7bb8ff;
}

.paste-recent-meta {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
}
.theme-dark .paste-recent-meta {
    color: #8c929b;
}
.paste-recent-meta i {
    margin-right: 4px;
}

.paste-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.paste-feature-list li {
    padding: 10px 0;
    color: #1a1a2e;
    font-size: 14px;
}
.theme-dark .paste-feature-list li {
    color: #e4e7eb;
}
.paste-feature-list li i {
    color: #10b981;
    margin-right: 10px;
    width: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   TABLES
   ═══════════════════════════════════════════════════════════════ */
.paste-info-table {
    width: 100%;
    font-size: 14px;
}
.paste-info-table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    vertical-align: top;
}
.theme-dark .paste-info-table td {
    border-bottom-color: rgba(255,255,255,.06);
}
.paste-info-table td:first-child {
    color: #6b7280;
    font-weight: 600;
    white-space: nowrap;
    padding-right: 8px;
}
.theme-dark .paste-info-table td:first-child {
    color: #8c929b;
}
.paste-info-table td:last-child {
    color: #1a1a2e;
}
.theme-dark .paste-info-table td:last-child {
    color: #e4e7eb;
}
.paste-info-table code {
    font-size: 10px;
    white-space: nowrap;
}
.paste-info-table tr:last-child td {
    border-bottom: none;
}

/* ═══════════════════════════════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════════════════════════════ */
.paste-alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    border: 1px solid;
    position: relative;
    font-size: 14px;
}
.paste-alert-success{
    background: rgba(16,185,129,.08);
    border-color: rgba(16,185,129,.2);
    color: #065f46;
}
.theme-dark .paste-alert-success {
    background: rgba(16,185,129,.15);
    border-color: rgba(16,185,129,.3);
    color: #6ee7b7;
}
.paste-alert-error {
    background: rgba(239,68,68,.08);
    border-color: rgba(239,68,68,.2);
    color: #991b1b;
}
.theme-dark .paste-alert-error {
    background: rgba(239,68,68,.15);
    border-color: rgba(239,68,68,.3);
    color: #fca5a5;
}
.paste-alert-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    opacity: .6;
    padding: 0;
    line-height: 1;
    color: inherit;
    transition: opacity .2s;
}
.paste-alert-close:hover {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   CODE DISPLAY
   ═══════════════════════════════════════════════════════════════ */
/* Code header with language badge */
.paste-code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f6f8fa;
    border-bottom: 1px solid #d1d9e0;
}
.theme-dark .paste-code-header {
    background: #161b22;
    border-bottom-color: #30363d;
}

.paste-language-badge {
    font-size: 12px;
    font-weight: 600;
    color: #0076f9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.theme-dark .paste-language-badge {
    color: #58a6ff;
}

.paste-lines-count {
    font-size: 12px;
    color: #6b7280;
}
.theme-dark .paste-lines-count {
    color: #8b949e;
}

/* Code container with line numbers */
.paste-code-container {
    display: flex;
    background: #ffffff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}
.theme-dark .paste-code-container {
    background: #0d1117;
}

.paste-line-numbers {
    margin: 0;
    padding: 16px 12px;
    background: #f6f8fa;
    border-right: 1px solid #d1d9e0;
    color: #6b7280;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    line-height: 20px;
    text-align: right;
    user-select: none;
    min-width: 50px;
    white-space: pre;
    flex-shrink: 0;
}
.theme-dark .paste-line-numbers {
    background: #161b22;
    border-right-color: #30363d;
    color: #6e7681;
}

.paste-code {
    margin: 0;
    padding: 16px;
    background: transparent;
    color: #24292f;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    line-height: 20px;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: pre-wrap;
    flex: 1;
}
.theme-dark .paste-code {
    color: #e6edf3;
}

.paste-code code {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    white-space: inherit;
    word-wrap: inherit;
}

/* Syntax highlighting tokens */
.paste-code .sh-keyword {
    color: #d73a49;
    font-weight: 600;
}
.theme-dark .paste-code .sh-keyword {
    color: #ff7b72;
}

.paste-code .sh-string {
    color: #22863a;
}
.theme-dark .paste-code .sh-string {
    color: #a5d6ff;
}

.paste-code .sh-comment {
    color: #6a737d;
    font-style: italic;
}
.theme-dark .paste-code .sh-comment {
    color: #8b949e;
}

.paste-code .sh-function {
    color: #6f42c1;
}
.theme-dark .paste-code .sh-function {
    color: #d2a8ff;
}

.paste-code .sh-number {
    color: #0076f9;
}
.theme-dark .paste-code .sh-number {
    color: #79c0ff;
}

.paste-code .sh-variable {
    color: #e36209;
}
.theme-dark .paste-code .sh-variable {
    color: #ffa657;
}

.paste-code .sh-decorator,
.paste-code .sh-annotation,
.paste-code .sh-symbol {
    color: #0076f9;
    font-weight: 600;
}
.theme-dark .paste-code .sh-decorator,
.theme-dark .paste-code .sh-annotation,
.theme-dark .paste-code .sh-symbol {
    color: #79c0ff;
}

.paste-code .sh-property,
.paste-code .sh-attribute {
    color: #005cc5;
}
.theme-dark .paste-code .sh-property,
.theme-dark .paste-code .sh-attribute {
    color: #79c0ff;
}

.paste-code .sh-tag,
.paste-code .sh-selector {
    color: #22863a;
    font-weight: 600;
}
.theme-dark .paste-code .sh-tag,
.theme-dark .paste-code .sh-selector {
    color: #7ee787;
}

.paste-code .sh-boolean,
.paste-code .sh-null {
    color: #0076f9;
    font-weight: 600;
}
.theme-dark .paste-code .sh-boolean,
.theme-dark .paste-code .sh-null {
    color: #79c0ff;
}

.paste-code .sh-important {
    color: #d73a49;
    font-weight: 700;
}
.theme-dark .paste-code .sh-important {
    color: #ff7b72;
}

.paste-code .sh-command {
    color: #24292f;
}
.theme-dark .paste-code .sh-command {
    color: #e6edf3;
}

/* Legacy Prism.js overrides (keep for compatibility) */
.paste-card-body pre[class*="language-"] {
    margin: 0 !important;
    border-radius: 0 !important;
    background: #f8f9fa !important;
    padding: 24px 0 24px 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #24292e !important;
    overflow-x: hidden !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    white-space: pre-wrap !important;
    border: none !important;
    counter-reset: linenumber;
}
.theme-dark .paste-card-body pre[class*="language-"] {
    background: #0d1117 !important;
    color: #e6edf3 !important;
}

.paste-card-body code[class*="language-"] {
    text-shadow: none !important;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace !important;
    font-size: 14px !important;
    color: #24292e !important;
    background: transparent !important;
    padding: 0 24px !important;
    display: block !important;
    white-space: inherit !important;
    word-wrap: inherit !important;
}
.theme-dark .paste-card-body code[class*="language-"] {
    color: #e6edf3 !important;
}

/* Line Numbers Styling - GitHub Style */
.paste-card-body pre.line-numbers {
    position: relative;
    padding-left: 0 !important;
    counter-reset: linenumber;
}

.paste-card-body pre.line-numbers > code {
    position: relative;
    white-space: pre;
    padding-left: 80px !important;
}

.paste-card-body .line-numbers .line-numbers-rows {
    position: absolute;
    pointer-events: none;
    top: 0;
    font-size: 100%;
    left: 0;
    width: 56px;
    letter-spacing: -1px;
    border-right: 2px solid #e1e4e8;
    user-select: none;
    background: #fafbfc;
    padding: 24px 0;
}
.theme-dark .paste-card-body .line-numbers .line-numbers-rows {
    border-right-color: #21262d;
    background: #0d1117;
}

.paste-card-body .line-numbers-rows > span {
    display: block;
    counter-increment: linenumber;
}

.paste-card-body .line-numbers-rows > span:before {
    content: counter(linenumber);
    color: #9ca3af;
    display: block;
    padding-right: 12px;
    text-align: right;
    font-size: 13px;
}
.theme-dark .paste-card-body .line-numbers-rows > span:before {
    color: #6e7681;
}

/* Hoverable line numbers - highlight on hover */
.paste-card-body pre.line-numbers:hover .line-numbers-rows > span:before {
    color: #6b7280;
}
.theme-dark .paste-card-body pre.line-numbers:hover .line-numbers-rows > span:before {
    color: #8b949e;
}

/* Language indicator badge */
.paste-card-body pre[data-language]:before {
    content: attr(data-language);
    position: absolute;
    top: 8px;
    right: 60px;
    background: #0076f9;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}
.theme-dark .paste-card-body pre[data-language]:before {
    background: #1f6feb;
}

/* Override Prism.js token colors for light mode */
.paste-card-body .token.comment,
.paste-card-body .token.prolog,
.paste-card-body .token.doctype,
.paste-card-body .token.cdata {
    color: #6a737d !important;
}

.paste-card-body .token.punctuation {
    color: #24292e !important;
}

.paste-card-body .token.property,
.paste-card-body .token.tag,
.paste-card-body .token.boolean,
.paste-card-body .token.number,
.paste-card-body .token.constant,
.paste-card-body .token.symbol,
.paste-card-body .token.deleted {
    color: #0076f9 !important;
}

.paste-card-body .token.selector,
.paste-card-body .token.attr-name,
.paste-card-body .token.string,
.paste-card-body .token.char,
.paste-card-body .token.builtin,
.paste-card-body .token.inserted {
    color: #22863a !important;
}

.paste-card-body .token.operator,
.paste-card-body .token.entity,
.paste-card-body .token.url,
.paste-card-body .language-css .token.string,
.paste-card-body .style .token.string {
    color: #d73a49 !important;
}

.paste-card-body .token.atrule,
.paste-card-body .token.attr-value,
.paste-card-body .token.keyword {
    color: #d73a49 !important;
}

.paste-card-body .token.function,
.paste-card-body .token.class-name {
    color: #6f42c1 !important;
}

.paste-card-body .token.regex,
.paste-card-body .token.important,
.paste-card-body .token.variable {
    color: #e36209 !important;
}

/* Override for dark mode */
.theme-dark .paste-card-body .token.comment,
.theme-dark .paste-card-body .token.prolog,
.theme-dark .paste-card-body .token.doctype,
.theme-dark .paste-card-body .token.cdata {
    color: #8b949e !important;
}

.theme-dark .paste-card-body .token.punctuation {
    color: #c9d1d9 !important;
}

.theme-dark .paste-card-body .token.property,
.theme-dark .paste-card-body .token.tag,
.theme-dark .paste-card-body .token.boolean,
.theme-dark .paste-card-body .token.number,
.theme-dark .paste-card-body .token.constant,
.theme-dark .paste-card-body .token.symbol {
    color: #79c0ff !important;
}

.theme-dark .paste-card-body .token.selector,
.theme-dark .paste-card-body .token.attr-name,
.theme-dark .paste-card-body .token.string,
.theme-dark .paste-card-body .token.char,
.theme-dark .paste-card-body .token.builtin {
    color: #a5d6ff !important;
}

.theme-dark .paste-card-body .token.operator,
.theme-dark .paste-card-body .token.entity,
.theme-dark .paste-card-body .token.url {
    color: #ff7b72 !important;
}

.theme-dark .paste-card-body .token.atrule,
.theme-dark .paste-card-body .token.attr-value,
.theme-dark .paste-card-body .token.keyword {
    color: #ff7b72 !important;
}

.theme-dark .paste-card-body .token.function,
.theme-dark .paste-card-body .token.class-name {
    color: #d2a8ff !important;
}

.theme-dark .paste-card-body .token.regex,
.theme-dark .paste-card-body .token.important,
.theme-dark .paste-card-body .token.variable {
    color: #ffa657 !important;
}

.theme-dark .paste-card-body .token.deleted {
    color: #ffa198 !important;
}

.theme-dark .paste-card-body .token.inserted {
    color: #7ee787 !important;
}
/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */
.paste-empty {
    text-align: center;
    color: #9ca3af;
    padding: 40px 20px;
    font-size: 15px;
}
.theme-dark .paste-empty {
    color: #6b7280;
}

.paste-text-center {
    text-align: center;
    color: #6b7280;
    margin: 24px 0;
    font-size: 15px;
}
.theme-dark .paste-text-center {
    color: #8c929b;
}

.paste-link {
    color: #0076f9;
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}
.theme-dark .paste-link {
    color: #5aa5ff;
}
.paste-link:hover {
    color: #0058c4;
    text-decoration: underline;
}
.theme-dark .paste-link:hover {
    color: #7bb8ff;
}

/* ═══════════════════════════════════════════════════════════════
   SKELETON LOADING (LASER EFFECT)
   ═══════════════════════════════════════════════════════════════ */
.paste-skel-wrap {
    position: relative;
}

.paste-skel-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transition: opacity .4s ease, transform .4s ease;
}
.paste-skel-layer.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}

.paste-skel-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,118,249,.06);
    padding: 28px;
    margin-bottom: 28px;
}
.theme-dark .paste-skel-card {
    background: #1a1e25;
    border-color: rgba(255,255,255,.06);
}

.paste-skel-pulse {
    animation: paste-shimmer 1.5s ease-in-out infinite;
}
@keyframes paste-shimmer {
    0%, 100% { opacity: .5; }
    50% { opacity: 1; }
}

.paste-skel-header {
    padding: 24px 28px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.theme-dark .paste-skel-header {
    border-bottom-color: rgba(255,255,255,.06);
}

.paste-skel-line {
    height: 12px;
    border-radius: 6px;
    background: #e5e7eb;
    margin: 8px 0;
}
.theme-dark .paste-skel-line {
    background: #2a2f38;
}

.paste-skel-w100 { width: 100%; }
.paste-skel-w80 { width: 80%; }
.paste-skel-w70 { width: 70%; }
.paste-skel-w60 { width: 60%; }
.paste-skel-w50 { width: 50%; }
.paste-skel-w45 { width: 45%; }
.paste-skel-w40 { width: 40%; }
.paste-skel-w30 { width: 30%; }

.paste-skel-textarea {
    width: 100%;
    height: 200px;
    background: #e5e7eb;
    border-radius: 10px;
    margin: 12px 0;
}
.theme-dark .paste-skel-textarea {
    background: #2a2f38;
}

.paste-skel-code {
    width: 100%;
    height: 400px;
    background: #2d2d2d;
    border-radius: 0;
}
.theme-dark .paste-skel-code {
    background: #0f172a;
}

.paste-skel-input {
    width: 100%;
    height: 48px;
    background: #e5e7eb;
    border-radius: 10px;
    margin: 12px 0;
}
.theme-dark .paste-skel-input {
    background: #2a2f38;
}

.paste-skel-btn {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    border-radius: 10px;
    margin: 12px 0;
}
.theme-dark .paste-skel-btn {
    background: linear-gradient(135deg, #2a2f38, #3a3f4a);
}

.paste-content-wrap {
    position: relative;
}

.paste-real-content {
    opacity: 0;
    transition: opacity .4s ease;
}
.paste-real-content.visible {
    opacity: 1;
}

/* Password page - centered skeleton */
.paste-skel-layer.paste-skel-centered {
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.paste-skel-layer.paste-skel-centered.hidden {
    transform: scale(0.95);
}
.paste-skel-card-lock {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,118,249,.06);
    padding: 40px;
    width: 100%;
    max-width: 600px;
}
.theme-dark .paste-skel-card-lock {
    background: #1a1e25;
    border-color: rgba(255,255,255,.06);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .paste-hero h1 {
        font-size: 26px;
    }
    .paste-hero p {
        font-size: 14px;
    }
    .paste-section {
        padding: 40px 0;
    }
    .paste-card-header,
    .paste-card-body {
        padding: 20px;
    }
    .paste-skel-card {
        padding: 20px;
    }
}
