@charset "UTF-8";
/* CSS Document */

/*
 * Copyright (c) 2025 HoneyWired™ LLC
 * All rights reserved.
 */
 
        :root {
            --bg-color: #121212;
            --text-color: #e0e0e0;
            --accent-color: #ff3333; 
            --agency-blue: #3399ff;
            --holding-gold: #ffd700;
            --panel-bg: #1e1e1e;
            --pitch-bg: #2d1b2e;
            --acquire-bg: #1a261a;
            --chaos-bg: #2e0e0e; 
            --success-green: #00cc66;
            --cannes-gold: #c5a059;
        }
		* { box-sizing: border-box; }
        body {
            font-family: 'Courier New', Courier, monospace;
            background-color: var(--bg-color);
            color: var(--text-color);
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        #game-container {
            width: 900px;
            max-width: 95%;
            background-color: var(--panel-bg);
            border: 2px solid #333;
            padding: 20px;
            box-shadow: 0 0 20px rgba(0,0,0,0.8);
            display: grid;
            grid-template-columns: 1fr; 
            grid-gap: 20px;
            min-height: 600px;
        }

        #main-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        h1 {
            text-align: center;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 4px;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 16px;
            margin: 0;
        }

        #stats-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background: #000;
            padding: 15px;
            border: 1px solid #444;
            text-align: center;
            font-weight: bold;
        }

        .stat-label { font-size: 0.6em; color: #888; display: block; margin-bottom: 5px; }
        .stat-value { font-size: 1.0em; }

        #story-display {
            flex-grow: 1;
            line-height: 1.6;
            font-size: 1.1em;
            padding: 10px;
            background: #181818;
            border: 1px solid #333;
        }

        #choices-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

      button {
            background-color: #2a2a2a;
            color: white;
            border: 1px solid #555;
            padding: 15px;
            text-align: left;
            cursor: pointer;
            font-family: inherit;
            font-size: 1em;
            transition: all 0.2s;
            /* 1. Remove the default blue/grey tap box on mobile */
            -webkit-tap-highlight-color: transparent;
            outline: none;
        }

        /* 2. ONLY show the slide/color effect on devices with a mouse */
        @media (hover: hover) {
            button:hover {
                background-color: #3a3a3a;
                border-color: var(--accent-color);
                padding-left: 20px;
            }
        }

        /* 3. For Mobile: Show feedback only WHILE the finger is pressing down */ 
        button:active {
            background-color: #4a4a4a; /* Made slightly brighter so it's easier to see */
            border-color: var(--accent-color); 
            transition: none; /* <--- THIS IS THE FIX. Instant change, no fade lag. */
        }

        /* Keep your special button colors */
        .btn-win { border-color: var(--holding-gold); color: var(--holding-gold); }
        
        /* Update the hover for special buttons to also be mouse-only */
        @media (hover: hover) {
            .btn-win:hover { background-color: #332b00; }
        }
 

        .highlight { color: var(--agency-blue); font-weight: bold; }
        .danger { color: var(--accent-color); font-weight: bold; }
        .gold { color: var(--holding-gold); font-weight: bold; }
        
        .pitch-mode #story-display { background-color: var(--pitch-bg); border-color: #d633ff; }
        .pitch-client { color: #d633ff; font-weight: bold; font-size: 1.2em; display: block; margin-bottom: 10px;}

        .acquire-mode #story-display { background-color: var(--acquire-bg); border-color: var(--success-green); }
        .acquire-target { color: var(--success-green); font-weight: bold; font-size: 1.2em; display: block; margin-bottom: 10px;}

        .chaos-mode #story-display { background-color: var(--chaos-bg); border-color: orange; }
        .cannes-mode #story-display { border-color: var(--cannes-gold); }
		
/* --- FOOTER STYLES --- */
        #game-footer {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #333;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

  #game-title {  
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center; 
        }
 .game-logo {
            height: 75px;
            width: auto; 
        }


        .footer-logo {
            height: 22px;
            width: auto;
            opacity: 0.6;
            transition: all 0.3s ease; 
            filter: grayscale(100%); 
        }

        .footer-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        .footer-tagline {
            font-size: 0.75em;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: bold;
        }

        .footer-legal {
            font-size: 0.65em;
            color: #444;
            font-family: sans-serif; /* Easier to read for small legal text */
			line-height: 1.5em;
        }

        .footer-legal a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-legal a:hover {
            color: var(--accent-color);
			
        } 