/* Early 2000s vBulletin Aesthetic */
:root {
    --bg-color: #e9e9e9;
    --box-border: #0B198C;
    --header-bg: #5c7099;
    --header-text: #ffffff;
    --cell-bg-1: #f5f5ff;
    --cell-bg-2: #e1e4f2;
    --text-color: #000000;
    --link-color: #22229c;
    --link-hover: #ff4400;
}

body {
    background-color: var(--bg-color);
    font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
    font-size: 13px;
    color: var(--text-color);
    margin: 0;
    padding: 10px;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

#wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #cccccc;
    padding: 10px;
}

#header {
    background: var(--header-bg);
    color: var(--header-text);
    padding: 15px;
    border-radius: 5px 5px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.user-bar a {
    color: #ffffff;
    font-weight: bold;
}

.breadcrumbs {
    font-size: 11px;
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 20px;
}

/* Forum Table Styles */
.forum-category {
    border: 1px solid var(--box-border);
    margin-bottom: 20px;
}

.category-header {
    background: var(--header-bg);
    color: #ffffff;
    padding: 5px 10px;
}

.category-header h2 {
    margin: 0;
    font-size: 14px;
}

.forum-table {
    width: 100%;
    border-collapse: collapse;
}

.forum-table th {
    background: #d1d4e0;
    color: #000;
    padding: 5px;
    font-size: 11px;
    text-align: left;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}

.forum-table td {
    padding: 10px;
    border-bottom: 1px solid #ffffff;
}

.forum-table tr:nth-child(even) td {
    background: var(--cell-bg-1);
}

.forum-table tr:nth-child(odd) td {
    background: var(--cell-bg-2);
}

.thread-locked td {
    background-color: #d1d4e0 !important;
    opacity: 0.5;
}
.thread-locked .thread-link {
    color: #777;
    text-decoration: line-through;
}
.thread-locked .thread-desc, .thread-locked .stats-col, .thread-locked .last-post-col {
    color: #777;
}

.thread-level-locked td {
    opacity: 0.7;
    background-color: #f5f5ff !important;
}
.thread-level-locked .thread-link {
    color: #999;
    cursor: default;
    pointer-events: none;
}
.thread-level-locked .thread-desc {
    color: #999;
}

/* New Content Styling */
.thread-new td {
    background: linear-gradient(135deg, #fff9e6 0%, #fff4d6 100%) !important;
}

.thread-new .thread-link {
    color: #f39c12;
    font-weight: bold;
}

.new-opponent-badge {
    display: inline-block;
    background: #f39c12;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    margin-top: 5px;
    animation: pulse 1s infinite;
}

.thread-link {
    font-weight: bold;
    font-size: 14px;
}

.thread-desc {
    font-size: 11px;
    color: #555;
    margin-top: 3px;
}

/* Layout with Sidebar */
.main-layout {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.sidebar {
    width: 200px;
    flex-shrink: 0;
}

#view-forums, #view-battle, #view-inbox {
    flex: 1;
}

.sidebar-box {
    border: 1px solid var(--box-border);
    background: #fff;
    margin-bottom: 15px;
}

.sidebar-box .box-header {
    background: var(--header-bg);
    color: #fff;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: bold;
}

.sidebar-box .box-body {
    padding: 10px;
}

.sidebar-avatar {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.sidebar-username {
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.sidebar-class {
    text-align: center;
    font-size: 11px;
    color: #666;
    margin-bottom: 10px;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    padding: 5px 0;
    border-bottom: 1px dotted #ccc;
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links a {
    font-size: 11px;
}

.xp-bar-container {
    width: 100%;
    height: 6px;
    background: #eee;
    border: 1px solid #ccc;
    margin: 5px 0;
}

.xp-bar-fill {
    height: 100%;
    background: #3498db;
    width: 0%;
}

.forum-rank-sidebar {
    font-size: 11px;
    font-weight: bold;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    text-align: center;
    background: #666;
    margin: 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border: 5px solid var(--header-bg);
    max-width: 800px;
    width: 90%;
}

.class-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.class-card {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
}

.class-card:hover {
    transform: translateY(-5px);
    border-color: var(--box-border);
}

.class-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.class-card h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.class-card p {
    font-size: 12px;
    min-height: 40px;
}

/* Login Box */
.login-box {
    max-width: 500px;
    margin: 50px auto;
    border: 1px solid var(--box-border);
    background: #fff;
}

.profile-box {
    max-width: 600px;
}

.login-body {
    padding: 20px;
}

.profile-section {
    margin-bottom: 15px;
}

.profile-section label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 12px;
}

.avatar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-top: 5px;
    width: 100%;
}

.avatar-option {
    font-size: 32px;
    text-align: center;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    user-select: none;
}

.avatar-option:hover {
    border-color: var(--header-bg);
    transform: scale(1.1);
}

.avatar-option.selected {
    border-color: var(--header-bg);
    background: #e6ebf1;
    box-shadow: 0 0 10px rgba(92, 112, 153, 0.5);
}

.profile-modal-content {
    max-width: 500px;
}

textarea.login-input {
    resize: vertical;
    min-height: 60px;
}

.login-input {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.play-btn {
    width: 100%;
    padding: 10px;
    background: var(--header-bg);
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

/* Inbox Styles */
.inbox-list {
    background: #fff;
}

.pm-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.pm-item:hover {
    background: #f9f9f9;
}

.pm-item.unread {
    background: #fff8e1;
    font-weight: bold;
}

.pm-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #666;
    margin-bottom: 5px;
}

.pm-subject {
    font-size: 14px;
    color: var(--link-color);
}

.pm-preview {
    font-size: 12px;
    color: #333;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Optional: thread topic tags (content packs) */
.thread-tags {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.thread-tags .tag {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    background: #efefef;
    border: 1px solid #ddd;
    color: #333;
    white-space: nowrap;
}

/* Original Styles... */

.post {
    border: 1px solid var(--box-border);
    margin-bottom: 10px;
    display: flex;
}

.post-user {
    width: 150px;
    background: var(--cell-bg-2);
    padding: 10px;
    text-align: center;
    border-right: 1px solid var(--box-border);
}

.post-user-name {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.post-user-icon {
    font-size: 20px;
    margin-bottom: 5px;
}

.post-avatar {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 1px solid #ccc;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.post-user-title {
    font-size: 10px;
    margin-bottom: 5px;
}

.forum-rank {
    font-size: 9px;
    font-weight: bold;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    text-align: center;
    margin: 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-user-stats {
    font-size: 10px;
    text-align: left;
    margin-top: 10px;
}

.post-content {
    flex: 1;
}

.post-header {
    background: #d1d4e0;
    padding: 5px 10px;
    font-size: 10px;
    border-bottom: 1px solid var(--box-border);
}

.post-body {
    padding: 15px;
    background: var(--cell-bg-1);
    min-height: 100px;
    font-size: 13px;
    line-height: 1.5;
}

.post-signature {
    border-top: 1px solid #ccc;
    margin-top: 20px;
    padding-top: 10px;
    font-size: 11px;
    color: #666;
}

.damage-indicator {
    color: red;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    animation: shake 0.5s;
}

.combo-indicator {
    color: #ff9900;
    font-weight: bold;
    animation: pulse 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes levelUp {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); color: #f1c40f; }
    100% { transform: scale(1); }
}

.level-up-flash {
    animation: levelUp 1s ease-in-out;
}

/* Post entry animation */
.post {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.health-bar {
    width: 100%;
    height: 10px;
    background: #ddd;
    margin-top: 5px;
    border: 1px solid #999;
}

.health-fill {
    height: 100%;
    background: #2ecc71;
    transition: width 0.3s;
}

/* Quick Reply & Hands */
.quick-reply-section {
    position: relative;
    margin-top: 30px;
    border: 1px solid var(--box-border);
    background: var(--cell-bg-2);
}

.qr-header {
    background: var(--header-bg);
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
}

.qr-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.qr-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.battle-option {
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    border-radius: 3px;
    transition: background 0.2s;
    font-size: 13px;
}

.battle-option:hover {
    background: #e6ebf1;
    border-color: var(--box-border);
}

.op-shortcut {
    display: inline-block;
    background: #666;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    margin-right: 5px;
}

.battle-option .op-type {
    font-weight: bold;
    display: inline-block;
    width: 100px;
}

/* Cartoon Hands & Keyboard */
.keyboard-area {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 300px;
    height: 150px;
    pointer-events: none;
    z-index: 5;
    opacity: 0.9;
}

.keyboard-base {
    position: absolute;
    bottom: 0;
    width: 250px;
    height: 60px;
    background: #d8cba9; /* classic beige */
    border: 3px solid #b8a680;
    border-radius: 5px;
    transform: perspective(300px) rotateX(40deg);
    box-shadow: inset 0 5px 0 #ede4cc;
}

.keyboard-base::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    background: repeating-linear-gradient(90deg, #b8a680, #b8a680 15px, transparent 15px, transparent 20px),
                repeating-linear-gradient(0deg, #b8a680, #b8a680 15px, transparent 15px, transparent 20px);
    opacity: 0.5;
}

.cartoon-hands {
    position: absolute;
    bottom: 50px;
    width: 60px;
    height: 80px;
    background: #ffcc99;
    border: 3px solid #000;
    border-radius: 30px;
    transition: transform 0.1s;
}

.cartoon-hands::after {
    /* Fingers */
    content: '';
    position: absolute;
    bottom: -10px;
    left: 5px;
    width: 12px;
    height: 25px;
    background: #ffcc99;
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 15px 0 0 -2px #ffcc99, 15px 0 0 0 #000,
                30px 0 0 -2px #ffcc99, 30px 0 0 0 #000;
}

.left-hand {
    left: 40px;
}

.right-hand {
    left: 140px;
}

.typing .left-hand {
    animation: typeLeft 0.2s infinite alternate;
}
.typing .right-hand {
    animation: typeRight 0.2s infinite alternate;
}

@keyframes typeLeft {
    0% { transform: translateY(0) rotate(5deg); }
    100% { transform: translateY(15px) rotate(-5deg); }
}

@keyframes typeRight {
    0% { transform: translateY(15px) rotate(-5deg); }
    100% { transform: translateY(0) rotate(5deg); }
}

/* Stats */
.stats-box {
    margin-top: 20px;
    background: var(--cell-bg-2);
    border: 1px solid var(--box-border);
    padding: 10px;
    font-size: 11px;
}
.stats-box h3 { margin-top: 0; font-size: 12px; }

#footer {
    text-align: center;
    font-size: 10px;
    color: #666;
    margin-top: 20px;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 5px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination a {
    padding: 6px 12px;
    border: 1px solid var(--box-border);
    background: var(--cell-bg-2);
    color: var(--link-color);
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    border-radius: 3px;
    transition: all 0.2s;
}

.pagination a:hover {
    background: var(--header-bg);
    color: white;
    border-color: var(--header-bg);
}

.pagination-active {
    padding: 6px 12px;
    background: var(--header-bg);
    color: white;
    border: 1px solid var(--header-bg);
    font-size: 11px;
    font-weight: bold;
    border-radius: 3px;
    cursor: default;
}

.pagination-ellipsis {
    padding: 6px 8px;
    color: #999;
}

.pagination-info {
    text-align: center;
    font-size: 11px;
    color: #666;
    margin-top: 10px;
}

/* ============================================
   MOBILE RESPONSIVE DESIGN
   ============================================ */

/* Mobile Breakpoints */
@media (max-width: 768px) {
    /* Main Container */
    #wrapper {
        padding: 5px;
        margin: 0;
        border: none;
        border-radius: 0;
    }

    /* Header */
    #header {
        flex-direction: column;
        padding: 10px;
        text-align: center;
    }

    .logo {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .user-bar {
        font-size: 11px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .user-bar a {
        margin: 2px 5px;
    }

    /* Breadcrumbs */
    .breadcrumbs {
        font-size: 10px;
        padding: 5px 0;
        margin-bottom: 10px;
    }

    /* Main Layout - Stack on mobile */
    .main-layout {
        flex-direction: column;
        margin-top: 5px;
    }

    /* Sidebar - Move below or hide on mobile */
    .sidebar {
        width: 100%;
        order: 2; /* Show below content on mobile */
        margin-top: 20px;
    }

    #view-forums, #view-battle, #view-inbox {
        order: 1;
    }

    /* Forum Table - Card style on mobile */
    .forum-table {
        display: block;
        border: none;
    }

    .forum-table thead {
        display: none;
    }

    .forum-table tbody {
        display: block;
    }

    .forum-table tr {
        display: block;
        border: 1px solid var(--box-border);
        border-radius: 8px;
        margin-bottom: 15px;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .forum-table td {
        display: block;
        border: none;
        padding: 10px;
    }

    .icon-col {
        display: none;
    }

    .stats-col, .last-post-col {
        font-size: 10px;
        color: #666;
    }

    /* Thread Cards */
    .thread-link {
        font-size: 16px;
        display: block;
        margin-bottom: 5px;
    }

    .thread-desc {
        font-size: 12px;
        margin: 5px 0;
    }

    .thread-tags {
        flex-wrap: wrap;
        gap: 3px;
    }

    .thread-tags .tag {
        font-size: 9px;
        padding: 2px 5px;
    }

    /* Battle Interface */
    .post {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .post-user {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--box-border);
        padding: 10px;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .post-avatar {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin: 0;
    }

    .post-user-name {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .post-user-stats {
        font-size: 9px;
        display: none;
    }

    /* Post Content */
    .post-content {
        padding: 10px;
    }

    .post-header {
        font-size: 9px;
        padding: 5px;
    }

    .post-body {
        font-size: 12px;
        line-height: 1.4;
        min-height: auto;
    }

    .post-signature {
        font-size: 9px;
        margin-top: 10px;
        font-style: italic;
    }

    /* Battle Options */
    .battle-option {
        font-size: 12px;
        padding: 12px 10px;
        margin-bottom: 8px;
    }

    .op-shortcut {
        display: none;
    }

    /* Keyboard Area - Hide on mobile */
    .keyboard-area {
        display: none;
    }

    /* Modal */
    .modal-content {
        max-width: 95%;
        margin: 10px;
        padding: 15px;
    }

    .class-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Profile Form */
    .profile-box {
        max-width: 100%;
        margin: 10px;
    }

    .login-input, textarea.login-input {
        font-size: 16px;
        padding: 12px;
    }

    /* Avatar Grid - Smaller on mobile */
    .avatar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
    }

    .avatar-option {
        font-size: 28px;
        padding: 8px;
    }

    /* Pagination */
    .pagination {
        gap: 3px;
        margin-top: 15px;
    }

    .pagination a {
        padding: 8px 10px;
        font-size: 12px;
    }

    .pagination-info {
        font-size: 10px;
    }

    /* Inbox */
    .pm-item {
        padding: 10px;
    }

    .pm-header {
        flex-direction: column;
        gap: 2px;
        font-size: 10px;
    }

    /* Stats Box */
    .stats-box-v2 {
        font-size: 11px;
    }

    /* Quick Reply */
    .quick-reply-section {
        margin-top: 20px;
    }

    .qr-header {
        font-size: 12px;
        padding: 8px;
    }

    /* Buttons - Touch friendly */
    .play-btn, .battle-option {
        min-height: 44px;
        min-width: 44px;
        font-size: 14px;
    }

    /* Footer */
    #footer {
        font-size: 9px;
        padding: 10px;
        margin-top: 20px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .logo {
        font-size: 16px;
    }

    .user-bar {
        font-size: 10px;
    }

    .thread-link {
        font-size: 14px;
    }

    .battle-option {
        font-size: 11px;
        padding: 10px 8px;
    }

    .post-body {
        font-size: 11px;
    }

    /* Touch targets - Minimum 44x44px */
    .play-btn {
        padding: 15px;
        font-size: 13px;
    }

    /* Hide less critical elements */
    .sidebar-links {
        font-size: 10px;
    }

    .sidebar-avatar {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    /* Pagination - Smaller buttons */
    .pagination a {
        padding: 6px 8px;
        font-size: 11px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .post-user {
        padding: 5px;
    }

    .post-avatar {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .keyboard-area {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .battle-option:active {
        background: #d1d4e0;
        transform: scale(0.98);
    }

    .avatar-option:active {
        transform: scale(0.95);
    }

    .play-btn:active {
        opacity: 0.8;
    }

    /* Remove hover effects on touch */
    .avatar-option:hover {
        transform: none;
    }

    .battle-option:hover {
        transform: none;
    }
}

/* Very Small Mobile - Avatar Grid Fix */
@media (max-width: 480px) {
    .avatar-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }

    .avatar-option {
        font-size: 32px;
        padding: 12px;
        min-height: 60px;
    }
}

/* Extra Narrow Phones (iPhone SE, etc.) */
@media (max-width: 380px) {
    .avatar-grid {
        gap: 6px;
    }

    .avatar-option {
        font-size: 28px;
        padding: 10px;
    }
}

/* Ensure avatar grid fits on small screens */
.avatar-grid {
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Fix avatar option sizing on mobile */
@media (max-width: 480px) {
    .avatar-option {
        box-sizing: border-box;
        width: 100%;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Thread Lifecycle Badges */
.thread-hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e72 100%) !important;
    animation: pulse-thread 2s infinite;
}

.thread-stale {
    background: #e0e0e0 !important;
    opacity: 0.7;
}

.thread-stale .thread-link {
    color: #888 !important;
}

.thread-expired {
    background: #f5f5f5 !important;
    opacity: 0.5;
}

.thread-expired .thread-link {
    color: #999 !important;
    text-decoration: line-through !important;
    pointer-events: none;
}

@keyframes pulse-thread {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Opponent Catchphrases */
.catchphrase {
    font-style: italic;
    color: #666;
    font-size: 11px;
    margin-top: 10px;
    padding: 8px 12px;
    background: #f9f9f9;
    border-left: 3px solid #f39c12;
    border-radius: 0 4px 0 4px;
}

/* Pack badges */
.pack-badge {
    display: inline-block;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
    font-weight: bold;
}

.pack-badge-seasonal {
    background: #e74c3c;
    color: white;
}

.pack-badge-event {
    background: #9b59b6;
    color: white;
    animation: pulse 1s infinite;
}
