* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f2f5;
    color: #333;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #6e48aa, #9c27b0);
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.form-container {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 20px;
    color: #6e48aa;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    height: 120px;
    resize: vertical;
}

button {
    background: linear-gradient(135deg, #6e48aa, #9c27b0);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: block;
    width: 100%;
}

button:hover {
    background: linear-gradient(135deg, #9c27b0, #6e48aa);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.results-container {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hidden {
    display: none;
}

#loading {
    text-align: center;
    padding: 40px 0;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #9c27b0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.show-info {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

#show-poster {
    width: 200px;
    height: 300px;
    background-color: #e9e9e9;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.show-details {
    flex: 1;
    min-width: 300px;
}

.show-details p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.season {
    margin-top: 30px;
    border-top: 2px solid #f0f2f5;
    padding-top: 20px;
}

.season-title {
    margin-bottom: 15px;
    color: #6e48aa;
}

.episodes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.episode {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.episode:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.episode h4 {
    margin-bottom: 10px;
    color: #333;
}

.episode p {
    font-size: 14px;
    color: #666;
}

.reddot-container {
    margin-top: 40px;
    border-top: 3px solid #ff4500;
    padding-top: 20px;
}

.reddot-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reddot-logo {
    color: #ff4500;
    margin-right: 10px;
    font-size: 24px;
}

.rating-circle {
    background: linear-gradient(135deg, #ff8c42, #ff4500);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-left: auto;
}

.tab-navigation {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.tab.active {
    border-bottom-color: #ff4500;
    font-weight: bold;
}

.tab-content {
    padding: 15px 0;
}

.review-card, .theory-card, .controversy-card, .character-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.review-header, .theory-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.username {
    font-weight: bold;
    color: #0079d3;
}

.upvotes {
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.ranked-episode {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.rank {
    font-size: 24px;
    font-weight: bold;
    color: #ff4500;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.episode-info {
    flex: 1;
}

.episode-rating {
    color: #888;
    margin: 5px 0 10px;
}

.tab-container {
    margin-bottom: 30px;
}

.theory-card.popular {
    border-left: 4px solid #57bb8a;
}

.theory-card.controversial {
    border-left: 4px solid #e4a81d;
}

.theory-card.fringe {
    border-left: 4px solid #b19cd9;
}

.popularity-tag {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    color: white;
}

.theory-card.popular .popularity-tag {
    background-color: #57bb8a;
}

.theory-card.controversial .popularity-tag {
    background-color: #e4a81d;
}

.theory-card.fringe .popularity-tag {
    background-color: #b19cd9;
}

.controversy-card {
    position: relative;
    padding-top: 30px;
}

.controversy-card.mild {
    border-left: 4px solid #57bb8a;
}

.controversy-card.moderate {
    border-left: 4px solid #e4a81d;
}

.controversy-card.major {
    border-left: 4px solid #e74c3c;
}

.intensity-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    color: white;
}

.controversy-card.mild .intensity-tag {
    background-color: #57bb8a;
}

.controversy-card.moderate .intensity-tag {
    background-color: #e4a81d;
}

.controversy-card.major .intensity-tag {
    background-color: #e74c3c;
}

#season-inputs-container {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #6e48aa;
}

#season-inputs-container .input-group {
    margin-bottom: 10px;
}

#season-inputs-container .input-group:last-child {
    margin-bottom: 0;
}

.reality-element, .docuseries-element, .cooking-element {
    background-color: #f6f1ff;
    border-left: 3px solid #9c27b0;
    padding-left: 10px;
}

.elimination {
    color: #e74c3c;
    font-weight: bold;
}

.interview {
    color: #3498db;
    font-style: italic;
}

.recipe {
    color: #27ae60;
    font-weight: bold;
}

.meme-card, .fanwork-card, .ship-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.meme-card {
    border-left: 4px solid #ff6d91;
}

.fanwork-card {
    border-left: 4px solid #42a5f5;
}

.ship-card {
    border-left: 4px solid #ff9e80;
}

.meme-title, .fanwork-title, .ship-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.fanwork-type, .ship-intensity {
    display: inline-block;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    color: white;
    margin-left: 10px;
}

.fanwork-type.art {
    background-color: #42a5f5;
}

.fanwork-type.fic {
    background-color: #7e57c2;
}

.fanwork-type.video {
    background-color: #66bb6a;
}

.ship-intensity.casual {
    background-color: #81c784;
}

.ship-intensity.popular {
    background-color: #4fc3f7;
}

.ship-intensity.obsessed {
    background-color: #ff8a65;
}

.meme-caption {
    font-style: italic;
    color: #666;
    margin-top: 8px;
}

.tier-ranking {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin-left: 15px;
}

.tier-p {
    background: linear-gradient(135deg, #FF9900, #FFCC00);
    box-shadow: 0 0 10px #FFCC00;
}

.tier-s {
    background: linear-gradient(135deg, #FF3366, #FF5733);
    box-shadow: 0 0 8px #FF5733;
}

.tier-a {
    background: linear-gradient(135deg, #9C27B0, #673AB7);
}

.tier-b {
    background: linear-gradient(135deg, #3498DB, #2980B9);
}

.tier-c {
    background: linear-gradient(135deg, #7F8C8D, #95A5A6);
}

.tier-d {
    background: linear-gradient(135deg, #34495E, #2C3E50);
}

.mewtube-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.mewtube-card.essay {
    border-left: 4px solid #e74c3c;
}

.mewtube-card.review {
    border-left: 4px solid #3498db;
}

.mewtube-card.ytp {
    border-left: 4px solid #f39c12;
}

.mewtube-card.fanwork {
    border-left: 4px solid #27ae60;
}

.mewtube-title {
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.video-type {
    display: inline-block;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    color: white;
}

.video-type.essay {
    background-color: #e74c3c;
}

.video-type.review {
    background-color: #3498db;
}

.video-type.ytp {
    background-color: #f39c12;
}

.video-type.fanwork {
    background-color: #27ae60;
}

.video-type.au {
    background-color: #9b59b6;
}

.video-type.rant {
    background-color: #e91e63;
}

.video-type.lore {
    background-color: #00bcd4;
}

.mewtube-channel {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.mewtube-stats {
    display: flex;
    gap: 15px;
    color: #777;
    font-size: 13px;
    margin-top: 10px;
}

.mewtube-comment {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.mewtube-comment.reply {
    margin-left: 20px;
    border-left: 2px solid #ddd;
    padding-left: 10px;
    background-color: #f9f9f9;
}

.reply-comment-btn {
    background-color: #f0f0f0;
    color: #333;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    margin-top: 5px;
}

.reply-comment-btn:hover {
    background-color: #e0e0e0;
}

.reply-container {
    margin-top: 8px;
    display: flex;
    gap: 5px;
}

.reply-input {
    flex: 1;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.submit-reply-btn {
    background-color: #FF0000;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.submit-reply-btn:hover {
    background-color: #cc0000;
}

.mewtube-container {
    margin-top: 40px;
    border-top: 3px solid #FF0000;
    padding-top: 20px;
}

.mewtube-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.mewtube-logo {
    margin-right: 10px;
    font-size: 24px;
}

.mewtube-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mewtube-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.mewtube-tab.active {
    border-bottom-color: #FF0000;
    font-weight: bold;
}

.mewtube-tab:hover {
    background-color: #f9f9f9;
}

.mewtube-content {
    margin-bottom: 30px;
}

.mewtube-comments {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.mewtube-comment {
    padding: 5px 0;
}

.mewtube-comment-input {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.mewtube-comment-input .comment-input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.post-video-comment-btn {
    background-color: #FF0000;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    width: auto;
}

.post-video-comment-btn:hover {
    background-color: #cc0000;
    transform: none;
    box-shadow: none;
}

.inbe-container {
    margin-top: 40px;
    border-top: 3px solid #F5C518;
    padding-top: 20px;
}

.inbe-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.inbe-logo {
    margin-right: 10px;
    font-size: 24px;
}

.inbe-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.inbe-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.inbe-tab.active {
    border-bottom-color: #F5C518;
    font-weight: bold;
}

.inbe-tab:hover {
    background-color: #f9f9f9;
}

.inbe-section-content {
    margin-bottom: 30px;
}

.inbe-section-content.hidden {
    display: none;
}

.actor-card {
    display: flex;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.actor-info {
    flex: 1;
}

.actor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #555;
    font-weight: bold;
    font-size: 24px;
}

.actor-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.character-name {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.trivia-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 4px solid #F5C518;
}

.warning-category {
    margin-bottom: 25px;
}

.warning-category h4 {
    margin-bottom: 10px;
    color: #333;
    border-bottom: 2px solid #F5C518;
    padding-bottom: 5px;
}

.warning-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.warning-item.mild {
    border-left: 4px solid #81c784;
}

.warning-item.moderate {
    border-left: 4px solid #ffb74d;
}

.warning-item.severe {
    border-left: 4px solid #e57373;
}

.warning-item.inappropriate-warning {
    border-left: 4px solid #e84393 !important;
    background-color: rgba(232, 67, 147, 0.05);
}

.adult-content-warning {
    background-color: #ffddee;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border-left: 4px solid #e84393;
    font-weight: bold;
    color: #333;
}

.bickslord-container {
    margin-top: 40px;
    border-top: 3px solid #5865F2;
    padding-top: 20px;
}

.bickslord-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.bickslord-logo {
    margin-right: 10px;
    font-size: 24px;
}

.bickslord-interface {
    display: flex;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bickslord-sidebar {
    width: 240px;
    background-color: #2F3136;
    color: #dcddde;
    display: flex;
}

.bickslord-servers {
    width: 72px;
    background-color: #202225;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bickslord-server {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #36393f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    transition: border-radius 0.2s;
}

.bickslord-server.active {
    border-radius: 16px;
    background-color: #5865F2;
}

.bickslord-channels {
    flex: 1;
    padding: 10px 0;
}

.channel-category {
    padding: 0 15px;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #8e9297;
}

.channel {
    padding: 5px 15px;
    margin: 2px 0;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.channel.active {
    background-color: #393C43;
    color: white;
}

.channel:hover:not(.active) {
    background-color: #34373c;
}

.bickslord-chat {
    flex: 1;
    background-color: #36393f;
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 15px;
    border-bottom: 1px solid #2f3136;
    color: white;
}

.chat-header h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.chat-header p {
    font-size: 13px;
    color: #b9bbbe;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    display: flex;
    gap: 15px;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.message-avatar.iloveeverything {
    background-color: #f04747;
}

.message-avatar.CriticalofMoist {
    background-color: #4f545c;
}

.message-avatar.NotElijaj {
    background-color: #43b581;
}

.message-content {
    flex: 1;
}

.message-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.message-username {
    font-weight: bold;
    font-size: 15px;
    margin-right: 8px;
}

.message-username.iloveeverything {
    color: #f04747;
}

.message-username.CriticalofMoist {
    color: #4f545c;
}

.message-username.NotElijaj {
    color: #43b581;
}

.message-time {
    font-size: 12px;
    color: #72767d;
}

.message-text {
    color: #dcddde;
    font-size: 15px;
    line-height: 1.4;
    word-wrap: break-word;
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid #2f3136;
}

.chat-input-container {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

#username-input {
    background-color: #40444b;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    color: white;
    width: 200px;
    font-size: 14px;
    margin-bottom: 5px;
}

#username-input::placeholder {
    color: #72767d;
}

#username-input:focus {
    outline: none;
}

#bickslord-input {
    flex: 1;
    background-color: #40444b;
    border: none;
    border-radius: 8px;
    padding: 12px;
    color: white;
    resize: none;
    height: 44px;
}

#bickslord-input::placeholder {
    color: #72767d;
}

#bickslord-input:focus {
    outline: none;
}

#bickslord-send {
    background-color: #5865F2;
    width: auto;
    padding: 6px 16px;
    font-size: 14px;
    align-self: flex-end;
}

#bickslord-send:hover {
    background-color: #4752c4;
    transform: none;
    box-shadow: none;
}

.message-text a {
    color: #00aff4;
    text-decoration: none;
}

.message-text a:hover {
    text-decoration: underline;
}

.chat-personalities {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.personality {
    padding: 8px 12px;
    background-color: #2f3136;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.personality:hover {
    background-color: #393c43;
}

.personality.active {
    background-color: #5865F2;
}

.spinoff-info {
    margin-top: 15px;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    border-left: 4px solid #9c27b0;
}

.comparison-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 4px solid #ff4500;
    position: relative;
}

.comparison-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    color: white;
}

.comparison-rating.better {
    background-color: #4CAF50;
}

.comparison-rating.similar {
    background-color: #FF9800;
}

.comparison-rating.worse {
    background-color: #F44336;
}

#cast-crew-options {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #6e48aa;
}

#cast-crew-options .input-group {
    margin-bottom: 10px;
}

#cast-crew-options .input-group:last-child {
    margin-bottom: 0;
}

.cast-crew-section {
    margin-top: 30px;
    border-top: 3px solid #6e48aa;
    padding-top: 20px;
}

.cast-crew-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.cast-crew-logo {
    color: #6e48aa;
    margin-right: 10px;
    font-size: 24px;
}

.crew-member, .cast-member {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.crew-member {
    border-left: 4px solid #6e48aa;
}

.cast-member {
    border-left: 4px solid #9c27b0;
}

.crew-role, .cast-role {
    font-weight: bold;
    margin-bottom: 5px;
}

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

.bio {
    font-style: italic;
    color: #666;
}

.crew-section, .cast-section {
    margin-bottom: 25px;
}

.fan-qa-container {
    margin-top: 40px;
    border-top: 3px solid #4CAF50;
    padding-top: 20px;
}

.fan-qa-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.fan-qa-logo {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 24px;
}

.question-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 4px solid #4CAF50;
}

.question-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.fan-username {
    font-weight: bold;
    color: #333;
}

.question-text {
    font-size: 16px;
    margin-bottom: 15px;
}

.answer-container {
    margin-top: 10px;
    background-color: #f0f7f0;
    border-radius: 5px;
    padding: 10px;
}

.answer-header {
    font-weight: bold;
    margin-bottom: 5px;
    color: #4CAF50;
}

.fan-response {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
}

.fan-response-header {
    font-weight: bold;
    margin-bottom: 5px;
    color: #FF9800;
}

.fan-response-text {
    font-style: italic;
}

.answered {
    border-left: 4px solid #9C27B0 !important;
}

.topic-tag {
    display: inline-block;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    color: white;
    margin-right: 10px;
}

.topic-tag.plot {
    background-color: #3498db;
}

.topic-tag.character {
    background-color: #9b59b6;
}

.topic-tag.production {
    background-color: #f39c12;
}

.topic-tag.future {
    background-color: #2ecc71;
}

.topic-tag.comparison {
    background-color: #e74c3c;
}

.load-more-container {
    text-align: center;
    margin-top: 20px;
}

#load-more-questions {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    width: auto;
    margin: 0 auto;
    padding: 10px 20px;
}

.promo-container {
    margin-top: 40px;
    border-top: 3px solid #2196F3;
    padding-top: 20px;
}

.promo-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.promo-logo {
    color: #2196F3;
    margin-right: 10px;
    font-size: 24px;
}

.promo-controls {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.promo-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.promo-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.promo-tab.active {
    border-bottom-color: #2196F3;
    font-weight: bold;
}

.promo-tab:hover {
    background-color: #f0f0f0;
}

.promo-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 4px solid #2196F3;
}

.promo-item.funfact {
    border-left-color: #4CAF50;
}

.promo-item.commercial {
    border-left-color: #FFC107;
}

.promo-item.moviecard {
    border-left-color: #9C27B0;
}

.promo-item.offscreen {
    border-left-color: #FF5722;
}

.promo-item.cutcontent {
    border-left-color: #9C27B0;
}

.promo-type {
    display: inline-block;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
    color: white;
}

.promo-type.funfact {
    background-color: #4CAF50;
}

.promo-type.commercial {
    background-color: #FFC107;
    color: #333;
}

.promo-type.moviecard {
    background-color: #9C27B0;
}

.promo-type.offscreen {
    background-color: #FF5722;
}

.promo-type.cutcontent {
    background-color: #9C27B0;
}

.promo-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.promo-description {
    margin-bottom: 15px;
    line-height: 1.5;
}

.promo-comments {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.promo-comment {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-input-container {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.comment-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.post-comment-btn {
    background-color: #2196F3;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.post-comment-btn:hover {
    background-color: #0b7dda;
}

#add-season-section {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #6e48aa;
}

#add-season-btn {
    background: linear-gradient(135deg, #6e48aa, #9c27b0);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: block;
    width: 100%;
}

#add-season-btn:hover {
    background: linear-gradient(135deg, #9c27b0, #6e48aa);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#create-sequel-btn {
    background: linear-gradient(135deg, #2196F3, #1565C0);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: block;
    width: 100%;
    margin-top: 10px;
}

#create-sequel-btn:hover {
    background: linear-gradient(135deg, #1565C0, #0D47A1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.message-creator-btn {
    background-color: #FF0000;
    color: white;
    border: none;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}

.message-creator-btn:hover {
    background-color: #cc0000;
}

.dm-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.dm-modal {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dm-modal-header {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dm-modal-body {
    padding: 15px;
}

.dm-modal-footer {
    padding: 15px;
    border-top: 1px solid #ddd;
    text-align: right;
}

.dm-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #777;
}

#dm-message {
    width: 100%;
    height: 120px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
}

#dm-send-btn {
    background-color: #FF0000;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

#dm-send-btn:hover {
    background-color: #cc0000;
}

.dm-notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    z-index: 1000;
}

.dm-notification {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    transition: opacity 1s;
}

.dm-notification-header {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dm-notification-body {
    padding: 15px;
}

.dm-notif-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #777;
}

.dm-notification-fade {
    opacity: 0;
}

.email-container {
    margin-top: 40px;
    border-top: 3px solid #4285F4;
    padding-top: 20px;
}

.email-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.email-logo {
    margin-right: 10px;
    font-size: 24px;
}

.email-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.email-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.email-tab.active {
    border-bottom-color: #4285F4;
    font-weight: bold;
}

.email-tab:hover {
    background-color: #f9f9f9;
}

.email-section-content {
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.email-section-content.hidden {
    display: none;
}

.empty-inbox-message {
    text-align: center;
    padding: 40px 0;
    color: #777;
}

.email-message {
    border-bottom: 1px solid #eee;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.email-message:hover {
    background-color: #f5f5f5;
}

.email-message.unread {
    background-color: #e8f0fe;
}

.email-message.unread:hover {
    background-color: #d4e4fc;
}

.email-sender {
    font-weight: bold;
    margin-bottom: 5px;
}

.email-subject {
    margin-bottom: 5px;
}

.email-preview {
    color: #777;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.email-date {
    color: #777;
    font-size: 12px;
    float: right;
}

.compose-form {
    padding: 15px;
}

.email-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.email-modal {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.email-modal-header {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email-modal-body {
    padding: 15px;
    max-height: 60vh;
    overflow-y: auto;
}

.email-modal-footer {
    padding: 15px;
    border-top: 1px solid #ddd;
    text-align: right;
}

.email-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #777;
}

.email-meta {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.email-meta p {
    margin: 5px 0;
}

.email-content-text {
    line-height: 1.6;
}

.email-reply-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.email-reply-textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
    margin-bottom: 10px;
}

.email-reply-btn {
    background-color: #4285F4;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

.email-reply-btn:hover {
    background-color: #3367d6;
}

.history-container {
    margin-top: 40px;
    border-top: 3px solid #607D8B;
    padding-top: 20px;
}

.history-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.history-logo {
    color: #607D8B;
    margin-right: 10px;
}

.history-show {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.2s;
}

.history-show:hover {
    transform: translateY(-2px);
}

.history-show-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.history-show-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.history-show-actions {
    display: flex;
    gap: 10px;
}

.history-show-btn {
    background-color: #607D8B;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.history-show-btn:hover {
    background-color: #455A64;
}

.no-history {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Show Overview Toggle Styles */
.show-overview-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
}

.overview-toggle-btn {
    background: linear-gradient(135deg, #6e48aa, #9c27b0);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 140px;
}

.overview-toggle-btn:hover {
    background: linear-gradient(135deg, #9c27b0, #6e48aa);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.overview-toggle-btn.active {
    background: linear-gradient(135deg, #ff6d91, #ff4500);
    box-shadow: 0 4px 15px rgba(255, 109, 145, 0.3);
}

.overview-section {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.overview-section h3 {
    color: #6e48aa;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.4em;
}

.overview-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    min-width: 120px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #6e48aa;
}

.overview-description {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    line-height: 1.6;
}

.season-overview-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #ff6d91;
    transition: transform 0.2s ease;
}

.season-overview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.season-overview-card .season-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.season-overview-card h4 {
    color: #6e48aa;
    margin: 0;
    font-size: 1.2em;
}

.season-theme {
    background: linear-gradient(135deg, #ff6d91, #ff4500);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.season-stats {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.season-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
    min-width: 80px;
}

.season-stat .stat-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.season-stat .stat-value {
    font-size: 18px;
    font-weight: bold;
    color: #6e48aa;
}

.season-overview-card .season-description {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

/* Responsive styles for overview sections */
@media (max-width: 768px) {
    .show-overview-toggle {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-toggle-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .overview-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .season-overview-card .season-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .season-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .season-stat {
        width: 100%;
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .show-info {
        flex-direction: column;
        align-items: center;
    }
    
    .show-details {
        width: 100%;
    }
    
    .episodes {
        grid-template-columns: 1fr;
    }
    
    .tab-navigation {
        flex-wrap: wrap;
    }
    
    .tab {
        padding: 8px 12px;
    }
    
    .ranked-episode {
        flex-direction: column;
    }
    
    .rank {
        align-self: flex-start;
        margin-bottom: 10px;
    }
    
    .bickslord-interface {
        flex-direction: column;
        height: 600px;
    }
    
    .bickslord-sidebar {
        width: 100%;
        height: 80px;
        flex-direction: row;
    }
    
    .bickslord-servers {
        width: 80px;
        flex-direction: row;
        padding: 5px;
    }
    
    .bickslord-server {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .bickslord-channels {
        display: flex;
        padding: 5px;
        align-items: center;
    }
    
    .channel-category {
        display: none;
    }
    
    .channel {
        padding: 5px 10px;
        margin: 0 5px;
    }
    
    .chat-personalities {
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .dm-notification-container {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

.season-comments {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.season-comments h5 {
    margin-bottom: 10px;
    color: #6e48aa;
}

.comments-list {
    margin-bottom: 10px;
}

.season-comment {
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 8px;
    border-left: 3px solid #ff6d91;
}

.comment-username {
    font-weight: bold;
    color: #ff4500;
    margin-bottom: 5px;
}

.comment-text {
    color: #333;
    margin-bottom: 5px;
}

.comment-likes {
    color: #777;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.comment-input-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.season-comment-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.post-season-comment-btn {
    background-color: #ff6d91;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    width: auto;
}

.post-season-comment-btn:hover {
    background-color: #ff5a7f;
    transform: none;
    box-shadow: none;
}

.update-comments-btn {
    display: none;
}

/* Settings */
.settings-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    width: auto;
    margin-top: 10px;
}

.settings-btn:hover {
    background: #000;
    transform: none;
    box-shadow: none;
}

/* Modal */
.settings-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.settings-modal.hidden { display: none; }

.settings-content {
    background: #fff;
    width: 90%;
    max-width: 480px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    overflow: hidden;
}

.settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.settings-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #777;
}

.settings-body {
    padding: 16px;
}

.refresh-btn {
    background: linear-gradient(135deg, #333, #000);
    width: 100%;
}

.settings-hint {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}

/* Global Loading Overlay */
.global-loading {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.global-loading.hidden { display: none; }

/* Theme overrides */
body.theme-halloween header {
    background: linear-gradient(135deg, #1f1f1f, #ff6d00) !important;
}

body.theme-halloween button,
body.theme-halloween .overview-toggle-btn {
    background: linear-gradient(135deg, #ff6d00, #bf360c) !important;
}

body.theme-christmas header {
    background: linear-gradient(135deg, #0d47a1, #1b5e20) !important;
}

body.theme-christmas button,
body.theme-christmas .overview-toggle-btn {
    background: linear-gradient(135deg, #1b5e20, #2e7d32) !important;
}

body.theme-classic header {
    background: linear-gradient(135deg, #6e48aa, #9c27b0) !important;
}
/* Ensure button hover doesn’t jump on themed */
body.theme-halloween button:hover,
body.theme-christmas button:hover,
body.theme-classic button:hover {
    transform: translateY(-2px);
}