/* ====================== UNIFIED DESIGN ====================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #ddd;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 800px;           /* balanced between the two originals */
    margin: 0 auto;
    background: #222;
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid #4CAF50;  /* green accent from MTG tool */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

h1 {
    color: #4CAF50;
    margin: 0 0 1.5rem;
    font-size: 2.6rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Challenge / Output Area */
.challenge, .output {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid #4CAF50;
    text-align: left;
}

/* Uniform Button Styling */
button,
.donate-btn,
.copy-btn,
.home-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 14px 28px;
    border-radius: 50px;           /* pill shape you like on Balatro */
    transition: all 0.2s ease;
    margin: 0.5rem;
}

button:hover,
.donate-btn:hover,
.copy-btn:hover,
.home-btn:hover {
    background-color: #45a049;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}

button:active {
    transform: scale(0.98);
}

/* Specific button colors */
.copy-btn {
    background: #00ffaa;
    color: #111;
}

.home-btn {
    background: #ff4e4e;
}

/* Console / Pre / Code */
pre, .console-box {
    background-color: #111;
    color: #00ff9d;
    font-family: monospace;
    padding: 1.25rem;
    border-radius: 8px;
    overflow-x: auto;
    white-space: pre-wrap;
    border: 1px solid #333;
    text-align: left;
}

.console-title {
    color: white;
    font-weight: bold;
    margin-bottom: 8px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

/* Other helpful classes */
.instructions {
    background: #2a2a2a;
    padding: 1.25rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 5px solid #4CAF50;
}