        :root {
            --bg-color: #011417;
            --border-color: #b01ba5; /* Changed from #008b8d */
            --highlight-yellow: #f0e424;
            --highlight-magenta: #b01ba5; /* Changed from #ff2aff */
            --text-color: #e0f2f1;
            --panel-bg: rgba(51, 13, 56, 0.85); /* Changed from rgba(1, 40, 44, 0.85) */
            --accent-teal: #b01ba5; /* Changed from #00bcd4 */
            --card-bg: rgba(28, 15, 59, 0.5); /* Changed from rgba(0, 0, 0, 0.5) */
            --minor-blue: #9190a5; /* Changed from #81d4fa */
            --normal-yellow: #fff; /* Changed from #ffeb3b */
            --mega-red: #f44336;
        }

        #help-content {
            background-color: var(--bg-color);
            background-image: url('../images/gameplay_bg.png');
            background-attachment: fixed;
            background-size: cover;
            background-blend-mode: overlay;
            color: var(--text-color);
            font-family: 'Roboto', sans-serif; /* Changed font family */
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        #help-content .container {
            max-width: 1170px; /* Changed from 1000px */
            margin: 0 auto;
            padding: 40px 20px;
            background: rgba(1, 20, 23, 0.9);
        }

        #help-content header {
            text-align: center;
            padding-bottom: 40px;
            border-bottom: 2px solid var(--border-color);
            margin-bottom: 40px;
        }

        #help-content .logo {
            max-width: 400px;
            filter: drop-shadow(0 0 10px var(--accent-teal));
        }

        #help-content h1 {
            color: #fff; /* Changed from var(--highlight-magenta) */
            font-size: 3em;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin: 10px 0 0;
            text-shadow: 3px 3px #000;
        }

        #help-content h2 {
            color: #fff; /* Changed from var(--highlight-yellow) */
            border-left: 6px solid #b01ba5; /* Changed from var(--highlight-magenta) */
            padding-left: 15px;
            margin-top: 50px;
            text-transform: uppercase;
            font-size: 1.8em;
            background: linear-gradient(to right, rgba(176, 27, 165, 0.1), transparent); /* Changed from rgba(255, 42, 255, 0.1) */
        }

        #help-content .panel {
            background: var(--panel-bg);
            border: 2px solid var(--border-color);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 0 20px rgba(176, 27, 165, 0.4); /* Changed from rgba(0, 139, 141, 0.4) */
        }

        #help-content .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        #help-content .card {
            background: var(--card-bg);
            border: 1px solid var(--accent-teal);
            padding: 20px;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }

        #help-content .card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; width: 4px; height: 100%;
            background: #b01ba5; /* Changed from var(--accent-teal) */
        }

        #help-content .card h3 {
            margin-top: 0;
            color: #b01ba5; /* Changed from var(--accent-teal) */
            display: flex;
            align-items: center;
            gap: 10px;
        }

        #help-content .tile-icon {
            width: 32px;
            height: 32px;
            image-rendering: pixelated;
        }

        #help-content .tile-list {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            flex-wrap: wrap;
        }

        #help-content .setup-diagram {
            display: inline-grid;
            grid-template-columns: repeat(6, 40px);
            grid-template-rows: repeat(6, 40px);
            gap: 2px;
            background: rgba(176, 27, 165, 0.2); /* Changed from rgba(0, 139, 141, 0.2) */
            padding: 10px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            margin: 10px 0;
        }

        #help-content .cell {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
        }

        #help-content .cell img {
            width: 32px;
            height: 32px;
            image-rendering: pixelated;
        }

        #help-content .multiplier {
            font-weight: bold;
            color: var(--highlight-magenta);
            font-size: 1.2em;
        }

        #help-content table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-top: 20px;
            border-radius: 10px;
            overflow: hidden;
        }

        #help-content th, #help-content td {
            text-align: left;
            padding: 15px;
            border-bottom: 1px solid rgba(176, 27, 165, 0.2); /* Changed from rgba(0, 188, 212, 0.2) */
        }

        #help-content th {
            background: rgba(176, 27, 165, 0.3); /* Changed from rgba(0, 139, 141, 0.3) */
            color: var(--highlight-yellow);
            text-transform: uppercase;
            font-size: 0.9em;
            letter-spacing: 1px;
        }

        #help-content tr:hover td {
            background: rgba(255, 255, 255, 0.05);
        }

        #help-content td:nth-child(2) {
            white-space: nowrap;
        }

        #help-content .footer {
            text-align: center;
            padding: 60px 40px;
            font-size: 0.9em;
            color: var(--border-color);
            border-top: 1px solid rgba(176, 27, 165, 0.3); /* Changed from rgba(0, 139, 141, 0.3) */
        }

        #help-content .highlight {
            color: var(--highlight-yellow);
            font-weight: bold;
        }

        #help-content .badge {
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.8em;
            font-weight: bold;
            text-transform: uppercase;
            white-space: nowrap;
        }
        #help-content .badge-off { background: rgba(176, 27, 165, 0.2); color: var(--highlight-magenta); border: 1px solid #b01ba5; } /* Changed background and border */
        #help-content .badge-def { background: rgba(176, 27, 165, 0.2); color: var(--accent-teal); border: 1px solid #b01ba5; } /* Changed background and border */
        #help-content .badge-var { background: rgba(240, 228, 36, 0.2); color: var(--highlight-yellow); border: 1px solid var(--highlight-yellow); }

        #help-content .level-minor { color: var(--minor-blue); font-weight: bold; }
        #help-content .level-normal { color: var(--normal-yellow); font-weight: bold; }
        #help-content .level-mega { color: var(--mega-red); font-weight: bold; text-shadow: 0 0 5px rgba(244, 67, 54, 0.5); }

        #help-content ul { list-style: none; padding-left: 0; }
        #help-content ul li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
        #help-content ul li::before { content: "▶"; color: #b01ba5; /* Changed from var(--highlight-magenta) */ margin-top: 2px; }

        #help-content .special-box {
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(0,0,0,0.3);
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
        }
        #help-content .special-img {
            width: 32px;
            height: 96px;
            image-rendering: pixelated;
            filter: drop-shadow(0 0 5px #b01ba5); /* Changed from #fff */
        }

        #help-content .key {
            display: inline-block;
            padding: 5px 12px;
            border: 2px solid #b01ba5; /* Changed from var(--accent-teal) */
            border-radius: 8px;
            font-weight: bold;
            color: #b01ba5; /* Changed from var(--accent-teal) */
            background: rgba(0,0,0,0.3);
            margin: 0 5px;
            min-width: 25px;
            text-align: center;
            white-space: nowrap;
            flex-shrink: 0;
            box-sizing: border-box;
        }

        #help-content .control-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        #help-content .control-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }