body {
    background-color: #e5e5e8; /* Classic gray background */
    font-family: verdana, arial, sans-serif;
    font-size: 13px;
    color: #000000;
    margin: 0;
    padding: 40px 10px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: url("logo.jpg"), auto;
}

a, .forum-btn, .ca-section, .btc-img {
    cursor: url("logo.jpg"), pointer !important;
}

.forum-container {
    width: 100%;
    max-width: 850px;
    background-color: #ffffff;
    border: 1px solid #cddde9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-radius: 0;
    overflow: hidden;
    height: fit-content;
    position: relative;
    z-index: 10;
}

.post-row {
    display: flex;
    background-color: #eef1f6;
    border-bottom: 2px solid #ffffff;
}

.post-row.alt-row {
    background-color: #eaf0f5;
}

.poster-info {
    width: 145px;
    padding: 15px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.username {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 3px;
}

.username a {
    color: #334466;
    text-decoration: none;
}
.username a:hover { text-decoration: underline; }

.user-title {
    font-size: 11px;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.star-icon {
    width: 13px;
    height: 13px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #cccccc 60%, #999999);
    border-radius: 50%;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

.posts-count {
    font-size: 11px;
    margin-bottom: 15px;
}

.user-icons {
    margin-bottom: 15px;
}

.forum-user-icon {
    font-size: 18px;
    color: #444;
}

.ignore-link a {
    font-size: 11px;
    color: #334466;
    text-decoration: none;
}
.ignore-link a:hover { text-decoration: underline; }

.post-content {
    flex-grow: 1;
    padding: 15px 20px 15px 15px;
}

.post-header {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.post-subject {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}

.post-subject a {
    color: #334466;
    text-decoration: none;
}
.post-subject a:hover { text-decoration: underline; }

.document-icon {
    font-size: 14px;
    color: #888;
}

.post-date {
    font-size: 11px;
    color: #444444;
    padding-left: 23px;
}

.post-body {
    line-height: 1.5;
    font-size: 13px;
}

.post-body p {
    margin-top: 0;
    margin-bottom: 15px;
}

.post-body a {
    color: #334466;
    text-decoration: underline;
}

/* Bitcoin Logos */
.btc-logos {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin: 30px 0 40px 15px;
}

.btc-img {
    display: block;
    border-radius: 50%;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.1s;
}

.btc-img:active {
    transform: scale(0.95);
}

.size-1 { width: 16px; height: 16px; }
.size-2 { width: 24px; height: 24px; }
.size-3 { width: 42px; height: 42px; }
.size-4 { width: 64px; height: 64px; }


/* --- Memecoin Styles (Second Post) --- */
.meme-title {
    color: #f7931a;
    font-weight: bold;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.ca-section {
    background-color: #fff9e6;
    border: 1px dashed #f7931a;
    padding: 12px;
    margin: 20px 0;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #333;
    transition: background-color 0.2s;
    border-radius: 2px;
    width: fit-content;
}

.ca-section:hover {
    background-color: #fff2cc;
}

#ca-text {
    color: #d9534f;
    font-weight: bold;
    word-break: break-all;
}

.copy-hint {
    font-size: 11px;
    color: #777;
    margin-left: 10px;
    font-family: verdana, arial, sans-serif;
}

.button-links {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.forum-btn {
    display: inline-block;
    background-color: #f2f5f8;
    border: 1px solid #a8b6c6;
    padding: 6px 12px;
    color: #334466 !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: bold;
    border-radius: 2px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.forum-btn:hover {
    background-color: #e1e4f2;
    color: #000 !important;
    border-color: #334466;
}

.big-btn {
    padding: 12px 24px;
    font-size: 16px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    background-color: #e1e4f2;
    border: 2px solid #334466;
}

/* Toast Styles */
#toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    pointer-events: none;
}

.toast {
    background-color: #f2f5f8;
    border: 1px solid #334466;
    color: #334466;
    padding: 10px 20px;
    font-family: verdana, arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    margin-bottom: 10px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(-20px);
    border-radius: 2px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .post-row {
        flex-direction: column;
    }
    .poster-info {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #cccccc;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px 15px;
        box-sizing: border-box;
    }
    .user-title, .stars, .posts-count, .user-icons {
        margin: 0;
    }
    .post-header {
        align-items: flex-start;
    }
}