/* Add to the end of your styles.css */

/* Hide friendship attributes */
.friendship {
    display: none;
}

/* Style start screen buttons */
#start-screen button {
    padding: 12px;
    font-size: 16px;
    background: #3c4647;
    color: #d9d9d9;
    border: 2px solid #ff6f00;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 5px;
}

#start-screen button:hover {
    background: #ff6f00;
    color: #1c2526;
    box-shadow: 0 0 8px rgba(255, 111, 0, 0.8);
    transform: translateY(-1px);
}

#start-screen button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}