* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
}
body {
    background-color: #030303;
    color: #e0e0e0;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}
.hidden {
    display: none !important;
}
.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
#main-menu {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('main_menu_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 5px solid #0f0;
    box-shadow: inset 0 0 50px rgba(0, 255, 0, 0.4);
}
.menu-container {
    background: rgba(10, 10, 10, 0.85);
    border: 2px solid #00f0ff;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
    padding: 40px 60px;
    text-align: center;
    max-width: 600px;
    width: 90%;
}
.game-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 48px;
    font-weight: bold;
    color: #00f0ff;
    text-shadow: 0 0 15px #00f0ff;
    margin-bottom: 5px;
    letter-spacing: 4px;
}
.game-subtitle {
    font-size: 16px;
    color: #ff007f;
    text-shadow: 0 0 8px #ff007f;
    margin-bottom: 30px;
    letter-spacing: 2px;
}
.menu-btn {
    display: block;
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    background: #051a1e;
    border: 1px solid #00f0ff;
    color: #00f0ff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.menu-btn:hover {
    background: #00f0ff;
    color: #000;
    box-shadow: 0 0 15px #00f0ff;
}
.menu-credits {
    margin-top: 35px;
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
}
.menu-credits strong {
    color: #fff;
}
#workspace-screen {
    display: grid;
    grid-template-columns: 250px 1fr 380px;
    grid-template-rows: 1fr 350px;
    grid-template-areas: 
        "sidebar main buddy"
        "sidebar victim buddy";
    height: 100vh;
}
#workspace-sidebar {
    grid-area: sidebar;
    background: #0a0a0c;
    border-right: 2px solid #222;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sidebar-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    color: #ff007f;
    text-shadow: 0 0 8px #ff007f;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
}
.stat-box {
    background: #111;
    border: 1px solid #333;
    padding: 12px;
    margin-bottom: 15px;
}
.stat-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.stat-value {
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}
.heat-meter-container {
    background: #111;
    border: 1px solid #333;
    padding: 15px;
    margin-top: auto;
    margin-bottom: 20px;
}
.heat-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: bold;
    color: #ff003c;
    margin-bottom: 8px;
}
.heat-track {
    width: 100%;
    height: 12px;
    background: #222;
    border-radius: 6px;
    overflow: hidden;
}
.heat-fill {
    width: 0%;
    height: 100%;
    background-color: #0f0;
    transition: width 0.3s ease;
}
.sidebar-footer {
    display: flex;
    flex-direction: column;
}
.sidebar-btn {
    padding: 10px;
    background: #1a050d;
    border: 1px solid #ff007f;
    color: #ff007f;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.sidebar-btn:hover {
    background: #ff007f;
    color: #000;
    box-shadow: 0 0 10px #ff007f;
}
#workspace-main {
    grid-area: main;
    background: #0f0f12;
    border-bottom: 2px solid #222;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}
.workspace-tabs {
    display: flex;
    background: #0a0a0c;
    border-bottom: 1px solid #222;
}
.workspace-tab-btn {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-right: 1px solid #222;
    color: #888;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
}
.workspace-tab-btn.active {
    background: #14141a;
    color: #00f0ff;
    border-bottom: 2px solid #00f0ff;
}
.workspace-panel {
    flex: 1;
    overflow-y: scroll;
    overflow-x: hidden;
}
.workspace-panel::-webkit-scrollbar {
    width: 12px;
}
.workspace-panel::-webkit-scrollbar-track {
    background: #0f0f12;
}
.workspace-panel::-webkit-scrollbar-thumb {
    background: #00f0ff;
    border-radius: 5px;
}
.workspace-panel::-webkit-scrollbar-thumb:hover {
    background: #00d4e0;
}
#terminal-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #000;
    padding: 15px;
    font-family: 'Courier New', Courier, monospace;
}
#terminal-body {
    flex: 1;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.5;
    color: #39ff14;
    text-shadow: 0 0 4px rgba(57, 255, 20, 0.4);
    margin-bottom: 10px;
}
#terminal-body::-webkit-scrollbar {
    width: 8px;
}
#terminal-body::-webkit-scrollbar-track {
    background: #000;
}
#terminal-body::-webkit-scrollbar-thumb {
    background: #39ff14;
    border-radius: 4px;
}
#terminal-body::-webkit-scrollbar-thumb:hover {
    background: #2ecc11;
}
.terminal-input-row {
    display: flex;
    align-items: center;
    border-top: 1px solid #111;
    padding-top: 10px;
}
.terminal-prompt {
    color: #39ff14;
    margin-right: 10px;
    font-weight: bold;
}
#terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #39ff14;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
}
#blackmarket-panel {
    padding: 25px 25px 100px 25px;
    background: #0a0a0d;
}
.market-section-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    color: #00f0ff;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.market-data-item {
    background: #111;
    border: 1px solid #222;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.market-card {
    background: #14141c;
    border: 1px solid #2c2c3c;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.market-card-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;
    font-weight: bold;
    color: #ff007f;
    margin-bottom: 8px;
}
.market-card-desc {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.4;
}
.market-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.market-card-price {
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    font-weight: bold;
    color: #0f0;
}
.market-card-btn {
    padding: 8px 15px;
    background: #051e18;
    border: 1px solid #0f0;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.market-card-btn:hover {
    background: #0f0;
    color: #000;
}
.market-card-btn:disabled {
    border-color: #444;
    color: #444;
    background: transparent;
    cursor: not-allowed;
}
#workspace-buddy {
    grid-area: buddy;
    background: #08080a;
    border-left: 2px solid #222;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.buddy-header {
    background: #0c0c10;
    border-bottom: 1px solid #222;
    padding: 15px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: #00f0ff;
    letter-spacing: 1px;
}
.buddy-avatar-container {
    width: 100%;
    height: 240px;
    background: #000;
    border-bottom: 1px solid #222;
    position: relative;
    overflow: hidden;
}
.buddy-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.buddy-avatar-glitch {
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    color: #39ff14;
    background: rgba(0, 0, 0, 0.7);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #39ff14;
}
.buddy-chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}
#buddy-chat-bubbles {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 15px;
    display: flex;
    flex-direction: column;
    max-height: calc(100% - 60px);
    word-wrap: break-word;
}
#buddy-chat-bubbles::-webkit-scrollbar {
    width: 8px;
}
#buddy-chat-bubbles::-webkit-scrollbar-track {
    background: #0a0a0d;
}
#buddy-chat-bubbles::-webkit-scrollbar-thumb {
    background: #00f0ff;
    border-radius: 4px;
}
#buddy-chat-bubbles::-webkit-scrollbar-thumb:hover {
    background: #00d4e0;
}
.chat-bubble {
    max-width: 85%;
    padding: 10px 14px;
    margin-bottom: 12px;
    font-size: 12.5px;
    line-height: 1.4;
    font-family: 'Courier New', Courier, monospace;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.buddy-bubble {
    background: #111;
    border-left: 3px solid #00f0ff;
    color: #00f0ff;
    align-self: flex-start;
}
.user-bubble {
    background: #180d15;
    border-right: 3px solid #ff007f;
    color: #ff007f;
    align-self: flex-end;
}
.buddy-input-row {
    border-top: 1px solid #222;
    padding: 12px;
    display: flex;
    background: #0c0c10;
    flex-shrink: 0;
    min-height: 50px;
}
#buddy-chat-input {
    flex: 1;
    background: #14141a;
    border: 1px solid #333;
    outline: none;
    color: #fff;
    padding: 8px 12px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    margin-right: 8px;
    min-width: 0;
}
#buddy-chat-input::placeholder {
    color: #666;
}
#buddy-chat-input:focus {
    border-color: #00f0ff;
}
.buddy-send-btn {
    padding: 8px 15px;
    background: #051e22;
    border: 1px solid #00f0ff;
    color: #00f0ff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}
.buddy-send-btn:hover {
    background: #00f0ff;
    color: #000;
}
#workspace-victim {
    grid-area: victim;
    background: #050505;
    border-top: 1px solid #222;
    position: relative;
    overflow: hidden;
}
#victim-screen-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #555;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
}
#victim-pc-desktop {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
}
#victim-pc-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.victim-windows11-window {
    width: 90%;
    max-width: 800px;
    background: rgba(15, 15, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.win11-titlebar {
    background: rgba(30, 30, 40, 0.9);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.win11-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
.win11-controls {
    display: flex;
}
.win11-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 8px;
}
.win11-dot.red { background: #ff5f56; }
.win11-dot.yellow { background: #ffbd2e; }
.win11-dot.green { background: #27c93f; }
.win11-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap: 15px;
}
.win11-col {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 4px;
}
.win11-col-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    font-weight: bold;
    color: #00f0ff;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    padding-bottom: 5px;
}
.win11-text {
    font-size: 12px;
    color: #fff;
    margin-bottom: 8px;
    font-family: monospace;
}
.hack-action-box {
    margin-bottom: 15px;
}
.hack-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #aaa;
    margin-bottom: 4px;
    font-family: monospace;
}
.hack-bar-track {
    width: 100%;
    height: 8px;
    background: #111;
    border: 1px solid #333;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}
.hack-bar-fill {
    width: 0%;
    height: 100%;
    background: #ff007f;
}
.win11-btn {
    width: 100%;
    padding: 8px;
    background: #0f2b2e;
    border: 1px solid #00f0ff;
    color: #00f0ff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}
.win11-btn:hover {
    background: #00f0ff;
    color: #000;
}
.win11-btn:disabled {
    border-color: #333;
    color: #444;
    background: transparent;
    cursor: not-allowed;
}
.win11-select {
    width: 100%;
    padding: 6px;
    background: #14141c;
    border: 1px solid #444;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    margin-bottom: 8px;
    outline: none;
}
.win11-taskbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.win11-taskbar-icons {
    display: flex;
    align-items: center;
}
.win11-icon {
    width: 24px;
    height: 24px;
    margin: 0 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}
.win11-icon.blue { background: #0078d4; }
.win11-icon.yellow { background: #ffb900; }
.win11-icon.green { background: #107c41; }
#busted-screen {
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 10px solid #f00;
    box-shadow: inset 0 0 100px rgba(255, 0, 0, 0.7);
    animation: alarm-flash 1s infinite alternate;
}
@keyframes alarm-flash {
    0% { box-shadow: inset 0 0 30px rgba(255, 0, 0, 0.3); }
    100% { box-shadow: inset 0 0 120px rgba(255, 0, 0, 0.9); }
}
.busted-banner {
    color: #f00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 54px;
    font-weight: bold;
    text-shadow: 0 0 20px #f00;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-align: center;
}
.busted-desc {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
}
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
.modal-content {
    background: #0d0d12;
    border: 2px solid #00f0ff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    padding: 35px;
    max-width: 550px;
    width: 90%;
}
.modal-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 24px;
    color: #00f0ff;
    text-shadow: 0 0 10px #00f0ff;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}
.modal-body {
    font-size: 13.5px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
    max-height: 350px;
    overflow-y: auto;
}
.modal-body::-webkit-scrollbar {
    width: 8px;
}
.modal-body::-webkit-scrollbar-track {
    background: #0a0a0d;
}
.modal-body::-webkit-scrollbar-thumb {
    background: #00f0ff;
    border-radius: 4px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
    background: #00d4e0;
}
.modal-body p {
    margin-bottom: 15px;
}
.modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}
.modal-close-btn {
    width: 100%;
    padding: 10px;
    background: #04161a;
    border: 1px solid #00f0ff;
    color: #00f0ff;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}
.modal-close-btn:hover {
    background: #00f0ff;
    color: #000;
}

/* Victim Chat Window Styles */
#victim-chat-window {
    position: fixed;
    bottom: 20px;
    right: 420px;
    width: 450px;
    height: 500px;
    background: rgba(10, 10, 15, 0.95);
    border: 2px solid #cc0000;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(204, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.victim-chat-header {
    background: rgba(204, 0, 0, 0.15);
    border-bottom: 1px solid #cc0000;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.victim-chat-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    font-weight: bold;
    color: #cc0000;
    text-shadow: 0 0 8px #cc0000;
    letter-spacing: 1px;
}

.victim-chat-close {
    background: transparent;
    border: none;
    color: #cc0000;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 0 8px;
    line-height: 1;
}

.victim-chat-close:hover {
    color: #fff;
    text-shadow: 0 0 10px #cc0000;
}

#victim-chat-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 15px;
    display: flex;
    flex-direction: column;
    background: rgba(5, 5, 8, 0.8);
}

#victim-chat-messages::-webkit-scrollbar {
    width: 8px;
}

#victim-chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

#victim-chat-messages::-webkit-scrollbar-thumb {
    background: #cc0000;
    border-radius: 4px;
}

#victim-chat-messages::-webkit-scrollbar-thumb:hover {
    background: #dd0000;
}

.victim-chat-msg {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
    animation: slideIn 0.3s ease-out;
}

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

.victim-msg {
    align-self: flex-start;
}

.player-msg {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.buddy-msg {
    align-self: flex-start;
}

.victim-chat-avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin: 0 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.victim-msg .victim-chat-avatar {
    border-color: #ff6b6b;
}

.player-msg .victim-chat-avatar {
    border-color: #00ff00;
}

.buddy-msg .victim-chat-avatar {
    border-color: #00f0ff;
}

.victim-chat-bubble {
    max-width: 320px;
    background: rgba(30, 30, 40, 0.9);
    border-radius: 12px;
    padding: 10px 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.victim-msg .victim-chat-bubble {
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.player-msg .victim-chat-bubble {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.buddy-msg .victim-chat-bubble {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.victim-chat-sender {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 4px;
    opacity: 0.7;
}

.victim-msg .victim-chat-sender {
    color: #ff6b6b;
}

.player-msg .victim-chat-sender {
    color: #00ff00;
}

.buddy-msg .victim-chat-sender {
    color: #00f0ff;
}

.victim-chat-text {
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: #ffffff;
}

.victim-chat-input-row {
    border-top: 1px solid rgba(204, 0, 0, 0.3);
    padding: 12px;
    display: flex;
    background: rgba(15, 15, 20, 0.9);
    flex-shrink: 0;
}

#victim-chat-input {
    flex: 1;
    background: rgba(30, 30, 40, 0.8);
    border: 1px solid rgba(204, 0, 0, 0.3);
    outline: none;
    color: #fff;
    padding: 10px 12px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    margin-right: 8px;
    border-radius: 6px;
    min-width: 0;
}

#victim-chat-input::placeholder {
    color: #666;
}

#victim-chat-input:focus {
    border-color: #cc0000;
    box-shadow: 0 0 8px rgba(204, 0, 0, 0.3);
}

.victim-chat-send-btn {
    padding: 10px 18px;
    background: rgba(204, 0, 0, 0.15);
    border: 1px solid #cc0000;
    color: #cc0000;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.victim-chat-send-btn:hover {
    background: #cc0000;
    color: #000;
    box-shadow: 0 0 12px rgba(204, 0, 0, 0.5);
}

.victim-chat-send-btn:active {
    transform: scale(0.95);
}

/* Chat button in victim window */
.victim-chat-toggle-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    background: rgba(204, 0, 0, 0.2);
    border: 2px solid #cc0000;
    color: #cc0000;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    z-index: 10;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(204, 0, 0, 0.3);
}

.victim-chat-toggle-btn:hover {
    background: #cc0000;
    color: #000;
    box-shadow: 0 0 25px rgba(204, 0, 0, 0.6);
    transform: scale(1.05);
}

.victim-chat-toggle-btn:active {
    transform: scale(0.95);
}
