/* ================================
   Base Reset
================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    background: #0f172a;
    color: #e5e7eb;
    line-height: 1.7; /* slightly more breathing space */
}

/* ================================
   Page Layout
================================ */
.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ================================
   Ads
================================ */
.ads-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 24px 0;
}

.ad-box {
    width: 300px;
    height: 250px;
    background: #020617;
    border: 1px dashed #1e293b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 13px;
}

/* ================================
   Paste Content
================================ */
.content {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

.card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 14px;
    padding: 26px;
}

/* 🔥 FONT SIZE INCREASED HERE */
.paste-box {
    width: 100%;
    max-width: 900px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 17px;      /* ⬆ was 14px */
    line-height: 1.8;    /* better readability */
}

/* ================================
   Rainbow Animated Links
================================ */
.paste-box a {
    position: relative;
    font-weight: 600;
    font-size: 18px; /* ⬆ links slightly bigger */
    text-decoration: none;
    background: linear-gradient(
        90deg,
        #ff0080,
        #ff8c00,
        #ffd500,
        #00ff88,
        #00cfff,
        #8a5cff,
        #ff0080
    );
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowText 6s linear infinite;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.paste-box a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        #ff0080,
        #ff8c00,
        #ffd500,
        #00ff88,
        #00cfff,
        #8a5cff,
        #ff0080
    );
    background-size: 400% 100%;
    animation: rainbowGlow 6s linear infinite;
}

/* Animations */
@keyframes rainbowText {
    0%   { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

@keyframes rainbowGlow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

/* ================================
   Mobile
================================ */
@media (max-width: 768px) {
    .ads-row {
        flex-direction: column;
        align-items: center;
    }

    .paste-box {
        font-size: 16px; /* slightly smaller on mobile */
    }

    .paste-box a {
        font-size: 17px;
    }
}
.notice {
    padding: 16px 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.notice.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #a7f3d0;
}

.notice.warning {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fde68a;
}

textarea {
    width: 100%;
    min-height: 180px;
    background: #020617;
    border: 1px solid #1e293b;
    color: #e5e7eb;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 14px;
    resize: vertical;
}

button {
    background: #6366f1;
    border: none;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}
/* Christmas Banner */
.xmas-banner {
    text-align: center;
    padding: 12px;
    background: linear-gradient(90deg, #16a34a, #dc2626);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Santa */
.xmas-santa {
    position: fixed;
    bottom: 10px;
    left: -200px;
    width: 120px;
    z-index: 9999;
    pointer-events: none;
}

/* Snow */
.xmas-snow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
}

/* Sound Button */
.xmas-sound-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    z-index: 10000;
}

