button {
    background: linear-gradient(145deg, #ffcc33, #ff9900);
    border: none;
    border-radius: 5px;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
}

button:hover {
    background: linear-gradient(145deg, #ff9900, #ffcc33);
    transform: scale(1.05);
}

a {
    color: #ff9900;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

a::after {
    content: '';
    position: absolute;
    width: calc(100% - 40px); /* Adjust width to account for button padding */
    height: 2px;
    background: #ff9900;
    left: 20px; /* Adjust left to account for button padding */
    bottom: -2px;
    border-radius: 5px; /* Match button border radius */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

a:hover {
    color: #ffcc33;
}

a:hover::after {
    transform: scaleX(1);
}

h1, h2, h3, h4, h5, h6, label, p {
    font-family: 'Courier New', Courier, monospace;
    color: #ffcf86;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

body {
    background: linear-gradient(90deg, rgb(149, 97, 0), rgb(255, 128, 2));
}

.CS {
    background: linear-gradient(145deg, #cc9900, #cc6600);
    cursor: not-allowed;
}

.CS:hover {
    background: linear-gradient(145deg, #cc6600, #cc9900);
    transform: scale(1.05);
}

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