:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #13131a;
    --bg-tertiary: #1a1a24;
    --bg-hover: #21212e;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-hover: #7c3aed;
    --text-primary: #e8e8f0;
    --text-secondary: #a0a0b8;
    --text-tertiary: #6e6e88;
    --border-color: #2a2a38;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin: 0;
}

.logo h1 span {
    color: var(--accent-primary);
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* Sub Navigation (under logo) */
.sub-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

.sub-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sub-nav a:hover {
    color: var(--accent-primary);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-link {
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.nav-link.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.add-post-btn {
    background: var(--accent-primary) !important;
    color: white !important;
    font-weight: 500;
    border-color: var(--accent-primary) !important;
}

.add-post-btn:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Active Users Counter */
.active-users {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #22c55e;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Search Container */
.search-container {
    margin-bottom: 30px;
}

.search-form-main {
    width: 100%;
}

.search-box-main {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.search-box-main:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-box-main input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.search-box-main input::placeholder {
    color: var(--text-tertiary);
}

.search-btn {
    padding: 10px 24px;
    background: var(--accent-primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--accent-secondary);
    transform: translateY(-1px);
}

.clear-search {
    color: var(--text-tertiary);
    font-size: 1.5rem;
    text-decoration: none;
    cursor: pointer;
}

.clear-search:hover {
    color: var(--text-primary);
}

/* Floating Chat */
.floating-chat-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6);
}

.chat-window {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 700px;
    height: 500px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    resize: both;
    min-width: 700px;
    min-height: 500px;
    max-width: 700px;
    max-height: 500px;
}

.chat-iframe {
    flex: 1;
    border: none;
    width: 100%;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chat-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 100px);
        bottom: 20px;
        right: 20px;
    }

    .main-nav {
        gap: 8px;
    }

    .nav-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

.header-stats {
    display: flex;
    gap: 20px;
}

.stat {
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.back-button {
    padding: 10px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    transform: translateX(-3px);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding-bottom: 60px;
}

/* TOS Notice */
.tos-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    color: #ef4444;
    font-size: 0.95rem;
}

.tos-notice svg {
    flex-shrink: 0;
}

.tos-notice a {
    color: #ef4444;
    font-weight: 600;
    text-decoration: underline;
}

.tos-notice a:hover {
    color: #dc2626;
}

/* Entry Cards Grid */
.entries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.entry-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.entry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.entry-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
}

.entry-card:hover::before {
    transform: scaleX(1);
}

.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.entry-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.entry-date {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.entry-preview {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.35;
}

.entry-footer {
    display: flex;
    justify-content: flex-end;
}

.entry-votes {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    margin-top: 8px;
    border-top: 1px solid var(--border-color);
}

.entry-votes .vote-display {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.entry-votes .vote-display svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.entry-votes .vote-display strong {
    font-size: 1.1rem;
    color: var(--accent-secondary);
    font-weight: 700;
}

/* Post Management Actions */
.post-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-action:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    transform: translateY(-1px);
}

.btn-action svg {
    width: 16px;
    height: 16px;
}

.btn-edit:hover {
    border-color: #3b82f6;
}

.btn-delete:hover {
    border-color: var(--danger);
    color: var(--danger);
}

.btn-purchase:hover {
    border-color: var(--success);
    color: var(--success);
}

/* Purchase Modal */
.purchase-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.purchase-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.purchase-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.purchase-modal-header h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.purchase-options {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.purchase-option {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.purchase-option:hover {
    border-color: var(--accent-primary);
    transform: translateX(5px);
}

.purchase-option.selected {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
}

.purchase-option h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.purchase-price {
    font-size: 1.5rem;
    color: var(--accent-primary);
    font-weight: 700;
}

.purchase-option p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 10px;
}

.purchase-contact {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.purchase-contact h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-method svg {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
}

.contact-method strong {
    color: var(--text-primary);
}

.purchase-button {
    width: 100%;
    padding: 12px;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.purchase-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.purchase-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.view-more {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.3s ease;
    display: inline-block;
}

.entry-card:hover .view-more {
    transform: translateX(5px);
}

/* Entry Detail */
.entry-detail {
    max-width: 900px;
    margin: 0 auto;
}

.detail-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.detail-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Info Sections */
.info-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.info-section:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.info-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 600;
}

.info-section h2 svg {
    color: var(--accent-primary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: var(--bg-hover);
}

.label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.value {
    font-size: 1rem;
    color: var(--text-primary);
    word-break: break-all;
}

.value.copyable {
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 4px 8px;
    margin: -4px -8px;
    border-radius: 4px;
}

.value.copyable:hover {
    background: var(--accent-primary);
    color: white;
}

.value.highlight {
    color: var(--accent-primary);
    font-weight: 600;
}

.value.link {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.value.link:hover {
    color: var(--accent-secondary);
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.link-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    min-width: 140px;
}

.external-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.external-link:hover {
    color: var(--accent-secondary);
    gap: 8px;
}

.external-link svg {
    flex-shrink: 0;
}

/* Links List */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    word-break: break-all;
}

.profile-link:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: translateX(5px);
}

.profile-link svg {
    flex-shrink: 0;
    color: var(--accent-primary);
}

.profile-link.highlighted {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
}

.profile-link.highlighted::after {
    content: '⭐ Wysokie prawdopodobieństwo';
    margin-left: auto;
    padding: 4px 10px;
    background: var(--accent-primary);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 24px;
    background: var(--success);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.copy-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .entries-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .detail-header h1 {
        font-size: 1.8rem;
    }

    .link-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .link-label {
        min-width: auto;
    }

    .copy-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.entry-card,
.info-section {
    animation: fadeIn 0.5s ease backwards;
}

.entry-card:nth-child(1) {
    animation-delay: 0.05s;
}

.entry-card:nth-child(2) {
    animation-delay: 0.1s;
}

.entry-card:nth-child(3) {
    animation-delay: 0.15s;
}

.entry-card:nth-child(4) {
    animation-delay: 0.2s;
}

.info-section:nth-child(1) {
    animation-delay: 0.1s;
}

.info-section:nth-child(2) {
    animation-delay: 0.15s;
}

.info-section:nth-child(3) {
    animation-delay: 0.2s;
}

.info-section:nth-child(4) {
    animation-delay: 0.25s;
}

.info-section:nth-child(5) {
    animation-delay: 0.3s;
}

.info-section:nth-child(6) {
    animation-delay: 0.35s;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Navigation */
.header-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-link {
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
}

.nav-link.admin-link {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-color: var(--accent-primary);
    font-weight: 600;
}

.nav-link.edit-link {
    background: var(--warning);
    border-color: var(--warning);
    color: white;
}

.user-info {
    background: var(--bg-tertiary);
    cursor: default;
}

/* Authentication Pages */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.auth-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
}

.auth-card h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 450px;
    max-height: 600px;
    font-family: 'Courier New', Consolas, monospace;
    line-height: 1.6;
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-secondary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.btn-edit {
    background: var(--warning);
    color: white;
}

.btn-delete {
    background: var(--danger);
    color: white;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    color: var(--accent-secondary);
}

.auth-demo {
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.auth-demo p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.auth-demo code {
    background: var(--bg-secondary);
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--accent-primary);
    font-family: 'Courier New', monospace;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

.alert svg {
    flex-shrink: 0;
}

/* Entry Meta */
.entry-meta {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.meta-item svg {
    flex-shrink: 0;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.post-meta .meta-item {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.post-meta strong {
    color: var(--text-primary);
}

/* Raw Content */
.raw-content {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    white-space: pre-wrap;
    word-break: break-word;
}

/* No Entries */
.no-entries {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.no-entries svg {
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.no-entries h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

/* Admin Panel */
.admin-content {
    max-width: 1200px;
    margin: 0 auto;
}

.admin-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.tab-button:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.tab-button.active {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.admin-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.admin-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}

/* Tables */
.posts-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table thead {
    background: var(--bg-tertiary);
}

table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border-color);
}

table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

table tbody tr {
    transition: all 0.2s ease;
    cursor: pointer;
}

table tbody tr:hover {
    background: var(--bg-tertiary);
}

table tbody tr.selected {
    background: rgba(99, 102, 241, 0.15);
    border-left: 3px solid var(--accent-primary);
}

table td a {
    color: var(--accent-primary);
    text-decoration: none;
}

table td a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.actions {
    display: flex;
    gap: 8px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-raw {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border: 1px solid var(--warning);
}

.badge-structured {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.badge-admin {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid var(--danger);
}

.badge-user {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.no-data {
    text-align: center;
    padding: 40px;
    color: var(--text-tertiary);
}

/* Admin Form */
.admin-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-section {
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-primary);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.radio-label:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

.content-section {
    animation: fadeIn 0.3s ease;
}

.form-actions {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Responsive Admin */
@media (max-width: 768px) {
    .admin-tabs {
        flex-wrap: wrap;
    }

    .tab-button {
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .radio-group {
        flex-direction: column;
    }

    .posts-table {
        font-size: 0.85rem;
    }

    table th,
    table td {
        padding: 8px 10px;
    }

    .form-actions {
        flex-direction: column;
    }
}

/* User Ranks */
.user-rank {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid;
    margin-right: 8px;
}

.username {
    font-weight: 600;
}

/* Comments Section */
.comments-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    margin-top: 24px;
}

.comments-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 600;
}

.comment-form {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    resize: vertical;
    margin-bottom: 12px;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.login-prompt {
    text-align: center;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    margin-bottom: 20px;
}

.login-prompt a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment {
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    border-left: 3px solid var(--accent-primary);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.comment-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

.comment-content a {
    color: #818cf8;
    text-decoration: underline;
    transition: color 0.2s;
}

.comment-content a:hover {
    color: #a5b4fc;
}

.no-comments {
    text-align: center;
    padding: 40px;
    color: var(--text-tertiary);
}

/* Chat */
.chat-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    background: var(--bg-secondary);
    border: none;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 180px);
}

.chat-header {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.chat-header h1 {
    font-size: 1.1rem;
    margin: 0 0 6px 0;
    color: var(--text-primary);
    font-weight: 600;
}

.chat-header p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #000000;
    font-family: 'Courier New', Consolas, monospace;
    font-size: 13px;
}

.chat-msg {
    display: block;
    padding: 3px 0;
    line-height: 1.4;
    color: #e0e0e0;
}

.msg-time {
    color: #666666;
}

.msg-user {
    font-weight: 600;
    transition: opacity 0.2s;
}

.msg-user:hover {
    opacity: 0.8;
    text-decoration: underline !important;
}

.msg-rank {
    color: #888888;
    font-size: 12px;
}

.msg-separator {
    color: #666666;
}

.msg-content {
    color: #ffffff;
    word-break: break-word;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.message-time {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.message-text {
    color: #e0e0e0;
    line-height: 1.4;
    word-break: break-word;
    font-size: 0.9rem;
    padding-left: 0;
}

.no-messages {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-tertiary);
}

.no-messages svg {
    margin-bottom: 20px;
    opacity: 0.5;
}

.chat-form {
    padding: 12px 15px;
    background: #000;
    border-top: 1px solid #222;
}

.chat-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input-group textarea {
    flex: 1;
    padding: 8px 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    color: #e0e0e0;
    font-family: inherit;
    font-size: 13px;
    resize: none;
}

.chat-input-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.chat-input-group button {
    padding: 8px 12px;
    min-width: auto;
}

/* Chat link */
.chat-link {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.chat-link:hover {
    background: rgba(16, 185, 129, 0.2);
}

/* Badge Notification */
.badge-notification {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--danger);
    color: white;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 6px;
}

/* Status Badges */
.badge-status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border: 1px solid var(--warning);
}

.badge-status-approved {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.badge-status-rejected {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid var(--danger);
}

/* Approve Button */
.btn-approve {
    background: var(--success);
    color: white;
}

.btn-approve:hover {
    opacity: 0.9;
}

/* Pending Row Highlight */
.pending-row {
    background: rgba(245, 158, 11, 0.05);
}

.pending-row:hover {
    background: rgba(245, 158, 11, 0.1);
}

/* Responsive Chat */
@media (max-width: 768px) {
    .chat-container {
        height: calc(100vh - 200px);
    }

    .chat-header {
        padding: 15px 20px;
    }

    .chat-header h1 {
        font-size: 1.4rem;
    }

    .chat-messages {
        padding: 15px;
    }

    .chat-form {
        padding: 15px;
    }

    .user-rank {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
}

/* Search Form */
.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 12px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.search-box:hover,
.search-box:focus-within {
    border-color: rgba(236, 72, 153, 0.6);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.search-box svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    opacity: 0.7;
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 15px;
    width: 300px;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.clear-search {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.clear-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
}

.search-info {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.search-info h3 {
    margin: 0 0 10px 0;
    color: #8b5cf6;
    font-size: 20px;
}

.search-info p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.7);
}

.search-info strong {
    color: #ec4899;
    font-weight: 600;
}

/* Preview Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid var(--border-color);
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
}

.close-btn:hover {
    color: #ec4899;
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: white;
}

.modal-body .raw-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.modal-body .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.modal-body .info-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
}

.modal-body .info-item .label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.modal-body .info-item .value {
    color: white;
    font-size: 15px;
    word-break: break-all;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Inline Voting Buttons */
.vote-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vote-btn-small {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.vote-btn-small:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(236, 72, 153, 0.5);
    transform: translateY(-1px);
}

.vote-btn-small.vote-up.active {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--success);
    color: var(--success);
}

.vote-btn-small.vote-down.active {
    background: rgba(239, 68, 68, 0.2);
    border-color: var(--danger);
    color: var(--danger);
}

.vote-btn-small svg {
    width: 16px;
    height: 16px;
}

.net-votes-inline {
    font-weight: 700;
    color: #8b5cf6;
    font-size: 15px;
    padding: 0 4px;
}

/* Voting Section */
.vote-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(236, 72, 153, 0.2);
    border-radius: 15px;
    margin: 25px 0;
}

.vote-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.vote-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.vote-btn svg {
    transition: all 0.3s ease;
}

.vote-up.active,
.vote-up:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.vote-down.active,
.vote-down:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.5);
    color: #ef4444;
}

.vote-net {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.net-votes {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vote-count {
    font-size: 16px;
    font-weight: 700;
}

.vote-display {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vote-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 600;
}

.vote-stat svg {
    opacity: 0.7;
}

.vote-net-display {
    font-size: 24px;
    font-weight: 700;
    color: #8b5cf6;
}

.vote-disabled-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

.votes-display {
    color: #8b5cf6 !important;
    font-weight: 600;
}



/* Profile Page */
.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.profile-header {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.profile-info h1 {
    margin: 0 0 15px 0;
    font-size: 2rem;
}

.custom-rank-badge {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.profile-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-posts h2 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

/* Entry Card Votes Display */
.entry-votes {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    margin-top: 8px;
    border-top: 1px solid var(--border-color);
}

.entry-votes .vote-display {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.entry-votes .vote-display svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.entry-votes .vote-display strong {
    font-size: 1.1rem;
    color: var(--accent-secondary);
    font-weight: 700;
}