/* style.css - Primary structural layout core rules */
body {
    margin: 0;
    padding: 20px;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}
.theme-selector-box {
    padding: 10px;
    border-radius: 4px;
    max-width: 320px;
}
.theme-selector-box label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
}
.theme-selector-box select {
    width: 100%;
    padding: 5px;
    font-weight: bold;
}
.warning-text {
    font-size: 10px;
    margin-top: 5px;
    line-height: 1.3;
}
.grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
@media (max-width: 900px) {
    .grid { grid-template-columns: 1fr; }
}
.panel {
    padding: 15px;
    border-radius: 4px;
}
.panel-title {
    margin-top: 0;
    padding-bottom: 8px;
    font-size: 16px;
}
.stream-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    margin-bottom: 10px;
}
.view-btn {
    text-decoration: none;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}
.forum-link {
    display: block;
    padding: 10px;
    text-decoration: none;
}
.timer-badge {
    font-size: 11px;
    float: right;
    padding: 1px 6px;
    border-radius: 2px;
}

/* XAT PARODY LONE CHAT BOX SPECIFICS */
.xat-chat-box {
    display: flex;
    flex-direction: column;
    height: 300px;
    border-radius: 4px;
}
.xat-screen {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
}
.xat-msg {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}
.xat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin-right: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.xat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.xat-bubble {
    font-size: 13px;
    line-height: 1.4;
}
.xat-user {
    font-weight: bold;
}
.xat-input-area {
    display: flex;
    padding: 8px;
}
.xat-input {
    flex-grow: 1;
    padding: 6px;
    border: none;
}
.xat-btn {
    padding: 6px 15px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

/* SPECIAL EFFECTS ANIMATIONS FOR CHAT ROOM TEXT & PICTURE GLOWS */
@keyframes textGlow {
    0% { text-shadow: 0 0 4px #00ff66, 0 0 8px #00ff66; }
    50% { text-shadow: 0 0 10px #00e1ff, 0 0 16px #00e1ff; }
    100% { text-shadow: 0 0 4px #00ff66, 0 0 8px #00ff66; }
}
.text-glow-anim {
    animation: textGlow 2s infinite alternate;
}

@keyframes textFire {
    0% { text-shadow: 0 -2px 4px #ff0055, 0 -4px 6px #ffcc00; color: #fff; }
    50% { text-shadow: 0 -4px 8px #ff3300, 0 -8px 12px #ffcc00; color: #ffea00; }
    100% { text-shadow: 0 -2px 4px #ff0055, 0 -4px 6px #ffcc00; color: #fff; }
}
.text-fire-anim {
    animation: textFire 1.5s infinite linear;
}

@keyframes avatarPulse {
    0% { box-shadow: 0 0 0 0px rgba(0, 255, 102, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(0, 255, 102, 0); }
    100% { box-shadow: 0 0 0 0px rgba(0, 255, 102, 0); }
}
.pulse-glow {
    animation: avatarPulse 2s infinite;
    border: 1px solid #00ff66;
}

.shadow-glow {
    box-shadow: 0 0 10px #00e1ff;
    border: 1px solid #00e1ff;
}
